Hello,
I have a text tab delimited file in application server.I have used
OPEN DATASET ld_file FOR INPUT IN TEXT MODE MESSAGE gv_open_msg.
and i have got the data in an internal table itab using read data set. the data in itab shows as ....
115680#5267314#0121#12.00#07/29/2007#06/29/2007#status
115681#5267312#0121#12.00#07/29/2007#06/29/2007#status
i need to move this into one more table
DATA: BEGIN OF t_input OCCURS 0,
vkont(9) TYPE c,
vertrag(9) TYPE c,
bukrs(5) TYPE c,
betrw(8) TYPE c,
pos_dat(10) TYPE c,
doc_dat(10) TYPE c,
transctn(34) TYPE c,
END OF t_input.
1)my version is 4.6 c so cannot use CL_ABAP_CHAR_UTILITIES
2) I used
constants: value type x value '09'.
SPLIT itab AT value INTO TABLE t_input.
but it didnt get splitted.
i have changed the value as 05 and cheked but not working...
pls advice......................thanks in advance