Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

to update data using Table control in Module Pool

Former Member
0 Likes
1,320

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

3 REPLIES 3
Read only

Former Member
0 Likes
545

Hi Srinivas..

Please Say the Question Clearly...

Whether U need to populate the Internal table values in the table control?

Regards

Bala..

Read only

Former Member
0 Likes
545

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

Read only

Former Member
0 Likes
545

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.