‎2007 Mar 24 10:12 AM
hi all,
the requirement is as follows.
i Have two screen .. the initial screen 9000 has two I/O fields. data is populated to the internal table using the values entered in these fields .. however my issue is the next screen .. in this screen i have a table control.. here the data from the datbase is getting populated however there are fields which do not have any values ... the user can update the values in this screen 9001 . i have enabled the gui status but it doesn't work ..
please help me.
if any body has some code it will mbe highly appreciated .
thanks
Srinivas
‎2007 Mar 24 11:29 AM
Hi Srinivas..
Please Say the Question Clearly...
Whether U need to populate the Internal table values in the table control?
Regards
Bala..
‎2007 Mar 24 11:38 AM
hi
i think your question is still unclear...as far as i understand, your gui status of screen 9001 doesn't work, even then you have set it? if so, make sure you have set the pf-status in the PBO of screen 9001 and write the logic for okcode and sy-ucomm in the PAI of screen 9001...hope this helps
if useful, reward
Sathish. R
‎2007 Mar 24 12:26 PM
Hi,
If I have undestood you clearly-
You need to update the internal table field values,you need to update the internal table at PROCESS AFTER INPUT.
This will be like this-
PROCESS AFTER INPUT.
LOOP AT ITAB.
MODULE modify_itab.
ENDLOOP.
In this MODULE you need to modify your internal table.
Thx.