SAP REPORT DEFINING ABAP Statements

Get Example source ABAP code based on a different SAP table
  



REPORT - DEFINING DATABASE

Short Reference
• DEFINING DATABASE REPORT (obsolete)

ABAP Syntax(Obsolete)... [ DEFINING DATABASE ldb ] ...

What does it do? This addition of the report 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 maintained with the tool Logical Database Builder of the ABAP Workbench, in which the framework program is generated automatically including the statement REPORT. The name of the framework program is SAPDBldb.



Latest notes:If logical databases are no longer created, then you no
longer need to use the addition DEFINING either.



Example ABAP Coding
Introduction of the logical database F1S.
REPORT sapdbf1s DEFINING DATABASE f1s.

Return to menu