For testing purposes I need my ABAP program to wait for few seconds. How can this be done?
相关问题
- Generate WSDL web-service objects in SAP
- How to programmatically tell if system is R/3 or S
- replace parameter name show on screen?
- Get table field description programmatically
- After message type e, program doesn't return t
相关文章
- JCO IDOC Server for multiple destinations
- SAP DI Server - How to issue first request?
- Parsing SAP IDOC files
- How to connect to a SAP System using sapjco3 and E
- Different ways to call methods in ABAP
- Export data from SAP to SQL Server [closed]
- sap abap alv report fill gap between documents
- How to prevent OData service call on model change
Do you really need it to pause? You could trace through it by entering /h into the transaction field before you execute the program or by setting a breakpoint in the code.
ABAP WAIT UP TO SAP Documentation
WAIT statement has an implicit COMMIT which is something that should be avoided.
Use when CPU processes are at a premium and when the implicit commit will not corrupt your data or cause a short dump because of an open database cursor.
Use when you cannot afford an implicit commit, and the system can handle the work process(es) being tied up for the duration of the SLEEP command.