Preview:
field("Parent No."; Rec."Parent No.")
{
    ApplicationArea = All;

    trigger OnDrillDown()
    var
        ChildTablePage: Page ChildTablePage;
        ChildTableRecord: Record ChildTable;
    begin
        ChildTableRecord.SetRange(ChildTableRecord."Parent No.", Rec."Parent No.");
        ChildTablePage.SetTableView(ChildTableRecord);
        ChildTablePage.Run();
    end;
}
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter