Thursday, January 27, 2022

When do we go for call transaction method and when do we go for session method in SAP ABAP?


Call Transaction:

The Call transaction is used if you need the generated document number to be returned to the program. It is often used if you need to do some additional processing after your document is generated. It is usually a small data set because if you have large data, you might have a time out error.

Sessions Method:

Sessions are used when you are unsure when you will run the BDC... you could schedule it during the night.This is used when you are working with large numbers of transactions.

DMR mass creation BAPI Name.

 Which BAPI do they use for DMR mass creation?

 
BAPI Name: BAPI_BUSPROCESSND_CREATEMULTI
 
 

Which modules are used in BDC.

 

Which modules are used in BDC?

1.BDC_Open_group.

2.BDC_Insert.

3.BDC_Close_group

These three modules are primarily used in successfully transferring data in sequence using BDC.