HI all,
Can anyone help me please. I want to read data from view with below simple program
Report zread_view.
DATA: it_t053 TYPE TABLE OF V_T053,
wa_t053 like line of it_t053.
*SELECT * INTO TABLE it_t053 from v_t053.*
LOOP AT it_t053 INTO wa_t053.
WRITE: / wa_t053-KURZT.
ENDLOOP.
But when activating this message is show:
'V_T053" is not defined in the ABAP Dictionary as a table, projection view, or database view.
Need for anyone help...?
Thanks,
Ramses