Application Development 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: 

how to read dynamic field symbol

Former Member
0 Kudos

hi all,

ASSIGN (tabname) TO <fs_tab>.

in above code i am passing dynamic table to fs_tab

can anyone tell me how can i read this field symbol........

in other words i want to read dynamic field symbols

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi

If you mean that you want to read this dynamic table then you can do it this way:

loop at <dyn_table> into <dyn_wa>.(or a regular internal table here)

Cheers

Ravish

3 REPLIES 3

Former Member
0 Kudos

Hi

If you mean that you want to read this dynamic table then you can do it this way:

loop at <dyn_table> into <dyn_wa>.(or a regular internal table here)

Cheers

Ravish

Former Member
0 Kudos

Hi,

you could do without the field-symbols:

grtz,

Koen

Former Member
0 Kudos

ASSIGN (tabname) TO <fs_tab>.

<fs_tab>-field = 2.

after assigning to fs change the value automatically .

even you dont have to modify in this case. The value will directly be updated in the internal table