ABAP - Keyword Documentation →  ABAP - ABAP Release News →  News for ABAP Release 7.5x →  News for ABAP Release 7.52 → 
Mail Feedback

ABAP SQL in ABAP Release 7.52


1. Internal Tables as Data Sources

2. Relational Expressions

3. Conversion Functions

4. Path Expressions

5. Access Control

6. ORDER BY and UP TO, OFFSET in Subquery

7. Cardinality in LEFT OUTER JOIN

8. FOR ALL ENTRIES and Strings in the SELECT List

9. Addition NOT for BETWEEN and LIKE

10. Strict Mode in the Syntax Check

11. Client Handling

12. Replacement Service for ABAP SQL



Modification 1  

Internal Tables as Data Sources

An internal table can be specified as a data source data source of a query. This statement cannot be executed on all database systems, if the data from the internal table needs to be passed to the database.



Modification 2  

Relational Expressions

The following is now possible for conditions in expressions:





Modification 3  

Conversion Functions

The new type conversion functions BINTOHEX and HEXTOBIN make it possible to convert byte strings to character strings (and the other way round) in SQL expressions, which is not possible with a CAST expression.



Modification 4  

Path Expressions

The following is now possible for path expressions:





Modification 5  

Access Control

The new addition WITH PRIVILEGED ACCESS switches CDS access control off.



Modification 6  

ORDER BY and UP TO, OFFSET in Subquery

In a subquery, it is now possible to use an ORDER BY clause and the additions UP TO, OFFSET can be used after the clause. It is not possible to execute a subquery with an ORDER BY clause on all database systems



Modification 7  

Cardinality in LEFT OUTER JOIN

In a LEFT OUTER JOIN, an addition ONE TO MANY can now be specified for the cardinality. This is evaluated as a note for optimization by SAP HANA databases.



Modification 8  

FOR ALL ENTRIES and Strings in the SELECT List

In the previous strict modes of the syntax check, the addition FOR ALL ENTRIES of statement SELECT could not be specified together with columns of the types STRING and RAWSTRING or LCHR and LRAW in the SELECT list. This restriction has been removed and now the syntax check simply issues a warning.



Modification 9  

Addition NOT for BETWEEN and LIKE

The addition NOT can now specified in front of BETWEEN and LIKE in relation expressions for expressions.



Modification 10  

Strict Mode in the Syntax Check

If one the new features listed above is used in an ABAP SQL statement, the syntax check is performed in a strict mode, which handles the statement more strictly than the regular syntax check.



Modification 11  

Client Handling

The following (stricter) rules for the additions USING CLIENT and CLIENT SPECIFIED now apply when switching and disabling implicit client handling in reads on CDS entities:





Modification 12  

Replacement Service for ABAP SQL

The class CL_OSQL_REPLACE can be used in unit tests with ABAP Unit to redirect database accesses in ABAP SQL to other databases.