SAP READ DATASET - Reference ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for READ_DATASET

READ DATASET

ABAP Reference
ABAP Code Snippet


ABAP Syntax READ DATASET dset INTO dobj [MAXIMUM LENGTH mlen]

[[ACTUAL] LENGTH alen].
ABAP Code Snippet

What does it do? Imports data from the file specified in dset to the data object dobj.

ABAP Addition MAXIMUM LENGTH mlen
Restricts the number of characters and bytes to be read from the file to mlen.
[ACTUAL] LENGTH alen
Returns the number of characters and bytes read from the file to alen .

Return to menu