‎2008 Jan 02 3:03 PM
Hi Experts,
Plz tell me the way (any function module) to convert "structure" into "Internal Table".
It should return Field name, values in internal table as table records.
Thanks in advance.
Regards
Deepak
‎2008 Jan 02 3:06 PM
‎2008 Jan 02 3:06 PM
‎2008 Jan 02 3:20 PM
DATA : BEGIN OF itab OCCURS 0.
INCLUDE STRUCTURE MACK1. "here mack1 is SAP structure
DATA : END OF itab.
‎2008 Jan 02 3:28 PM
table for output MARC file: Plant Data for Material
DATA: BEGIN OF gt_marc OCCURS 1000.
INCLUDE STRUCTURE marc.
DATA: END OF gt_marc
DATA: BEGIN OF gt_marc OCCURS 1000.
INCLUDE STRUCTURE <sturcture/ table>
DATA: END OF gt_marc.
‎2008 Jan 02 3:30 PM
hi
good
i dont think there is any function module which can convert the structure to internal table.
thanks
mrutyun^