Hi all,
Im working on a screen enhancement for RFQ, i called a customised screen from the screen enhancement through a subscreen.In the customised screen i have header data and table control, For each im maintaining separate custom tables.my problem is when i enter through change/display tcodes , corresponding changes occuring only in table control not in the header data. I need to make corresponding change/display in header data too. im using this code
check for Display mode
if status = 'A'.
loop at screen.
screen-input = '0'.
modify screen.
endloop.
endif.
*Check for Change mode
if status = 'V'.
loop at screen.
screen-input = '1'.
modify screen.
endloop.
i tried with screen group also...
if status = 'A'.
loop at screen.
IF screen-group1 = '200'.
screen-input = '0'.
modify screen.
endif.
endloop.
endif.
but only im getting the corresponding changes in table control not in header data. Please help me....it's urgent
Avinash