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: 

handling two transactions in session method at a time

Former Member
0 Kudos

Hi frnds

now im facing problem in handling two transactions in session method fs00,fspo

at a time.

i want some info.on how to handle two transactions at a time

thanx

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Use the function module in the following sequence.

BDC_OPEN_GROUP.

BDC_INSERT. " for the first TCODE

BDC_INSERT. " for the second TCODE

BDC_CLOSE_GROUP.

This will solve your problem.

Reward if helpfull.

Thanks and regards,

Veerendranath Maddula.

6 REPLIES 6

Former Member
0 Kudos

Use the function module in the following sequenjce.

BDC_OPEN_GROUP.

BDC_INSERT.

BDC_INSERT.

BDC_CLOSE_GROUP.

This will solve your problem.

Reward if helpfull.

Thanks and regards,

Veerendranath Maddula.

Former Member
0 Kudos

used call transcation method.

one transcation executed another transcation.

else.

used bapi method.

Former Member
0 Kudos

Hi,

Even i faced the same problem , i just want to know is there any possibility of

using different methods in you program

The best way is use CALL TRANSACTION for one tcode and SESSION METHOD

for other tcode.

OR

use BAPI for one and session for other.

Thanks,

Srinivas

Former Member
0 Kudos

Use the function module in the following sequence.

BDC_OPEN_GROUP.

BDC_INSERT. " for the first TCODE

BDC_INSERT. " for the second TCODE

BDC_CLOSE_GROUP.

This will solve your problem.

Reward if helpfull.

Thanks and regards,

Veerendranath Maddula.

Former Member
0 Kudos

Hey praveen, did you try my suggestion ..?

Thanks,

Veeru.

Former Member
0 Kudos

Hi veeru

i implemented ur suggestion and it worked for me

thanks