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

Statement is not accessible

Former Member
0 Likes
800

hi,


PROGRAM DEMO_DYNPRO_INPUT_OUTPUT.
DATA: INPUT TYPE I,
OUTPUT TYPE I,
RADIO1, RADIO2, RADIO3, BOX1, BOX2, BOX3, EXIT.
CALL SCREEN 100.
MODULE INIT_SCREEN_100 OUTPUT.
CLEAR INPUT.
RADIO1 = 'X'.
CLEAR: RADIO2, RADIO3.
ENDMODULE.
MODULE USER_COMMAND_0100 INPUT.
OUTPUT = INPUT.
BOX1 = RADIO1.
BOX2 = RADIO2.
BOX3 = RADIO3.
IF EXIT NE SPACE.
LEAVE PROGRAM.
ENDIF.
ENDMODULE.

when i am run the above program , it should display the error? plz resolve the error.

regards

surender

Edited by: Alvaro Tejada Galindo on Feb 18, 2008 2:23 PM

4 REPLIES 4
Read only

Former Member
0 Likes
638

Sunder ,

What error message you are getting..

Read only

0 Likes
638

hi,

statement is not accessible on the statement call screen 100.

Read only

Former Member
0 Likes
638

is it a module pool or report?

Read only

Former Member
0 Likes
638

hi,

try to call the screen in some event.

for example you can just use start-of-selection event and write it above the call screen 100 statement.

hopefully it should work..

do reward if helpful..