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

Announcements

No record found.

News and Announcements icon
Community site session details

Community site session details

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

Warehouse receipt/put-away

(1) ShareShare
ReportReport
Posted on by 605
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
I have the same question (0)
  • Gerardo Rentería García Profile Picture
    26,790 Most Valuable Professional on at
    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
  • Jun Wang Profile Picture
    8,216 Moderator on at
    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. 
     
     
     
  • CU27040906-13 Profile Picture
    2 on at
    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:
     
     
     
     
     
     
  • SeanN Profile Picture
    15 on at
    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.

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

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Stars!

Meet the Microsoft Dynamics 365 Contact Center Champions

We are thrilled to have these Champions in our Community!

Congratulations to the April 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,086 Super User 2026 Season 1

#2
YUN ZHU Profile Picture

YUN ZHU 1,290 Super User 2026 Season 1

#3
AndrewThomas81 Profile Picture

AndrewThomas81 1,218

Last 30 days Overall leaderboard

Featured topics

Product updates

Dynamics 365 release plans