cancel
Showing results for 
Search instead for 
Did you mean: 

which BDC method is suitable to upload large amount of data and why?

Former Member
0 Kudos

which BDC method is suitable to upload large amount of data and why?

Accepted Solutions (0)

Answers (2)

Answers (2)

kunal_ingale
Active Contributor
0 Kudos

HI

SAP has provided two different types of methods for BDC to do its work. Among these, the first one is called the classical method or session method. Through this method the data can be read by the BDC program from a sequential dataset file. This sequential dataset file is stored in batch-input session. In order to .run the transaction in this session, what one needs is to execute the session. For this, follow these few steps: you can start and subsequently monitor the session firstly from u2013 System à Services à Batch Input or have the session run in the background. In this method to generate the required session, you have to use the function module BDC _ NSERT and BDC _CLOSE.

In the second method the BDC has to use the ABAP statement CALL TRANSACTION USING statement to run a transaction. In the second method, unlike in the first type, you do not need BDC to create a session.

REGARDS

KUNAL

former_member181995
Active Contributor
0 Kudos

LSMW:upto 20K data.

BDC call transaction is better once you have some few data some 4-5K casue its faster.

BDC session is always better if you have bulk of data and later you can proces tham from SM35 and see log file if any error.

Amit.