SAP REPORT DEFINING ABAP Statements



Get Example source ABAP code based on a different SAP table
  


• DEFINING DATABASE REPORT (obsolete)

REPORT, DEFINING DATABASE
Short Reference

ABAP_SYNTAX_OBS
... $[ DEFINING DATABASE ldb $] ...

What does it do?
This addition of the statement REPORT shows that the current program is the database program of the logical database ldb. The name of this logical database has a maximum length of 20 characters. Logical databases are defined with the tool Logical Database Builder of the ABAP Workbench, in which the master program is generated automatically including the statement REPORT. The name of the master program is SAPDBldb.



Latest notes:

If logical databases are no longer created, it is no longer necessary to use the addition DEFINING either.
ABAP_HINT_END



Example ABAP Coding

Introduces the logical database F1S. REPORT sapdbf1s DEFINING DATABASE f1s.
ABAP_EXAMPLE_END

Return to menu