Tony Hinkle
Tony Hinkle

Reputation: 4742

How to see progress of general ledger batch posting

Is there a way in Dynamics AX 2012 R2, or using a SQL query, to see the progress of a general ledger batch posting? Not looking for a way to add code for the user to see it, but a way for a system admin, for example, to see if it is progressing. ~300,000 lines running for >24 hours and I'd like to have some assurance it is moving along.

Upvotes: 1

Views: 380

Answers (1)

Alex Kwitny
Alex Kwitny

Reputation: 11564

This blog post by Dilip seems to be what you need:

http://daxdilip.blogspot.com/2014/02/tip-dynamics-ax-batch-execution-and.html

Basically you can use NOLOCK in SQL to query the uncommitted data. Combine that with querying committed data and you should be able to write a query to get the progress you need.

Upvotes: 2

Related Questions