ABAP Programs: Working with tables from the Dictionary

REPORT ZSOURCE0501.

* Declaration of a work area for a Dictionary table
TABLES CUSTOMERS.
* Reading all entries of the database table and displaying each entry
SELECT * FROM CUSTOMERS.
WRITE: / CUSTOMERS-NAME.
ENDSELECT.

No comments:

Post a Comment