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: 

call transaction using.......?

Former Member
0 Kudos

Hi All,

I wrote code like below.

CALL TRANSACTION 'MB1B' USING g_t_bdctab

MESSAGES INTO g_t_msgtab

MODE g_f_mode_n

UPDATE g_f_update_s

AND SKIP FIRST SCREEN.

But it's giving error " The addition "AND SKIP FIRST SCREEN" cannot be used with "CALL TRANSACTION... USING ...".

I gine through F1 help also but i am unable to remove the error. can anybody tell me what should i write instead of that?

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

The transaction is using the data in the BDC table that you are passing it, so remove the addition and skip first screen as you cannot have both at once.

Darren

Edited by: Darren Barton on Sep 30, 2008 3:54 PM

2 REPLIES 2

Former Member
0 Kudos

Hi,

The transaction is using the data in the BDC table that you are passing it, so remove the addition and skip first screen as you cannot have both at once.

Darren

Edited by: Darren Barton on Sep 30, 2008 3:54 PM

Former Member
0 Kudos

IF you are using a bdc table then what is the reason to skip the first screen? Just complete the step for the first screen in the bdc table and delete the skip first screen addition