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: 

<Field Symbol>- how to write

Former Member
0 Kudos

Hi Frndz

I need your help.

My problem is i have a field symbol like

<fs> type any .

I am using <fs> as dynamic and it can have structure of Table MARA,KNA1,VBAK .

Now problem comes here ..How to write the <fs> individual column.Cos <fs> can be any table.

I know i can write directly : write <fs>. but i have to write individual column,

Please help me.

Subham

3 REPLIES 3

madan_ullasa
Contributor
0 Kudos

hi,

use 'assign .. components' ... type this on the editor and you will have more F1 help....

regds,

Madan..

former_member268877
Participant
0 Kudos

Hi,

Try using ,

ASSIGN COMPONENT 'COULMN_NAME' OF STRUCTURE is_structure TO <fs_column> .

Regards,

Ujwal

Former Member
0 Kudos

hai subham ,

u can use the following state ment to write the valeus

do .

assign component sy-index of work area to <fs>

if sy-subrc ne 0.

exit.

else.

write <fs>.

endif.

enddo.

this way u can write all teh fields assigned in the work area

hope it resolves ru issue

afzal