Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

BDC

Former Member
0 Likes
616

Hi all

There r 3 methods to upload data via bdc right?

how do we select which method i want to use and where do i have to choose this method?

Regards

abapuser

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
594

hi

http://www.saptechnical.com/Tips/ABAP/DiffSessionCALLTRANSC.htm

Call transaction.

1) asynchronous processing

2) can transfer small amount of data

3) processing is faster.

4) errors need to be handled explicitly

5) data is updated automatically

Session method.

1) synchronous processing.

2) can tranfer large amount of data.

3) processing is slower.

4) error log is created

5) data is not updated until session is processed.

Synchronous processing - Transfers data for a single transaction - Synchronous and asynchronous database updating both possible The program specifies which kind of updating is desired. - Separate LUW for the transaction The system performs a database commit immediately before and after the CALL TRANSACTION USING statement. - No batch input processing log is generated.

The most important aspects of the session method interface are: - Asynchronous processing - Transfers data for multiple transactions - Synchronous database update During processing, no transaction is started until the previous transaction has been written to the database. - A batch input processing log is generated for each session - Sessions cannot be generated in parallel

hope this might helps you.

5 REPLIES 5
Read only

Former Member
0 Likes
595

hi

http://www.saptechnical.com/Tips/ABAP/DiffSessionCALLTRANSC.htm

Call transaction.

1) asynchronous processing

2) can transfer small amount of data

3) processing is faster.

4) errors need to be handled explicitly

5) data is updated automatically

Session method.

1) synchronous processing.

2) can tranfer large amount of data.

3) processing is slower.

4) error log is created

5) data is not updated until session is processed.

Synchronous processing - Transfers data for a single transaction - Synchronous and asynchronous database updating both possible The program specifies which kind of updating is desired. - Separate LUW for the transaction The system performs a database commit immediately before and after the CALL TRANSACTION USING statement. - No batch input processing log is generated.

The most important aspects of the session method interface are: - Asynchronous processing - Transfers data for multiple transactions - Synchronous database update During processing, no transaction is started until the previous transaction has been written to the database. - A batch input processing log is generated for each session - Sessions cannot be generated in parallel

hope this might helps you.

Read only

0 Likes
594

Hi

Thanks for the reply's..i under this..but where exactly r we using this methods..is it when recording r when writing the program.

regards

abapuser

Read only

0 Likes
594

hI

when writing the program not at the time of recording

Read only

former_member188829
Active Contributor
0 Likes
594

Hi,

Check these threads..

Read only

former_member188829
Active Contributor
0 Likes
594

Hi,

For Master data You can use LSMW/SESSION/CALL TRANSACTIOn.

For Transactional data You Can use SESSION/CALL TTRANSACTION.