2010 Mar 29 6:18 AM
Hi all,
Morning can clarify me about internal table.
if we dont have header for internal table .what all operation can we do.
thanks,
satish
2010 Mar 29 6:27 AM
Hi,
You will find thousands of posts regarding you query in this forum. Please search before posting your question.
e.g take a look at this post
Link:http://wiki.sdn.sap.com/wiki/display/SI/WorkingwithInternaltables.
Regards
Ahsan
2010 Mar 29 6:30 AM
2010 Mar 29 12:39 PM
Hi ,
If you did not declare internal table with out header line then you need to create one work area. Then use this work area like header line.
Some sample code
Declaration
INTERNAL TABLES *
data:
i_tvarvc type standard table of x_tvarv initial size 0.
Work area
data: wa_tvarvc type x_tvarv, " TVARVC parameter
How to use work area
loop at i_tvarvc into wa_tvarvc where name = c_tvarvc_plant.
Now use wa_tvarvc instead of header line
Endloop.
Thanks
Subhankar
2010 Mar 29 12:42 PM
Please search even harder before posting, there is a lot of information available, and treat community members with respect.
Thread locked.
Thomas