PUT (ABAP Keyword)

PUT is a keyword used in SAP ABAP programming.This tutorial covers its introduction & syntax details.

PUT

Basic form
PUT dbtab.

Effect
This statement is only to be used in the access program of the logical database where the table dbtab occurs.

PUT dbtab. ” triggers the event ” GET dbtab. ” in the relevant report.
Then, it calls the PUT suroutines of the immediately following tables
in the structure, provided that GET events exist for subsequent tables
in the report.

Note
The work areas of the tables defined in
the database program and in the report are used together. As a result,
the contents of dbtab at the time of the PUT statement are also
automatically available in the corresponding GET event.