I'm learning X++ and i have 2 question:
I don't understand what is the utility of ttsbegin and ttscommit !
where i must use it and what's the utility?
X++ Standards: ttsBegin and ttsCommit AX 2012
What is the utility of this operator "~"?
|
I'm learning X++ and i have 2 question: I don't understand what is the utility of X++ Standards: ttsBegin and ttsCommit AX 2012 What is the utility of this operator "~"? |
||||
|
|
|
From the documentation:
Note that
This means that you would begin a transaction with You would use them when you want to ensure that your read or update operations on application tables are not made inconsistent by other table operations that happen simultaneously See examples at the same link. The |
|||
|
|
|
Use ttsbegin when you what to access data in tables, it informs the system that transactions to the DB is going to take place. ttsbegin is like the BEGIN SQL statement and ttscommit is like the COMMIT SQL statement. You Have to use them together: As for the the '~', I have never used it before in 2years of X++ coding for Axapta(Microsoft Dynamics AX). |
|||
|
|