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

multiple transactions in a session

Former Member
0 Likes
1,203

Hai friends!

how to do multiple transactions within the same session..

plz send me some code..

thanks

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,162

Hai friends!

how to do multiple transactions within the same session..

plz send me some code..

thanks

8 REPLIES 8
Read only

Former Member
0 Likes
1,163
Read only

Former Member
0 Likes
1,162

Hi,

Use BDC_INSERT. For multiple transactions, call the function repeatedly.

Hope this helps.

Regards,

Deepthi.

Read only

Former Member
0 Likes
1,162

Hi,

Refer to this link..

[More than one transaction in Seeeion |]

Read only

0 Likes
1,162

Hi,

Please refer to the following threads. These have the example code to add multiple transactions in one sesion.

[]

[]

Regards,

Monika

Read only

Former Member
0 Likes
1,162

Hi,

Call BDC_INSERT multiple times for different transactions.

Regards,

Madhu

Read only

Former Member
0 Likes
1,162

Hi Ammu,

this link can be helpful

[http://help.sap.com/saphelp_nw70/helpdata/EN/69/c2501a4ba111d189750000e8322d00/frameset.htm]

Regards,

Mdi.Deeba

Read only

Former Member
0 Likes
1,162

Hi,

1. BDC_OPEN_GROUP.

2. BDC_INSERT for each T-CODE in loop.

3. BDC_CLOSE_GROUP.

Thanks,

Asit Purbey.

Read only

former_member632729
Contributor
0 Likes
1,162

Hi,

For multiple transactions u can call the BDC_INSERT function module two times..

ex :

1 . BDC_OPEN_GROUP.

2 . BDC_INSERT ( Pass the First Tcode).

3. BDC_INSERT (Pass the Second Tcode).

4. BDC_CLOSE_GROUP.