2008 Jan 11 9:29 AM
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
2008 Jan 11 9:33 AM
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
2008 Jan 11 9:33 AM
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
2008 Jan 11 9:33 AM
in AT Selection-Screen Output event,
add the code:
Loop at screen.
IF screen-name = 'S_NAME".
screen-input = 0.
modify screen.
Endif.
EndLoop.
2008 Jan 11 9:35 AM
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
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |