Chapter 11 - ABAP Native SQL
Chapter 11 - ABAP Native SQL
Objectives
EXEC SQL.
<any SQL statement>
ENDEXEC.
Demonstration
Practice
Summary
Database tables in ABAP Native SQL does not have to be in the ABAP
Dictionary.
The TABLES statement is not required for any tables addressed through ABAP
Native SQL.
Native SQL should be used to access data in tables outside of the SAP system.
ABAP Native SQL statements must be enclosed between EXEC SQL and
ENDEXEC.
All variables defined inside the ABAP program using a DATA or PARAMETER
statement and used inside an ABAP Native SQL statement, must be preceded by
a colon.
Questions