‎2009 May 13 9:18 AM
i have created one table control and i am giving the multiple line items i want to pass input values to another internal table how i can do
rajneesh
‎2009 May 13 9:32 AM
Hi
The first internal table used to display the data in table control should have a flag field for selection, so everytime the user selects a row that field will be set to X.
In this way u need to transfer the record where the mark field is equal to X:
LOOP AT ITAB INTO ITAB2 WHERE MARK = 'X'.
APPEND ITAB2.
ENDLOOP.Max
‎2009 May 13 9:38 AM
Hi,
If the values are new,Append the values into another internal table in PAOu2019s loop u2026endloop.
If the values are old,Append the values into another internal table in PBOu2019s loop u2026endloop.
Regards,
Anusha v.
Edited by: Anusha on May 13, 2009 2:14 PM