Hi,
I am developping an transformation start routine an d i need to create an internal table in my routine.
I create this table
DATA: BEGIN OF ref_mat_plant,
plant TYPE /BI0/PMAT_PLANT-PLANT,
amt_plant TYPE /BI0//PMAT_PLANT-mat_plant,
...
END OF ref_mat_plant
but when i check i have a message E: REF_MAT_PLANT is not an internal table "CCURS n" specification is missing
I tried to add OCCURS 0 but it doesn't work (and it should not to be used in transformation)
Any idea
Cyril