Skip to content
Open
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,11 @@ page 8068 "Customer Contract Line Subp."
field("Service Commitment Description"; Rec."Subscription Line Description")
{
ToolTip = 'Specifies the description of the Subscription Line.';
trigger OnValidate()
begin
if not Rec.IsCommentLine() then
CurrPage.Update(false);
end;
}
field("Service Object Quantity"; ContractLineQty)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,11 @@ page 8078 "Vendor Contract Line Subpage"
field("Service Commitment Description"; Rec."Subscription Line Description")
{
ToolTip = 'Specifies the description of the Subscription Line.';
trigger OnValidate()
begin
if not Rec.IsCommentLine() then
CurrPage.Update(false);
end;
}
field("Service Object Quantity"; ServiceCommitment.Quantity)
{
Expand Down