ABAP Keyword Documentation → ABAP - Reference → Obsolete Language Elements → Obsolete Program Flow → Obsolete Relational Expressions
rel_exp - IS REQUESTED
Other versions: 7.31 | 7.40 | 7.54
Obsolete Syntax
... para IS [NOT] REQUESTED ...
Effect
This predicate expression checks whether an output parameter para
of a
procedure is being requested. The expression is true if at 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.
With addition NOT
, the expression is true if at the call no actual parameter was assigned to the formal parameter.
Notes
- Do not use the predicate
IS REQUESTED
any more. The predicate expressionIS SUPPLIED
can be used instead, which includes all functions ofIS REQUESTED
.
- In update function modules, checks on
table parameters using
IS REQUESTED
produce a syntax check warning. This is because an actual parameter is always assigned to the table parameter in this case.