SAP WAIT - Reference ABAP Statements

Warning: Undefined variable $saptab in /customers/b/9/9/trailsap.com/httpd.www/abap-statements/index.php on line 46

Get Example source ABAP code based on a different SAP table
  

Warning: Undefined variable $prev in /customers/b/9/9/trailsap.com/httpd.www/abap-statements/index.php on line 62
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