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...
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;
}

I have the same question (0)

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 Winners!

Congratulations to our community stars!

Women in Power Builds Momentum

Expanding mentorship, skilling, and AI innovation

Congratulations to the July Top 10 Community Leaders

These are the community rock stars!

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

#1
OussamaSabbouh Profile Picture

OussamaSabbouh 566 Super User 2026 Season 2

#2
YUN ZHU Profile Picture

YUN ZHU 347 Super User 2026 Season 2

#3
Grigorios Mavrogeorgis Profile Picture

Grigorios Mavrogeorgis 327 Super User 2026 Season 2

Last 30 days Overall leaderboard

Featured topics

Microsoft Training Manuals

Product updates

Dynamics 365 release plans