Skip to main content

Notifications

Announcements

No record found.

Small and medium business | Business Central, N...
Unanswered

Warehouse receipt/put-away

(1) ShareShare
ReportReport
Posted on by 224
Hi experts, 
 
In warehouse receipts/put-aways, are you able to see the source purchase order number in the header list? I see it in the lines, but it would be nice to be able to have it ion the list page
  • SeanN Profile Picture
    SeanN 15 on at
    Warehouse receipt/put-away
    Just to clarify the last two responses, and I agree with both, that putaway and pick document are always 1:1 when generated from related SO/PO.
     
    if this is always how you process put & pick then by all means have a DEV add the no to the header. Usually, warehouse manager would use a put/pick worksheet to pull in all the documents at once to give it to his/her team so adding one PO number to the header wouldn’t work.
  • Warehouse receipt/put-away
    Our Warehouse Put Away documents are created as receipts are posted on PO's so I've never seen an instance where a put away relates to multiple PO numbers.  If that also applies to you, then use this Page Extension code - it pulls the PO number from the first line of the warehouse activity lines of the put-away:
     
     
    pageextension 51067 WAREHOUSE_PUTAWAYS extends "Warehouse Put-aways"
    {
        layout
        {
            addafter("No.")
            {
                field("PurchaseOrderNo"; PurchaseOrderNo)
                {
                    ApplicationArea = All;
                    Caption = 'Purchase Order No.';
                    ToolTip = 'Purchase Order No.';
                }
            }
        }
        trigger OnAfterGetRecord()
        var
            WarehouseActivityLine: Record "Warehouse Activity Line";
        begin
            Clear(PurchaseOrderNo);
            WarehouseActivityLine.Reset();
            WarehouseActivityLine.SetRange("Action Type", WarehouseActivityLine."Action Type"::Take);
            WarehouseActivityLine.SetRange("No.", rec."No.");
            if WarehouseActivityLine.FindSet() then
                PurchaseOrderNo := WarehouseActivityLine."Source No."
            else
                PurchaseOrderNo := '';
        end;
        var
            PurchaseOrderNo: Text;
    }
     
     
     
     
    This is what it looks like in Business Central:
     
     
     
     
     
     
  • Jun Wang Profile Picture
    Jun Wang 7,440 Super User 2024 Season 2 on at
    Warehouse receipt/put-away
    add to previous response, warehouse receipts and warehouse put-aways could potentially be handling more than one source document. For example, user could create a warehouse put away to pull in multiple warehouse receipts or other inbound documents. If this is your process, it won't be advisable to have the source no. displayed. However, if you handle those on an order by order basis, you may have a dev to display the source no. for your convenience. Per screenshot below, BC doesn't display source no. out of box, even it shows on the document. Hope it helps answering your question. 
     
     
     
  • gdrenteria Profile Picture
    gdrenteria 12,920 Most Valuable Professional on at
    Warehouse receipt/put-away
    Hi
    Could there be different POs in the lines? If the answer is yes, it would not be correct to put it in the header. If the answer is no, you could do a development to obtain the first PO found in the line and show it in the header, you could use the flowfied/Lookup functionality.
    Best regards
    Gerardo

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