Application Development 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: 

hi friends .. how to record with specified no.of records in BDC ?

Former Member
0 Kudos

hi friends ..

is it possible to record, for example 10 records each time among given no.of records using call transaction method ? if not can we do it with session method ? or with both we can achieve it ?

5 REPLIES 5

jayanthi_jayaraman
Active Contributor
0 Kudos

Hi,

Check this link for sample code.

http://www.sap-img.com/abap/schedule-agreement-data-uploading.htm

You can restrict it loop so that first 10 records will be recorded.

loop at itab from 1 to 10.

...

endloop.

Former Member
0 Kudos

Hi,

we can perform using call transaction as well as session transaction

please for more information check out the following link it might help you

http://www.info-sun.com/docs/wp_sapinter.pdf

********please reward points if the information is helpful to you**************

Former Member
0 Kudos

Hi,

Can you expain it little more? Do you want to record or upload data into batches?

lile 100 records and of 10 - 10 batch you want to upload?

0 Kudos

hi Prasad,

for example if i am considering call transaction method, in which the process should be like recording 10 records and updating the same to db and again it have to record 10 records and should do updation.

is that possible? or can we do in a different manner ? is that possible in session method?