2007 Feb 22 4:57 AM
Hi friends,
I have to make one field in the selection screen(report) as a read only field. Can you suggest how to do it.
regards,
John
2007 Feb 22 4:59 AM
Hi,
Default the selectscreen with required value.
if user entered any value then give error message.
Thanks,
Sarala.
Message was edited by:
Sarala
Hi friends,
I have to make one field in the selection screen(report) as a read only field. Can you suggest how to do it.
regards,
John
2007 Feb 22 4:59 AM
Hi,
Default the selectscreen with required value.
if user entered any value then give error message.
Thanks,
Sarala.
Message was edited by:
Sarala
2007 Feb 22 4:59 AM
Hi,
Write code in at selection screen and use loop at screen and set the screen as only display mode
or declare like this
PARAMETERS P_VALUT LIKE KKBC-VALUTYP DEFAULT '00000' MODIF ID bl1 no-display.
Regards
Shiva
2007 Feb 22 5:01 AM
Hi,
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF screen-name = 'XXXXXXX'.
screen-input = 0.
MODIFY SCREEN.
endif
ENDLOOP.
Thanks
aRs
2007 Feb 22 5:01 AM
Hi,
You can refer to the following code:
AT SELECTION-SCREEN OUTPUT.
loop at screen.
if screen-name eq 'PNPS$MSL'.
screen-active = 0.
endif.
modify screen.
endloop.
Hope this helps.
Reward if helpful.
Regards,
Sipra
2007 Feb 22 5:06 AM
Hi,
Try this.
parameters p1.
at selection-screen output.
p1 = 'A'.
loop at screen.
if screen-name = 'P1'.
screen-input = '0'.
modify screen.
endif.
endloop.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |