Skip to Content
1
Former Member
May 31, 2011 at 08:47 AM

Reading data from View

970 Views

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