Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/System Application/App/Agent/Setup/AgentModelList.Page.al
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ page 4319 "Agent Model List"
ApplicationArea = All;
Caption = 'Is Default';
ToolTip = 'Specifies whether this is the default agent model.';
Visible = not IsLookupMode;
}
field(Availability; Rec.Availability)
{
Expand All @@ -54,8 +55,17 @@ page 4319 "Agent Model List"
ApplicationArea = All;
Caption = 'Retirement Date';
ToolTip = 'Specifies the date when the agent model will be retired.';
Visible = not IsLookupMode;
}
}
}
}

trigger OnOpenPage()
begin
IsLookupMode := CurrPage.LookupMode();
end;

var
IsLookupMode: Boolean;
}
Loading