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: 

Problem with select-options in screen programming

Former Member
0 Kudos

HI ,

I need to create select-options in screen programming . I have created a subscreen 900.I have placed the subscreen area in screen 100. I have used the following statement.

SELECTION-SCREEN BEGIN OF SCREEN 0900 AS SUBSCREEN.

SELECT-OPTIONS: s_cdate for zmm_migo-cdate,

s_werks FOR zmmikpf-werks,

s_lgort FOR zmmikpf-lgort.

SELECTION-SCREEN END OF SCREEN 0900.

I have also used the call subscreen statements in both pbo and pai.

when iam trying to activate the top include its throwing me information message saying Error when generating the selection screen "0900" of report "ZINBOUND_DET and not geting activated .

Thanks

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Have you created a screen 0900 already?

When you activate the code it will try and generate the screen for you, if it already exists then it will fail.

2 REPLIES 2

Former Member
0 Kudos

Have you created a screen 0900 already?

When you activate the code it will try and generate the screen for you, if it already exists then it will fail.

0 Kudos

Thanks for quick reply.