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

Dynamic structure creation.

Former Member
0 Likes
408

Hi,

I want to create dynamic user defined structure with some fields from tables included I know it would be possible only using field symbols, but i don't know how to implement it.

The structure contains fields like TSL01,TSL02,TSL03,....,upto TSL16. please help me out.

Regards,

Parag

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
373

Hi,

You need to use field-symbols only if you want to create dynamic structure.

Regards,

Atish

2 REPLIES 2
Read only

Former Member
0 Likes
374

Hi,

You need to use field-symbols only if you want to create dynamic structure.

Regards,

Atish

Read only

Former Member
0 Likes
373

Hi,

The following one is the simple example of working with field symbols

FIELD-SYMBOLS <PT> TYPE ANY.

DATA SFLIGHT_WA TYPE SFLIGHT.

...

ASSIGN SFLIGHT_WA-PLANETYPE TO <PT>.

WRITE <PT>.