SAP DATA LOB HANDLE ABAP Statements

Get Example source ABAP code based on a different SAP table
  



DATA - LOB HANDLE

Short Reference
• FOR COLUMNS DATA
• LOCATOR FOR DATA
• READER FOR DATA
• WRITER FOR DATA
• LOB HANDLE FOR DATA
• ALL OTHER COLUMNS DATA
• ALL BLOB COLUMNS DATA
• ALL CLOB COLUMNS DATA
• FOR COLUMNS CLASS-DATA
• LOCATOR FOR CLASS-DATA
• READER FOR CLASS-DATA
• WRITER FOR CLASS-DATA
• LOB HANDLE FOR CLASS-DATA
• ALL OTHER COLUMNS CLASS-DATA
• ALL BLOB COLUMNS CLASS-DATA
• ALL CLOB COLUMNS CLASS-DATA

ABAP_BASIC_FORM_7 DATA dtype TYPE dbtab [ READ-ONLY]
lob_handle_type FOR lob_handle_columns
[lob_handle_type FOR lob_handle_columns
... ].

What does it do? Derivation of an lob handle structure as a work area for working with streaming and locators in Open SQL. For dbtab, you must specify either a database table or view that is defined in the ABAP Dictionary.

Using the lob_handle_columns column specifications, lobs from dbtab are determined for which lob handle components are created in the structure and whose static type is determined using the lob_handle_type type specification.

The syntax and meaning of the additions are exactly the same as the definition of lob handle structures with the corresponding variant of the TYPES statement.

Return to menu