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: 

Read table assign in fs

Former Member
0 Kudos

Hello,

I need read a internal table assing in a Field-symbol. I try ussing read or describe sentences but sap say "t_int not defined as internal table".

Anybody can help me???

Sorry for my bad english,

thanks.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi

FIELD-SYMBOLS: <TABLE> TYPE TABLE,

<WA> TYPE ANY.

LOOP AT <TABLE> ASSIGNING <WA>.

ENDLOOP.

Max

4 REPLIES 4

Former Member
0 Kudos

Hi

FIELD-SYMBOLS: <TABLE> TYPE TABLE,

<WA> TYPE ANY.

LOOP AT <TABLE> ASSIGNING <WA>.

ENDLOOP.

Max

0 Kudos

Hi

do this way ..

READ TABLE it_mara ASSIGNING <FS>.

Regards,

Santosh

Former Member
0 Kudos

READ TABLE itab ASSIGNING <FS>.

Is the command to read an internal table and assiging it to the field symbol

anversha_s
Active Contributor
0 Kudos

hi jose,

try this.

READ TABLE it_table ASSIGNING <FS>.

rgds

anver

pls mark hlpful answers