SAP METHODS FOR BEHAVIOR ABAP Statements



Get Example source ABAP code based on a different SAP table
  


• FOR BEHAVIOR METHODS (obsolete)

METHODS, FOR BEHAVIOR

ABAP_SYNTAX
${ METHODS read FOR BEHAVIOR ... $}
$| ${ METHODS modify FOR BEHAVIOR ... $}
$| ${ METHODS lock FOR BEHAVIOR ... $}

What does it do?
Obsolete declaration of ABP handler methods in the handler class of an ABAP behavior pool. When using the addition FOR BEHAVIOR, the methods must have one of the predefined names modify, read, or lock.
Instead the following declarations should be used:
METHODS meth FOR READ ...
METHODS meth FOR MODIFY ...
METHODS meth FOR LOCK ...
Here, the name of the method is not prescribed. The meaning of the methods is defined by the addition FOR MODIFY, FOR READ, or FOR LOCK instead.

Return to menu