AS ABAP Release 758, ©Copyright 2024 SAP SE. All rights reserved.
ABAP - Keyword Documentation → ABAP - ABAP Release News → News for ABAP Release 7.5x → News for ABAP Release 7.50 →
Data Types and ABAP Dictionary in ABAP Release 7.50
New Built-In ABAP Type int8
The new built-in data type int8 enables 8-byte integers with signs to be declared.
Global Temporary Tables
Database tables in ABAP Dictionary can be defined using the table category
global temporary table. A global temporary
table (GTT) can only be filled with temporary data during a database LUW. When a GTT is filled using
ABAP SQL, it must be emptied again explicitly before the next implicit database commit. If not, a non-handleable exception is raised.
Replacement Objects
A CDS can be assigned as a replacement object
to a transparent database table or a classic database view. In ABAP SQL reads, the replacement object is then accessed instead of the original object.
Value Ranges of Domains
When the value range of a domain is defined, the data types INT1, INT2, and INT4 are now checked (like INT8) to determine whether the fixed values and interval boundaries are valid values, that is, that they lie within the value range defined by the technical properties. Existing domains with invalid value ranges must be corrected.