‎2008 Oct 23 11:22 AM
hi all ,
while doin unicode conversion for the program .i'm getting error in uccheck skip first screen in not allowed .
code given below where it gives error is .
call transaction using bdc-data
update s
mode a
and skip first screen .
can u pls help me out how to slove this error this error
‎2008 Oct 23 12:45 PM
Hi,
if this is in context with ABAP Objects this syntax is simply not allowed. You have to use
either: USING bdctab
or: AND SKIP FISRST SCREEN (input from SET/GET parameters).
Mixing of both variants is obsolete - you may refer to SAPs documentation.
kind regards,
HP
‎2008 Oct 23 12:45 PM
Hi,
if this is in context with ABAP Objects this syntax is simply not allowed. You have to use
either: USING bdctab
or: AND SKIP FISRST SCREEN (input from SET/GET parameters).
Mixing of both variants is obsolete - you may refer to SAPs documentation.
kind regards,
HP