SAP CLEAR - Reference ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for CLEAR

CLEAR

ABAP Reference
ABAP Code Snippet


ABAP Syntax CLEAR dobj [ {WITH val [IN {CHARACTER|BYTE}
MODE]}
| {WITH NULL} ].
ABAP Code Snippet

What does it do? Initializes a data object dobj by assigning an appropriately typed initial value.

ABAP Addition WITH val
Fills the data object with the val specified in characters or bytes.
IN {CHARACTER|BYTE} MODE
Specifies either character or byte processing
WITH NULL
Obsolete: Replaces all the bytes in dobj with the hexadecimal value 0.

Return to menu