‎2008 Feb 20 4:27 PM
Hello Friends,
How to declare itab which consists Nested structures
‎2008 Feb 20 5:03 PM
Hi, Just specify the component type as your nested structure (structure, table or table type). See WLF_AGENCY_DATA_NAST in SE11 for an example.
‎2008 Feb 20 5:08 PM
Hi BVS,
Nested structure definition.
TYPES: BEGIN OF struct1,
col1 TYPE i,
BEGIN OF struct2,
col1 TYPE i,
col2 TYPE i,
END OF struct2,
END OF struct1.
Internal table declaration as follows:
DATA ITAB TYPE STANDARD TABLE OF STRUCT1 WITH HEADER LINE.
Thanks,
Vinay