Hi All,
I have defined a table control using wizard. Table control is based on a ABAP internal table (G_DELIVERY_DATA_ITAB
) and I have defined a explicit work area (G_DELIVERY_DATA_WA) for the internal table. I have data populated in the internal table and in the PBO I am using the following statement to move the data to the screen.
LOOP AT G_DELIVERY_DATA_ITAB
INTO G_DELIVERY_DATA_WA
WITH CONTROL DELIVERY_TAB
CURSOR DELIVERY_TAB-CURRENT_LINE.
ENDLOOP.
I can see that G_DELIVERY_DATA_WA gets the data from the internal table in the above loop ( and my screen fields are defined as G_DELIVERY_DATA_WA-VBELN, G_DELIVERY_DATA_WA-POSNR etc..) but I don't see them on the screen.
Please let me know what could be causing this problem?
Thanks,