‎2007 Jun 09 3:07 PM
how to make a 'parameter p type xyz' in gui to display value only. cannot use for input.
‎2007 Jun 09 3:13 PM
Use Screen internal table
Write the code like
at selection-screen output.
loop at screen.
if screen-name = 'P_XYZ'.
screen-input = 0.
modify screen.
endif.
endloop.
‎2007 Jun 09 3:13 PM
Use Screen internal table
Write the code like
at selection-screen output.
loop at screen.
if screen-name = 'P_XYZ'.
screen-input = 0.
modify screen.
endif.
endloop.
‎2007 Jun 09 3:14 PM
TYPES : XYZ type <Data type>.
PARAMETERS : P type XYZ MODIF ID 'ASD'.
Use
loop at screen.
If screen-group1 = 'ASD'.
screen-enable = '0'. "Please check the screen attribute
modify screen.
ENDLOOP.
‎2007 Jun 09 5:07 PM
hi james,
if it's module pool
then in pbo you can write,
define one module called defult_values,
double click on that,
then in module pool u can write code in module and end module,
parameter = 'xyz'.
then it works,
if u want that in display mode at screen layout u can enbale no input checkbox in attribute screen.
regards,
seshu.