SAP DEMAND - Reference ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for DEMAND

DEMAND

ABAP Reference
ABAP Code Snippet


ABAP Syntax DEMAND val1 = f1 val2 = f2 ...

FROM CONTEXT context_ref
[MESSAGES INTO itab].
ABAP Code Snippet

What does it do? Obsolete: Assigns the derived values val1, val2, ... to a context instance ref context_ref to the data objects f1, f2, ...

ABAP Addition MESSAGES INTO itab
Appends messages of the context to the internal table itab. Otherwise messages are sent.

Return to menu