Working with database tables and internal tables

* Declaration of a work area for a Dictionary tableTABLES CUSTOMERS.* Internal table used as snapshot of the database tableDATA ALL_CUSTOMERS LIKE CUSTOMERS OCCURS 100WITH HEADER LINE.* Reading the entries of the database table into an internal tableSELECT * FROM CUSTOMERS INTO TABLE ALL_CUSTOMERS.* Displaying each line of an internal tableLOOP AT ALL_CUSTOMERS.WRITE: / ALL_CUSTOMERS-NAME.ENDLOOP.*&———————————————————————* … Read more