Hi All,
I have an internal table where i have populated Billing Document header and item level data. Now i have a field in the same internal table "material Desc" which is empty. I have material number data in the same internal table.
Now i have used for all entries syntax to get the material description against available material number as follows.
SELECT MAKTX FROM MAKT
INTO I_VBRK-MAKTX
FOR ALL ENTRIES IN I_VBRK
WHERE MATNR = I_VBRK-MATNR.
After execution of this syntax, the internal table is populating with required Material Description. But the other fields like Billing Document Number, Business Areas etc data are getting deleted.
How to resolve this issue?
Regards
Pavan