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 Options

Former Member
0 Likes
854

Hi All,

Can I use Call Transaction with the options "Skip first screen" and "Mode 'E' " only. I need to use both the options.And i dont want to use the internal table for BDC data.

Is it possible to do this ??

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
739

The 'MODE' command is used for BDC processing. So no. Without specifying BDC data. The transction will need to be processed by the user.

Hi All,

Can I use Call Transaction with the options "Skip first screen" and "Mode 'E' " only. I need to use both the options.And i dont want to use the internal table for BDC data.

Is it possible to do this ??

5 REPLIES 5
Read only

Former Member
0 Likes
740

The 'MODE' command is used for BDC processing. So no. Without specifying BDC data. The transction will need to be processed by the user.

Read only

Former Member
0 Likes
739

you can use call transaction with skip first screen option , but you cant use mode with this option , because it will not suffice any cause.(as it will skip first screen if it's ok otherwise it gives an error in first screeen).

Read only

Former Member
0 Likes
739

Hi,

U cant use MODE 'E' if you are not using BDC.

Cheers.

Read only

Former Member
0 Likes
739

Hi,

no it is not possible.

if you see help you can read:

CALL TRANSACTION tcod.

Additions:

1. ... AND SKIP FIRST SCREEN

2. ... USING itab

2a. ... OPTIONS FROM opt

2b. ... MODE mode

2c. ... UPDATE f

2d. ... MESSAGES INTO itab

so to use option you MUST use internal table

Read only

Former Member
0 Likes
739

No.

Mainly because Mode 'E' can be used with option 'USING ITAB'. if you use the option 'SKIP FIRST SCREEN' then MODE cannot be used along with it.