Question:
Hi every one,
A quick question for you guys. I have dialog program , it displays all the line items of the purchase order in table control.
I have a check box in the table control, where the user can select the items and modify the delivery dates , etc.
Now, there is also a column 'delivery number' in the table control, if any line item has delivery number, that line item should turn into grey,, meaning the user must not have option to select the check box.
Any ideas?
Apprecaite your help....
Thanks a lot
Vasu
Answer:
something like this.
loop at screen.
<your condition>
if screen-group1 = 'INP'.
screen-input = '0'.
modify screen.
endif.
<endif>
endloop.
Answer:
Thank you very much!
I got it!
Appreciate your help
Vasu