I have a itab which shows as given below
DATA: BEGIN OF it_data OCCURS 0,
record(500),
END OF it_data.
*itab has following entries
115680#5267314#0121#12.00#07/29/2007#06/29/2007#xxxxxxxx
115681#5267312#0121#12.00#07/29/2007#06/29/2007#xxxxxxxx
I need to move it_data entries into one more table t_input_temp
DATA: BEGIN OF t_input_temp OCCURS 0,
vkont LIKE ever-vkonto,
vertrag LIKE ever-vertrag,
bukrs LIKE ever-bukrs,
betrw LIKE fkkop-betrw,
pos_dat LIKE sy-datum,
doc_dat LIKE sy-datum,
transctn(34) TYPE c,
END OF t_input_temp.
the value size may vary in itab,it s not fixed.the length of vkont may vary.so i cant use split ....itab output is obtained from application server
pls advice hw to move from itab to t_input_temp.
thanks in advance.
Edited by: sapuser acc on Jan 2, 2008 10:35 AM