hi friends,
i am using table control in which i had placed a 'change/display' button. when i click on the button (if it is in display) mode it is changing to change mode. but there are some validations which i have to give in the runtime.
1) there is a field ztxflg. if this is field is not initial i.e., ztxflg='x' then i have to take care some modifications like if the 'M01'(represents month) record of a particular year has field ztxflg = 'X'. then i have to set the 'A00'(annual),'Q01'(quarter) to disable mode.
i had given the condition in pbo.
loop at it_sprds into zv_sprds with control tab1.
module modify_tab1.
endloop.
my problem is the record 'A00' is before the 'P01' record. so how can i change the values of screen 'A00' which had already parsed in the loop.
thanks for every one who wish to answer.