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: 

Srtucture: mg03steumm

Former Member
0 Kudos

Hi,

Can anyone help me with this one, i have to to inlcude taxim in my internal table and this table is from a structure. I have tried to use this:

READ TABLE i_tax .

IF sy-subrc = 0.

MOVE-CORRESPONDING i_tax TO i_tab.

MODIFY i_tab.

ENDIF.

but unfortunately it never worked. Can anyone advice me?

Regards,

Fred

4 REPLIES 4

Former Member
0 Kudos

Try This

DATA wa TYPE i_tab

READ TABLE i_tax .

IF sy-subrc = 0.

MOVE-CORRESPONDING i_tax TO wa.

MODIFY i_tab FROM wa.

ENDIF.

Yogesh N

0 Kudos

Hi,

I have tried this method but it's still doesn't work.

Regards,

Fred.

0 Kudos

DATA wa TYPE i_tab

DATA wa1 TYPE i_tax.

READ TABLE i_tax INTO wa1 .

IF sy-subrc = 0.

MOVE-CORRESPONDING wa1 TO wa.

MODIFY i_tab FROM wa.

ENDIF.

Former Member
0 Kudos

My problem is solved in such a way that, i used table mlan to read taxim, and it works.

Thanks for all your contributions