SAP LOGEXP ASSIGNED



Get Example source ABAP code based on a different SAP table
  


• IS ASSIGNED ABAP_RELAT_EXPR
• IS NOT ASSIGNED ABAP_RELAT_EXPR

ABAP_RELEXP - IS ASSIGNED

ABAP_SYNTAX
ABAP_KEY ... <(><)> IS $[NOT$] ASSIGNED ...

What does it do?
This predicate expression checks whether a memory area is assigned to a field symbol <(><)>. The expression is true if the field symbol points to a memory area. <(><)> expects a field symbol declared using FIELD-SYMBOLS or declared inline using FIELD-SYMBOL( ) .
With the addition NOT, the expression is true if no memory area is assigned to the field symbol.

ABAP_EXAMPLE_VX5
Assignment of a data object to a field symbol if no memory area has been assigned yet.
ABEXA 01077
ABAP_EXAMPLE_END