‎2010 Mar 18 7:16 AM
Hi All,
I made a table control and displaying data as well but problem is that i have one pushbutton named EDIT and i want if i select 1 row of that table control and press edit button then it shoud come in editable mode and after editing when user press the save button then it should save the data in table.
can anyone please help me?
regards.
‎2010 Mar 18 9:53 AM
inside the LOOP AT your table in table control you put a LOOP AT SCREEN
then for each entry in SCREEN you set INPUT field according to your needs
‎2010 Mar 18 9:53 AM
inside the LOOP AT your table in table control you put a LOOP AT SCREEN
then for each entry in SCREEN you set INPUT field according to your needs
‎2010 Mar 18 10:28 AM
Hi
In the PAI of that screen you have to handle the user command.
Case Sy-ucomm.
when 'SAVE'.
based on the conditions
Modify <Target DB name> form <Source Work area or internal table>.
End case.
Thanks & Regards
Jyo
‎2010 Mar 18 10:33 AM