‎2007 Mar 13 6:25 AM
Hi,
Please send me a sample code to copy a row of table control and to paste it in the row selected.
This is very urgent
‎2007 Mar 13 10:54 AM
Hi,
you can use sy-ucomm = 'PICK' in the table control and then name the table control field names and your screen field names the same..
sap takes care of transfering the data from table control field to your field name in your screen if you give the same name to both..
hope it helps..
Award marks if it helps
‎2007 Mar 13 10:54 AM
Hi,
you can use sy-ucomm = 'PICK' in the table control and then name the table control field names and your screen field names the same..
sap takes care of transfering the data from table control field to your field name in your screen if you give the same name to both..
hope it helps..
Award marks if it helps
‎2007 Mar 14 1:41 AM
Try this out,
1. Read the table control with the record having selection flag as 'X' (the selection indicator is the name you give to the selection indicator of the table control in screen painter).
2. Move the read valuse into a workarea.
3. Read the selected row of the target table control (same as step 1) and MODIFY / APPEND the record with corresponding values.
Naveen.
‎2007 Mar 16 11:07 AM
Hi Lakshmi,
1. An extra column should be provided in your table control which indicates the selected line.
2. the record which has this col set is chosen and moved to a workarea
3. Now edit / append this record to the new table based on your conditions
Hope this solves your problem
PS : Please reward points if solution is helpful
‎2009 Feb 05 7:34 AM