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

how to make a parameter uneditable.

Former Member
0 Likes
509

hi all,

i have 2 parameters po_name and po_name1

if po_name is not initial.

then i should make po_name1 uneditable.

help me with any sample codes or suggestions

hi all,

i have 2 parameters po_name and po_name1

if po_name is not initial.

then i should make po_name1 uneditable.

help me with any sample codes or suggestions

2 REPLIES 2
Read only

Former Member
0 Likes
459

raghu,

just search in SDN with loop at screen term.surly you will get your answer.

Amit.

Read only

JozsefSzikszai
Active Contributor
0 Likes
459

hi,

something like this:

PARAMETERS : po_name TYPE .... USER COMMAND uc01,
po_name1 TYPE ... MODIF ID 001.

AT SELECTION-SCREEN OUTPUT.

LOOP AT screen.
CHECK srceen-group1 EQ '001'.
IF po_name IS NOT INITIAL.
screen-input = '0'.
ELSE.
screen-input = '1'.
ENDIF.
MODIFY screen.
ENDLOOP.

hope this helps

ec