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

skip first screen & ECC 6 syntax error

former_member194669
Active Contributor
0 Likes
542

Hi,

I have program that is in ECC 6 giving syntax error


  call transaction v_tcode using i_bdc options from i_options
                                      messages into i_message
                                      and skip first screen.

I am getting a syntax error that "The additon AND SKIP FIRST SCREEN" cannot be used with "CALL TRANSACTION USING..."

Any info how to correct this.

aRs

4 REPLIES 4
Read only

Former Member
0 Likes
518

You would have to define the first screen processing in your BDC.

Read only

former_member194669
Active Contributor
0 Likes
518

Hi,

Thanks for your reply.

The first screen i am calling in my program


    perform bdc_dynpro      using 'SAPMYCTC' '0100'.
    perform bdc_field       using 'BDC_OKCODE' '=ENTR'.
    perform bdc_field       using 'YCTC-CTCNUMBER'
                                  wa_yctc-ctcnumber.
 

i am pushing the values to first screen , then i need to screen skip the first screen

aRs

Read only

Former Member
0 Likes
518

Hi,

if you use BDC it's not usefull with and skip first screen.

Look at the docu of call transaction.

Regards, Dieter

Read only

former_member194669
Active Contributor
0 Likes
518

Hi,

Thanks all , problem solved.

I have used fm ABAP4_CALL_TRANSACTION

aRs