‎2009 Apr 28 7:59 AM
Hi,
I have small requirement.I have selected one data base record into an internal table.Now internal table has 1 record i.e 1 row(ex: 10 columns). Now i will convert this single row record into multiple records i.e 10 rows( 10 columns wil; be converted into 10 rows). How i will convert this. Please give me any idea on this.
Regards
Geetha
‎2009 Apr 28 8:02 AM
hi,
take another internal table with same structure .
loop at itab1.
move itab1 to itab2 .
do 10 times.
append itab2.
enddo.
endloop.
hope it will help u .
‎2009 Apr 28 8:07 AM
Hi........
can u describe ur internal table structure because u want all the columns in row....!
Regards,
Chintan
Edited by: Chintan_SAP on Apr 28, 2009 12:38 PM
‎2009 Apr 28 8:08 AM