web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Small and medium business | Business Central, N...
Suggested Answer

Workflow approval for several purchase invoices (batch request)

(0) ShareShare
ReportReport
Posted on by 15

I'm trying to automate the approval request process by allowing users to send several request at time, but when they select some purchase invoices the request is sent only for one of them. 

Is there any option to do it?

pastedimage1624288149290v1.png

Thank you

I have the same question (0)
  • Suggested answer
    JAngle Profile Picture
    159 on at

    No you would need a custom feature. You have to use a selectionfilter so you can determine which records are selected and then you loop through those. You could have a custom processing only report to do a similar task too.

  • mdp@keykumo.com Profile Picture
    15 on at

    Thank you, I'll try to do it the way you tell me even though I'm not an expert.

  • JAngle Profile Picture
    159 on at

    Here is a sample you can adopt to your needs which is on a different page. You’ll need a variable for Purchase Header table. Add the below snippet to a new page action in a page extension for the list page of the purchase invoices

    PurchHdr.Copy(Rec);

                               CurrPage.SetSelectionFilter(PurchHdr);

    if PurchHdr.FindSet then

                                   repeat

                                      SendApproval(PurchHdr);

    //copy the standard function call

                                   until PurchHdr.Next = 0;

  • mdp@keykumo.com Profile Picture
    15 on at

    Hello,

    I've this code:

                  var

                       PurchHdr: Record "Purch. Inv. Header";

                       ApprovalsMgmt: Codeunit "Approvals Mgmt.";

                   begin

                       PurchHdr.Copy(Rec);

                       CurrPage.SetSelectionFilter(PurchHdr);

                       if

                           PurchHdr.FindSet() then

                           repeat

                               SendApprovalRequest(PurchHdr);

                               if ApprovalsMgmt.CheckPurchaseApprovalPossible(Rec)

                               then

                                   ApprovalsMgmt.OnSendPurchaseDocForApproval(Rec);

                           until

                           PurchHdr.Next() = 0;

                   end;

    but I got this error 'Action SendApprovalRequest' cannot be used like a method

    Thanks

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

Season of Sharing Community Challenge Launch!

Jump in, show your community spirit, and win prizes!

Women in Power Builds Momentum

Expanding mentorship, skilling, and AI innovation

Congratulations to the May Top 10 Community Leaders

These are the community rock stars!

Leaderboard > Small and medium business | Business Central, NAV, RMS

#1
OussamaSabbouh Profile Picture

OussamaSabbouh 2,353 Super User 2026 Season 1

#2
YUN ZHU Profile Picture

YUN ZHU 1,808 Super User 2026 Season 1

#3
AndrewThomas81 Profile Picture

AndrewThomas81 1,371

Last 30 days Overall leaderboard

Featured topics

Microsoft Training Manuals

Product updates

Dynamics 365 release plans