DATA: BEGIN OF IT_BSIS OCCURS 0,
BUKRS TYPE BSIS-bukrs, " co code
HKONT TYPE BSIS-HKONT, "General Ledger Account
BUDAT TYPE BSIS-BUDAT, "Posting Date in the Document
AUFNR TYPE BSIS-AUFNR, " SO Number
WRBTR1 TYPE BSIS-WRBTR, " Amount in document currency
END OF IT_BSIS.
I want to collect the data on wrbtr1 .
LOOP AT IT_BSIS .
COLLECT IT_BSIS INTO IT_BSIS2 .
ENDLOOP.
data in table
1000 0000300000 20071024 0000100000 2560.00
1000 0000300000 20071117 0610000004 100000.00
1000 0000300000 20071201 0000100000 200.00
do i need to have char type fields in table atleast 1 to have proper answer ?