SAP WAIT - Reference ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for WAIT

WAIT

ABAP Reference
ABAP Code Snippet


ABAP Syntax WAIT {UP TO t SECONDS} | {UNTIL
log_exp [UP TO t SECONDS]}.
ABAP Code Snippet

What does it do? Interrupts the execution of a program.

ABAP Addition UP TO t SECONDS
Interrupts the execution of a program for (a maximum of) t seconds.
UNTIL log_exp
Interrupts the execution of a program until the logical expression log_exp after a callback routine of an asynchronous RFC is true.

Return to menu