‎2007 Aug 08 2:45 PM
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
‎2007 Aug 08 2:49 PM
You would have to define the first screen processing in your BDC.
‎2007 Aug 08 2:53 PM
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
‎2007 Aug 08 2:55 PM
Hi,
if you use BDC it's not usefull with and skip first screen.
Look at the docu of call transaction.
Regards, Dieter
‎2007 Aug 08 2:57 PM
Hi,
Thanks all , problem solved.
I have used fm ABAP4_CALL_TRANSACTION
aRs