SAP LOGEXP REQUESTED



Get Example source ABAP code based on a different SAP table
  


• IS REQUESTED ABAP Statement
• IS NOT REQUESTED ABAP Statement

ABAP_RELEXP - IS REQUESTED

Obsolete Syntax
ABAP_KEY ... para IS $[NOT$] REQUESTED ...

What does it do?
This predicate expression checks whether an output parameter para of a procedure is being requested. The expression is true if in the call an actual parameter was assigned to the formal parameter.
This expression is possible only in function modules and methods. para expects only output parameters and optional input/output parameters.
If the addition NOT is specified, the expression is true if no actual parameter was assigned to the formal parameter in the call.



Latest notes:

The predicate IS REQUESTED should no longer be used. The predicate expression IS SUPPLIED can be used instead, which includes all functions of IS REQUESTED.
In update function modules, checks on table parameters using IS REQUESTED produce a syntax check warning because an actual parameter is always assigned to the table parameter in this case.
ABAP_HINT_END