‎2008 Mar 16 8:05 AM
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
‎2008 Mar 16 8:08 AM
Hi,
You need to use field-symbols only if you want to create dynamic structure.
Regards,
Atish
‎2008 Mar 16 8:08 AM
Hi,
You need to use field-symbols only if you want to create dynamic structure.
Regards,
Atish
‎2008 Mar 16 8:48 AM
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>.