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

parameter at screen

Former Member
0 Likes
497

how to make a 'parameter p type xyz' in gui to display value only. cannot use for input.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
478

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.

3 REPLIES 3
Read only

Former Member
0 Likes
479

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.

Read only

Former Member
0 Likes
478

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.

Read only

Former Member
0 Likes
478

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.