2009 Apr 15 4:22 AM
Hello,
I am using simple transformation to convert from ABAP to XML.
my internal table or the source is as follows:
TYPES: BEGIN OF T1,
A,
B,
C,
END OF T1.
DATA: BEGIN OF WT1,
LB TYPE TABLE OF t1,
END OF WT1.
TYPES: BEGIN OF T2.
INCLUDE STRUCTURE WT1.
TYPES:END OF T2.
TYPES: BEGIN OF T3,
D,
E,
F TYPE T2,
END OF T3.
How do I write the transformation so that my sourc is T3? please help.
Thanks,
Hello,
I am using simple transformation to convert from ABAP to XML.
my internal table or the source is as follows:
TYPES: BEGIN OF T1,
A,
B,
C,
END OF T1.
DATA: BEGIN OF WT1,
LB TYPE TABLE OF t1,
END OF WT1.
TYPES: BEGIN OF T2.
INCLUDE STRUCTURE WT1.
TYPES:END OF T2.
TYPES: BEGIN OF T3,
D,
E,
F TYPE T2,
END OF T3.
How do I write the transformation so that my sourc is T3? please help.
Thanks,
2009 Apr 15 12:23 PM