Skip to main content

Notifications

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

Display the field salesLineSystemId from the Sales Line table in the Item API page

Posted on by 2

Hello ,

I created an API page that get SourceTable=Item, and I try to display the field salesLineSystemId from the Sales Line table in the Item API page. My AL code is below but it seems not working properly.

Could you please help me to review my code?  Thanks a lot for your time.

page 50137 ItemAPI
{
    PageType = API;
    SourceTable = Item;
    ODataKeyFields = "systemId";

    layout
    {
        area(content)
        {
            repeater(General)
            {
                ...........................................
                field(salesLineSystemId; salesLineSystemId)
                {
                    Caption = 'Sales Line System Id';
                    ToolTip = 'Sales Line System Id';
                }
            }
        }
    }

    var
        salesLine: Record "Sales Line";
        salesHeader: Record "Sales Header";
        salesLineSystemId: Guid;

    trigger OnAfterGetRecord()
    BEGIN
        SalesLine.SETRANGE(SalesLine."No.", Rec."No.");
        IF SalesLine.FINDSET THEN BEGIN
            REPEAT
                SalesHeader.SETCURRENTKEY("Document Type", "No.");
                SalesHeader.SETRANGE("Document Type", SalesLine."Document Type");
                SalesHeader.SETRANGE("No.", SalesLine."Document No.");
                IF SalesHeader.FINDSET THEN
                    salesLineSystemId := salesLine.SystemId
                ELSE
                    salesLineSystemId := '{00000000-0000-0000-0000-000000000000}'; 
            UNTIL SalesLine.NEXT = 0;
        END;
    END;
}

Categories:

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

December Spotlight Star - Muhammad Affan

Congratulations to a top community star!

Community AMA December 12th

Join us as we continue to demystify the Dynamics 365 Contact Center

New! Quick response templatesâš¡

Save time with the new custom templates!

Leaderboard

#1
André Arnaud de Calavon Profile Picture

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

#2
Martin Dráb Profile Picture

Martin Dráb 230,056 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans