Posts

SAP Workflow Definitions

Here are the Basic definitions of SAP Business Workflow SAP Business Workflow Is a tool for the automization of business processes. Workflow Builder Is a tool that is used to define, access and or modify workflow definitions in a graphical format. workflow template : - Basic data of the workflow definition. This includes specifications on buffering reporting data,   on automatic forwarding, and so on. - The specification of triggering events. If the specified event enters the system, the workflow        starts, if the event is actively linked to the workflow. - Initial values - Specifications for the interface (workflow and event container) - A link to the corresponding workflow definition, that is, the specification of the individual workflow steps that are to be executed. workflow definition n The workflow definition is created in the Workflow Builder and is displayed graphically in a network. Biniding : ...

Drop Down in Selection-Screen

Here is the example code for displaying Drop Down in Selection-Screen using Classic ABAP *&---------------------------------------------------------------------* *& * *& * *&---------------------------------------------------------------------* *& * *& * *&---------------------------------------------------------------------* REPORT ZTEST . TYPE-POOLS: vrm. DATA: gt_list TYPE vrm_values. DATA: gwa_list TYPE vrm_value. DATA: gt_values TYPE TABLE OF dynpread, gwa_values TYPE dynpread. DATA: gv_selected_value(10) TYPE c. *--------------------------------------------------------------* *Selection-Screen *--------------------------------------------------------------* P...

SD flow and MM flow with T-codes in SAP

SD and MM Flow Explanations refer SAPNuts.com Here is the explenation of SD and MM flows in SAP which is very useful for a SAP ABAP developers. SD and MM flows are data flows in SAP Sales and Distribution and Material Management. What is SD flow and Explain with T-codes? Inquiry » Question » Sales Order » Delivery » Billing. What is MM flow and Explain with T-code? ANS:- Creation of Purchase Requisition- » (Request for Quotation-- >Maintain Quotation- » Quotation Comparison (- » Purchase Order- » Goods Receipt- » Invoice Verification. MM flow T-code wise: ME51n- » ME41- » ME47- » ME49- » ME21- » MIGO/MB01- » MIRO. MM Flow Table wise: EBAN/EBKN/STXH/STXL- » (EKKO/EKPO)- » EKKO/EKPO/EKKN-- >MKPF/MSEG- » BKPF/BSEG. What is the T-code for billing document? VF01.

SAP ABAP real-time Interview Questions with answers

SAP ABAP real time Interview Questions 1. Can we write the code both call transaction and session method in single program? Ans. Yes it is possible to write call transaction and session in one program. 2. Which BDC you prefer? Ans. If we want to transfer large amount of data and when we need to use more than one transaction code we prefer session method. For small or less amount of data and for single transaction use call transaction. 3. When u prefer LSMW? Ans. When we need to update medium amount of data we use LSMW. LSMW is also used when the person like functional consultant has less programming language. 5. Difference between .include and .append? Ans. Include structure allows to add one or more structure into structure or table.Also placed positioning anywhere. Upto 6 include structure can be used in a table. Append structure can be placed only at the end of a structure or table which also stops further insertion of fields.Only one append structure can be used...

Push Button in Selection-screen using ABAP

Hi The below sample code will use to create a push button on selection-screen, adding push button to a selection-screen in ABAP is the most common requirement for a ABAPer ,. TABLES sscrfields. *--------------------------------------------------------------* *Selection-Screen *--------------------------------------------------------------* SELECTION-SCREEN: PUSHBUTTON /2(40) button1 USER-COMMAND but1, PUSHBUTTON /2(40) button2 USER-COMMAND but2. *--------------------------------------------------------------* *At Selection-Screen *--------------------------------------------------------------* AT SELECTION-SCREEN. CASE sscrfields. WHEN 'BUT1'. MESSAGE 'Button 1 was clicked' TYPE 'I'. WHEN 'BUT2'. MESSAGE 'Button 2 was clicked' TYPE 'I'. ENDCASE. *--------------------------------------------------------------* *Initialization *------------------------------------------------------...

Drop Down in Selection-Screen using ABAP

The below sample will show you how to design a drop-down list in selection-screen using abap, I think this is not a difficult task for you to understand, simply copy the code and create a sample object and you will know everything....good luck...!! *&---------------------------------------------------------------------* *&                                                                     * *&                                         ...

Control Break Statements in SAP ABAP

Control Break Statements in ABAP There are enormous uses of control break statements in ABAP development, these control break statements are very useful in reports with multiple table usage and reporting calculations like sum.Control break statements are used to control the sequence data flow inside loops in SAP ABAP. The below is the example report of using control break statements. REPORT ZCONTROL_BREAK NO STANDARD PAGE HEADING. DATA: BEGIN OF ITAB OCCURS 1, MATNR LIKE MARA-MATNR, MAKTX LIKE MAKT-MAKTX, WERKS LIKE MARD-WERKS, LGORT LIKE MARD-LGORT, LABST LIKE MARD-LABST, END OF ITAB. SELECT-OPTIONS: S_MATNR FOR ITAB-MATNR. START-OF-SELECTION. PERFORM GET_DATA. IF NOT ITAB[] IS INITIAL. PERFORM SHOW_LIST. ENDIF. *&---------------------------------------------------------------------* *& Form GET_DATA *&---------------------------------------------------------------------* * ...