Hi All,
I have cerate a Page and type as StandardDialog. However, I am not sure how to add trigger or write procedure after click OK.
page 50133 TRCShipmentAutomation {
PageType = StandardDialog; Editable = true;
layout {
area(content) {
group(Detail) {
field(OderNoStart; OderNoStart)
{ ApplicationArea = All; Lookup = true; TableRelation = "Sales Header"."No." where ("Document Type" = filter ('Order')); Editable = true; }
field(OrderNoEnd; OrderNoEnd)
{ ApplicationArea = All; Lookup = true; Editable = true; TableRelation = "Sales Header"."No." where ("Document Type" = filter ('Order')); }
field(AutoPack; AutoPack)
{ DrillDown = true; ApplicationArea = All; Editable = true; } } } }
var
OderNoStart: Code[30];
OrderNoEnd: code[30];
AutoPack: Option Yes,No;
}