Hi ,
I am fetching data from LIPS table first and according to that I am getting values from MCH1:-
SELECT vbeln
posnr
matnr
charg
lfimg
vrkme
lgmng
vgbel
vgpos
mtart
xchpf
umcha
INTO TABLE t_lips
FROM lips
WHERE vbeln EQ p_vbeln.
IF t_lips[] IS NOT INITIAL.
SELECT charg
INTO TABLE t_mch1
FROM mch1
FOR ALL ENTRIES IN t_lips
WHERE charg EQ t_lips-charg.
IF sy-subrc EQ 0.
ENDIF.
endif.
this code is giving dump.
description of DUMP:-
This is probably due to an error in the ABAP program.
Following a SELECT statement, the data read could not be placed in AN
the output area.
A conversion may have been intended that is not supported by the
system, or the output area may be too small.
please help me to solve this.
Regards Avi
IF sy-subrc EQ 0.
ENDIF.