Skip to main content

Notifications

Announcements

No record found.

Microsoft Dynamics AX (Archived)

Push all data of a table to read operation of AIF outbound service

(0) ShareShare
ReportReport
Posted on by 380

HI,

I need to push all the data of a table to read operation of the AIF outbound port through x++ or any other way in AX 2012 at a time.

Thanks in advance.

Regards,

Gyan 

*This post is locked for comments

  • Lauras U Profile Picture
    Lauras U 955 on at
    RE: Push all data of a table to read operation of AIF outbound service

    Correct my if I am wrong, but after switching to AifSendActionType::SendByQuery is not Read anymore it's a find operation.

  • Amir Nazim Profile Picture
    Amir Nazim 5,994 on at
    RE: Push all data of a table to read operation of AIF outbound service

    please mark it is verified if this works for you, so others can also be benefited

  • Suggested answer
    gyan chand kabra Profile Picture
    gyan chand kabra 380 on at
    RE: Push all data of a table to read operation of AIF outbound service

    Thanks Amir for your response

  • Verified answer
    Amir Nazim Profile Picture
    Amir Nazim 5,994 on at
    RE: Push all data of a table to read operation of AIF outbound service

    you can use this example

    The following code is used to execute the AIF File outbound  Service using Query  for AIF find Operation.

    ex:= Sales Table-salesid,another field and call AIF find to execute query criteria.

    static void krish_OutboundAifQueryProcess(Args _args)

       {

           AxdSendContext          axdSendContext      = AxdSendContext::construct();

           AifAction               aifAction ;

           AifConstraint           aifConstraint       = new AifConstraint();

           AifConstraintList       aifConstraintList   = new AifConstraintList();

           AifOutboundProcessingService AifOutboundProcessingService =

                                                     new AifOutboundProcessingService();

           AifGatewaySendService   AifGatewaySendService = new AifGatewaySendService();

            AifActionId                 actionId;

            AifEndpointList             endpointList;

            Query                               query;

            QueryBuildDataSource      queryBuildDataSource;

           ;

           query = new Query(queryStr(AIFCRMOrderReturn));

           queryBuildDataSource = query.dataSourceTable(tablenum(EDSACRMSyncLog));

           queryBuildDataSource.addRange(fieldnum(EDSACRMSyncLog,CRMOrderId)).

                                                                                       value(QueryValue('2500591'));

           queryBuildDataSource.addRange(fieldnum(EDSACRMSyncLog,DocReturn)).

                                                                                value(QueryValue(NoYes::No));

          aifAction = AifAction::find(AifSendService::getDefaultSendAction(classnum

                  (EDSACRMOrderReturnService),AifSendActionType::SendByQuery)) ;

           axdSendContext.parmXMLDocPurpose(XMLDocPurpose::Original);

           axdSendContext.parmSecurity(false);

           aifConstraint.parmType(AifConstraintType::NoConstraint);

           aifConstraintList.addConstraint(aifConstraint) ;

           endPointList=AifSendService::getEligibleEndpoints(aifAction.ActionId,aifConstraintList);

           AifSendService::submitFromQuery(aifAction.ActionId, endpointList, query, AifSendMode::Sync);

           AifGatewaySendService.run();

           AifOutboundProcessingService.run();

       }

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Congratulations 2024 Spotlight Honorees!

Kudos to all of our 2024 community stars! 🎉

Meet the Top 10 leaders for December!

Congratulations to our December super stars! 🥳

Get Started Blogging in the Community

Hosted or syndicated blogging is available! ✍️

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 291,642 Super User 2024 Season 2

#2
Martin Dráb Profile Picture

Martin Dráb 230,371 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans