Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Call transformation

Former Member
0 Likes
372

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,

1 REPLY 1
Read only

Former Member
0 Likes
347

solved