‎2008 Mar 04 5:54 AM
In 45B, can I use command WAIT
Does
call function 'ENQUE_SLEEP'
exporting
seconds = 2
exceptions
system_failure = 01.
Do the same thing as wait
‎2008 Mar 04 6:07 AM
It holts the farther execution for certain intervals .
Suppose you pass '10' to the Seconds import parameter of ENQUE_SLEEP. The FM will take 10 seconds to execute. Hence the farther execution of your program folw will halt for 10 seconds. The functionality is same as wait.