2008 Jul 17 9:23 AM
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
2008 Jul 17 9:26 AM
raghu,
just search in SDN with loop at screen term.surly you will get your answer.
Amit.
2008 Jul 17 9:27 AM
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
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |