Our support engineers have assembled the top recommended solutions for you.
Microsoft Dynamics AX 2012CRM Connector in Microsoft Dynamics AX 2012Financials Management in Microsoft Dynamics AX 2012Upgrading to Microsoft Dynamics AX 2012
Microsoft Dynamics AX 2009
Application Object Server (AOS)
Enterprise Portal and Role Centers
Inventory Costing in Microsoft Dynamics AX 2009
Invoice Settlements/Discounts/Reversals
SSRS and SSAS Integration
Workflow
Hello,
I put my own tasks into Queue Manager to be processed but there might be also other tasks that doesn't belong to me.
I start processing of tasks from Queue Manager using code which is behind a Button press. Code is following.
I don't want to start processing others tasks because I don't know them. What is the technique to process only own tasks that are in Queue Manager?
Thank you,
Michael
AifGatewayReceiveService aifGatewayReceiveService;
AifInboundProcessingService aifInboundProcessingService;
AifOutboundProcessingService aifOutboundProcessingService;
AifGatewaySendService aifGatewaySendService;
;
aifGatewayReceiveService = new AifGatewayReceiveService();
aifInboundProcessingService = new AifInboundProcessingService();
aifOutboundProcessingService = new AifOutboundProcessingService();
aifGatewaySendService = new AifGatewaySendService();
aifGatewayReceiveService.run();
aifInboundProcessingService.run();
aifOutboundProcessingService.run();
aifGatewaySendService.run();
Or is Batch Job only way to process own jobs in Queue Manager without interfering other jobs that does not belong to you??