SAP TRANSFER - Reference ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for TRANSFER

TRANSFER

ABAP Reference
ABAP Code Snippet


ABAP Syntax TRANSFER dobj TO dset [LENGTH len]

[NO END OF LINE].
ABAP Code Snippet

What does it do? Transfers the data of the data object dobj to the file specified in dset.

ABAP Addition LENGTH len
Restricts the number of characters or bytes to be transferred to len . NO END OF LINE
Prevents the attachment of end of line separators for text files or legacy text files.

Return to menu