SAP TYPES LOB HANDLE TYPE ABAP Statements



Get Example source ABAP code based on a different SAP table
  


• LOCATOR FOR TYPES
• READER FOR TYPES
• WRITER FOR TYPES
• LOB HANDLE FOR TYPES

TYPES, lob_handle_type

ABAP_SYNTAX
... ${ READER$|LOCATOR$|${LOB HANDLE$} $}
$| ${ WRITER$|LOCATOR $} ...

What does it do?
These additions define the static type of the LOB handle components when deriving a LOB handle structure using the statement TYPES.
The addition READER defines the following:
The static type CL_ABAP_DB_X_READER for BLOBs
The static type CL_ABAP_DB_C_READER for CLOBs
The addition WRITER defines the following:
The static type CL_ABAP_DB_X_WRITER for BLOBs
The static type CL_ABAP_DB_C_WRITER for CLOBs
The addition LOCATOR defines the following:
The static type CL_ABAP_DB_X_LOCATOR for BLOBs
The static type CL_ABAP_DB_C_LOCATOR for CLOBs
The addition LOB HANDLE defines the following:
The static type IF_ABAP_DB_BLOB_HANDLE for BLOBs
The static type IF_ABAP_DB_CLOB_HANDLE for CLOBs
The additions READER and WRITER cannot be used together in the statement TYPES. Furthermore, WRITER cannot be used together with LOB HANDLE.
The combination options with the column specifications lob_handle_columns are explained in the statement TYPES.

ABAP_EXAMPLE_VX5
Definition of various LOB-Handle components for the individual columns of a database table DEMO_LOB_TABLE.
ABEXA 00729
ABAP_EXAMPLE_END

ABAP_EXAMPLE_ABEXA
Deriving LOB Handle Structures
ABAP_EXAMPLE_END

Return to menu