Skip to main content

Notifications

Announcements

No record found.

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

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

(0) ShareShare
ReportReport
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;
}

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!

Top 10 leaders for November!

Congratulations to our November super stars!

Tips for Writing Effective Verified Answers

Best practices for providing successful forum answers ✍️

Leaderboard

#1
André Arnaud de Calavon Profile Picture

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

#2
Martin Dráb Profile Picture

Martin Dráb 230,445 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans