microsoft / AL

Home of the Dynamics 365 Business Central AL Language extension for Visual Studio Code. Used to track issues regarding the latest version of the AL compiler and developer tools available in the Visual Studio Code Marketplace or as part of the AL Developer Preview builds for Dynamics 365 Business Central.
MIT License
732 stars 243 forks source link

Page Item Tracking Entries #5947

Closed ThorstenEngelsGOB closed 4 years ago

ThorstenEngelsGOB commented 4 years ago

In Page Item Tracking Entries you inserted two Page Actions naming Serial or Lot No Information Card but in Properties the belated Lists are used.

actions
{
    area(navigation)
    {
        group("&Item Tracking Entry")
        {
            Caption = '&Item Tracking Entry';
            Image = Entry;
            action("Serial No. Information Card")
            {
                ApplicationArea = ItemTracking;
                Caption = 'Serial No. Information Card';
                Image = SNInfo;
                Promoted = true;
                PromotedCategory = Category4;
                **//RunObject = Page "Serial No. Information List";**
                RunObject = Page "Serial No. Information Card";
                RunPageLink = "Item No." = FIELD("Item No."),
                              "Variant Code" = FIELD("Variant Code"),
                              "Serial No." = FIELD("Serial No.");
                ToolTip = 'View or edit detailed information about the serial number.';
            }
            action("Lot No. Information Card")
            {
                ApplicationArea = ItemTracking;
                Caption = 'Lot No. Information Card';
                Image = LotInfo;
                Promoted = true;
                PromotedCategory = Category4;
                **//RunObject = Page "Lot No. Information List";**
                RunObject = Page "Lot No. Information Card";
                RunPageLink = "Item No." = FIELD("Item No."),
                              "Variant Code" = FIELD("Variant Code"),
                              "Lot No." = FIELD("Lot No.");
                ToolTip = 'View or edit detailed information about the lot number.';
            }
        }
    }
kalberes commented 4 years ago

Reply: Let's get the issue to a team who will fix and backport it, as this repository is only for issues related to the AL compiler in latest developer preview environment for Dynamics 365 Business Central. We suggest that you open a support case or file a bug in Collaborate, to ensure that all Business Central users benefit from your catch as soon as possible.

To open a support case, you can:

If you file the bug in Collaborate, remember to include steps to reproduce the issue, and the Business Central build number and country version you're using.