Is there any way to run methods in async in AX 2012 ?
I have found ways and implemented them in D365 F&O using Global::runAsync()
Is there any similar method in Ax 2012 such that I return a value first and then run my code in Async manner ?
Is there any way to run methods in async in AX 2012 ?
I have found ways and implemented them in D365 F&O using Global::runAsync()
Is there any similar method in Ax 2012 such that I return a value first and then run my code in Async manner ?
Hi Dhruvil,
Impolite interjection, have you tried this blog?devblog.sertanyaman.com/.../
It mentioned "In AX2012 for that purpose we have used the xApplication::runasync() method and Thread framework."
Although those two are now depreciated and replaced by the optimized Form and Global class methods.
Aha, I thought your previus reply meant that you needed web services or so.
If you believe that SysOperation is the same as AIF, you're wrong. This is how your code could look like:
MyClass myClass = MyClass::construct(); myClass.parmExecutionMode(SysOperationExecutionMode::ScheduledBatch); myClass.startOperation();
It has nothing to do with AIF.
Not specifically, but I wanted to use thread like functionality. I wanted to return the value to the calling function first and then process my work in async manner and catch exceptions in separate log table irrespective of what value is passed the calling function.
Unfortunately I don't know what you're talking about. It seems you have some requirement that you didn't mention, therefore you should expain them now.
But they have to be added to service groups and is mandatory to run it as an AIF service.
Is there any way I don't require it to be used as an AIF service ?
What about using SysOperation framework with one of the asynchronous execution modes?
André Arnaud de Cal...
292,516
Super User 2025 Season 1
Martin Dráb
231,387
Most Valuable Professional
nmaenpaa
101,156