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

select-option or parameter with display mode

jayakummar
Active Participant
0 Likes
1,082

hai experts,

i need to give select-option or parameter with display mode in selection-screen.

my requirement is.......

to give last print out time in selection screen with display mode mean user cant able to change the time......

reward avail for hope ful answer.....

thanks in advance...

regards,

jai.m

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
677

Hi jaya,

write the following code.

parameters: p1 type c.

initialization.

p1 = 'c'.

at selection-screeen output.

loop at screen.

if screen-name = 'P1'.

screen-input = '0'.

modify screen.

endif.

endloop.

regards,

Santosh Thorat

Hi jaya,

write the following code.

parameters: p1 type c.

initialization.

p1 = 'c'.

at selection-screeen output.

loop at screen.

if screen-name = 'P1'.

screen-input = '0'.

modify screen.

endif.

endloop.

regards,

Santosh Thorat

3 REPLIES 3
Read only

Former Member
0 Likes
678

Hi jaya,

write the following code.

parameters: p1 type c.

initialization.

p1 = 'c'.

at selection-screeen output.

loop at screen.

if screen-name = 'P1'.

screen-input = '0'.

modify screen.

endif.

endloop.

regards,

Santosh Thorat

Read only

Former Member
0 Likes
677

in AT Selection-Screen Output event,

add the code:

Loop at screen.

IF screen-name = 'S_NAME".

screen-input = 0.

modify screen.

Endif.

EndLoop.

Read only

Former Member
0 Likes
677

In you Intialization ( or At selection-Screen Output Event ) write following code :

Loop at Screen

if screen-name = 'P_NAME' (or cs 'S_NAME-LOW' OR cs 'S_NAME-HIGH' -- if select option)

screen-input = '0'.

modify screen

endif.

endloop.

Regards,

Mohaiyuddin