Hi Guys,
I am trying to debug some code. I have an outer scope like this:
ttsbegin;
mytable.insert();
myTable::myTableMethod();
ttscommit;
the method is like this
STATIC void myTableMethod()
While Select From myTable Where (certain records that were just inserted in the outer scope)
{
do stuff
}
When I stop the debugger while i am in my While Select statement. I can see the recId's of the records in myTable that were JUST inserted, but when I go into SQL server, i cannot see these records...? Im assuming this is because they were not yet committed. How is it that the While Select Query is able to see them? This is standard code actually. BomCalcTrans.updateReNumberOprNum. I am mostly interested in understanding the concepts behind how AX can find the records, but I cannot. Maybe i have a misunderstanding of something. Any help would be appreciated. Thanks!
*This post is locked for comments
I have the same question (0)