Ensuring a small transaction size
- Last Updated: January 16, 2024
- 1 minute read
- OpenEdge
- Version 12.8
- Documentation
One of the main advantages of using normal ABL transactions on PAS for OpenEdge is their small scope, requiring no communication with the client for the transaction to complete. In general, to implement a normal ABL transaction in a server procedure, you follow the same programming practices as when writing a small-scoped transaction for an ABL client.
In particular, avoid including code that can block the server session or otherwise delay execution, such as:
- Writing to or reading from external files
- Invoking any other operating system calls (for example, the
OS-COMMANDstatement)
For more information on implementing transactions in an ABL procedure, see Develop ABL Applications.