Hi,
When performing for all entries...
SELECT bill_no
issued_on
issued_to FROM zfi_way_bill INTO TABLE it_tab WHERE issued_on LE date AND bill_status EQ '1'.
IF NOT it_tab[] IS INITIAL.
SELECT mblnr FROM mkpf INTO TABLE it_tab1 FOR ALL ENTRIES IN it_tab WHERE bktxt = it_tab-bill_no.
ENDIF.
I'm getting following error message.....
When using the addition "FOR ALL ENTRIES IN itab", the fields "BKTXT"
and "IT_TAB-BILL_NO" must have the same type and length . . . . . .
eventhough data type is same,length is different.Is there any alternative to make both fields length same apart from going to table and changing the length......
Please reply.....