SAP SUPPLY ABAP Statements



Get Example source ABAP code based on a different SAP table
  


ID SUPPLY
• SUPPLY ABAP Statement
• TO CONTEXT SUPPLY (obsolete)

SUPPLY
Short Reference

ABAP_SYNTAX_OBS
SUPPLY key1 = f1 key2 = f2 ... TO CONTEXT context_ref.

What does it do?
This statement fills the key fields key1 key2 ... of a context instance with the values of data objects f1 f2 ... context_ref expects a data object that points to a context instance (see CONTEXTS). The names of key fields of the corresponding context can be specified for key1 key2 ... f1 f2 ... expects data objects whose data type matches the corresponding key field key1 key2 ...
The SUPPLY statement overwrites only the specified key fields with new values. If not all key fields are specified, the previous values are kept. The values of all fields of the context instance derived from a changed key field are invalidated by the SUPPLY statement.

Return to menu