‎2008 Jun 13 4:22 AM
Hi Friends,
How to stop the users changing parameters value?
(e.g)
PARAMETERS: P_BUKRS LIKE BSEG-BUKRS DEFAULT '0100'.
This '0100' should not be changed. Thanks in advance
Regards
Hari
‎2008 Jun 13 4:29 AM
Hi,
Check the below code
PARAMETERS: P_BUKRS LIKE BSEG-BUKRS DEFAULT '0100'.
at selection-screen output.
loop at screen.
if screen-name = 'P_BUKRS'.
screen-input = 0.
modify screen.
endif.
endloop.
endloop.Hey you can also do this but on selection screen you will not dispaly your parameter.
PARAMETERS: P_BUKRS LIKE BSEG-BUKRS DEFAULT '0100' NO-DISPLAY.Thanks
VIKRANTH
‎2008 Jun 13 4:29 AM
Hi,
Check the below code
PARAMETERS: P_BUKRS LIKE BSEG-BUKRS DEFAULT '0100'.
at selection-screen output.
loop at screen.
if screen-name = 'P_BUKRS'.
screen-input = 0.
modify screen.
endif.
endloop.
endloop.Hey you can also do this but on selection screen you will not dispaly your parameter.
PARAMETERS: P_BUKRS LIKE BSEG-BUKRS DEFAULT '0100' NO-DISPLAY.Thanks
VIKRANTH
‎2008 Jun 13 4:31 AM
hi,
http://www.sapdb.org/htmhelp/ea/be1411481611d4aa1100a0c9430730/content.htm
hope this may help you...
regards,
praveena.
‎2008 Jun 16 2:23 AM