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

call transaction

Former Member
0 Likes
704

Hi experts,

i m using call transaction to call a program. Inside this program the fm GN_DELIVERY_CREATE is called.

after calling thid function module , the processing of the program breaks and will not continue ..any body knows this problem?

any suggestion hoe to slove this

Thanks.

1 ACCEPTED SOLUTION
Read only

former_member182371
Active Contributor
0 Likes
670

Hi,

try this:

CALL TRANSACTION XXXX OPTIONS FROM opt .

opt shoud be a structure of type CTU_PARAMS .

you need to set opt-RACOMMIT to 'X' .

Best regards.

Thanks Pablo , when i use the following code

wa_option-RACOMMIT = 'X'.

CALL TRANSACTION 'ZTESTSCREEN' USING it_bdcd options from wa_option.

...

This act as call transaction with mode 'A' .. so you get always the command code as popup.

1.I want the call transaction to act as in mode 'N' . How to do that ?

'2. does this work on the background processing ?

1.Problem solved

wa_option-dismode = 'E'.

wa_option-RACOMMIT = 'X'.

CALL TRANSACTION 'ZTESTSCREEN' USING it_bdcd options from wa_option.

Thanks.

Edited by: Moo Yac on Jul 3, 2009 10:16 PM

3 REPLIES 3
Read only

former_member998879
Participant
0 Likes
670

Hi,

few information about the problem, thus we can't help you.

Davide

Read only

former_member182371
Active Contributor
0 Likes
671

Hi,

try this:

CALL TRANSACTION XXXX OPTIONS FROM opt .

opt shoud be a structure of type CTU_PARAMS .

you need to set opt-RACOMMIT to 'X' .

Best regards.

Read only

Former Member
0 Likes
670

Thanks Pablo , when i use the following code

wa_option-RACOMMIT = 'X'.

CALL TRANSACTION 'ZTESTSCREEN' USING it_bdcd options from wa_option.

...

This act as call transaction with mode 'A' .. so you get always the command code as popup.

1.I want the call transaction to act as in mode 'N' . How to do that ?

'2. does this work on the background processing ?

1.Problem solved

wa_option-dismode = 'E'.

wa_option-RACOMMIT = 'X'.

CALL TRANSACTION 'ZTESTSCREEN' USING it_bdcd options from wa_option.

Thanks.

Edited by: Moo Yac on Jul 3, 2009 10:16 PM