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

unicode error . skip first scree

Former Member
0 Likes
396

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
362

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

1 REPLY 1
Read only

Former Member
0 Likes
363

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