Skip to Content
0
Former Member
May 30, 2008 at 02:09 PM

transfer data from XI message interafce to internal table

16 Views

my code is like this..

TYPES: BEGIN OF xxx,

vbeln TYPE vbrk-vbeln,

END OF xxx.

Data yyy TYPE TABLE OF xxx.

i have an XI mesage interface where i have an internal table which holds 10 numbers(itab). i want those to be transferref to my internal table in the proxy class. how do i do that. i am done upto this part..

LOOP AT itab into cstr

  • where cstr is a string to hold the individual values of itab for transfer

ENDLOOP