Ansicht
Dokumentation

ABENSELECT_INTO_LOB_HANDLES - SELECT INTO LOB HANDLES

ABENSELECT_INTO_LOB_HANDLES - SELECT INTO LOB HANDLES

ABAP Short Reference   RFUMSV00 - Advance Return for Tax on Sales/Purchases  
This documentation is copyright by SAP AG.
SAP E-Book

SELECT, LOB Handles

In a standalone SELECT statement or a WITH statement, but not in a FETCH statement, LOB handles can be created as reader streams and as locators in the INTO clause.

Prerequisites

An LOB from the result set can be assigned to an LOB handle component of a work area, or to an individual reference variable for an LOB handle. The static type of all LOB handle components must contain the interface IF_ABAP_DB_LOB_HANDLE and match the corresponding data source component, that is, they must be less specific or the same as one of the following system classes for streaming or locators:

The stream type or locator type must match the data type of the LOBs.

Rules

If an LOB from the result set of a selection is assigned to an LOB handle component of a work area or to an individual reference variable for an LOB handle, either

and after the execution of the SELECT statement the reference variable points to the object. The class used is determined using the data type of the column of the result sets and the static type of the target variable, or using the addition CREATING if required. The LOB to be read can be evaluated or forwarded using LOB handle methods.

A LOB handle created in this way, that is, a reader stream or a locator, exists until it:

  • is closed explicitly using its CLOSE method from the IF_ABAP_CLOSE_RESOURCE interface,
  • is closed implicitly at the end of the current database LUW.

Reader streams, but not locators, are also closed implicitly by the statement ENDSELECT.

Accessing a closed LOB handle produces a runtime error.

Special properties of open reader streams and locators:

  • As long as a reader stream for an statement is still open, the associated database is not closed. This state can only occur with SELECT SINGLE, since there is no implicit termination of the reader stream using ENDSELECT. In this case, a reference to an object of the class CL_ABAP_SQL_SELECT_STATEMENT, a subclass of CL_ABAP_SQL_STATEMENT_HANDLE, can be obtained from the interface IF_ABAP_DB_READER using the method GET_STATEMENT_HANDLE before closing the reader stream. The methods of the abstract superclass implemented there can be used to check the state of the statement, and all streams that are still open can be closed.
  • It is guaranteed that, once created, a locator always works with the same LOB data. If the associated LOB column is modified while a locator is open, an internal copy of the LOB data for the locator is created on the database first.

Restrictions

The following restrictions apply:

  • A maximum of 16 data streams can be opened for an Open SQL statement.
  • In a database LUW there can be a maximum of 16 Open SQL statements whose streams are open at the same time.
  • A maximum of 1000 LOB handles can be open in a database LUW.
  • If LOB handles are created together with the addition SINGLE, all primary key fields in logical expressions joined using AND in the WHERE condition are checked for equality.

Note

A LOB handle should always be closed as soon as possible using its method CLOSE. See also Streaming and Locators.

Examples

Example

Reading of a BLOB to a reader stream.






RFUMSV00 - Advance Return for Tax on Sales/Purchases   Addresses (Business Address Services)  
This documentation is copyright by SAP AG.

Length: 7549 Date: 20240424 Time: 234029     sap01-206 ( 96 ms )