Hi Folks,
Thanks for assisting on some of my earlier which has got me to this point. I am currently trying to add some custom Fields to my assembly order header. I have created a sandbox environment and am able to download symbols and also build the program. Once I am able to build and publish it is triggering me to login. Once I navigate to assembly order I cannot see the fields I have added to the extension.
I cannot see the newly added fields in the inspect pages the fields I have added, also cannot see this extensions on the inspect pages. Below is the code snippet I have added.
Just wondering if I am missing a step or is my code missing anything from the below. Any assistance would be appreciated.
tableextension 50100 "My Assembly Header Ext" extends "Assembly Header"
{
fields
{
field(50100; "Sheet Metal Date Field 1"; Date)
{
Caption = 'Sheet Metal Date Field 1';
}
field(50101; "Sheet Metal Date Field 2"; Date)
{
Caption = 'Sheet Metal Date Field 2';
}
}
}
pageextension 50100 "My Assembly Order Ext" extends "Assembly Order"
{
layout
{
addlast(General) // You can change this to another group or FastTab as needed
{
field("Sheet Metal Date Field 1"; Rec."Sheet Metal Date Field 1")
{
ApplicationArea = All;
}
field("Sheet Metal Date Field 2"; Rec."Sheet Metal Date Field 2")
{
ApplicationArea = All;
}
}
}
}