Scrol

SAP Trainings contact sap.sreeram@gmail.com or 091-9916083157, 001-210-399-8414

SAP ABAP BDC Questions


Have you used SAP supplied programs to load master data?
·         SAP supplied BDC programs – RM06BBI0  (Purchase requisitions)
·         RMDATIND (Material master) RFBIKR00  (Vendor  Masters)
-      RFBIDE00 (Customer Master)  RVINVB00 (Sales Order)


What are the Techniques involved in using SAP supplied programs?  Do you prefer to write your own programs to load master data? Why?
·         Identify  relevant fields
·         Maintain transfer structure ( Predefined – first one is always session record)
·         Session record structure ,  Header Data,  Item  ( STYPE  – record type )
·         Fields in session structure – STYPE, GROUP , MANDT, USERNAME , NO DATA
·         Fields in header structure – consists of transaction code also – STYPE, BMM00, TCODE,MATNR and Fields in Item  -  ITEMS …
·         Maintain transfer file – sample data set creation



How do you set up background jobs in SAP? What are the steps? What are events driven batch jobs?
·         Create a job using function module JOB-OPEN
·         Collect the job specifications.
·         Add a job step to the job with the function module JOB-SUBMIT.
·         Close the job and pass it to Background processing system for execution with the function module JOB-CLOSE
·         EVENT DRIVEN BATCH JOBS :-
·         Types =  System events – triggered when activation of new operation mode takes place
·         User events    - Triggered from ABAP/4 or external program.
·         Triggering an event notifies the background processing that named condition has been reached. The Background system reacts by starting any jobs that were waiting for the event.
Transaction codes related to background jobs creation and processing are :-
SM36(Job creation)
SM37(Job selection and execution).