Skip to content
Draft
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 @@ -961,7 +961,13 @@ table 8063 "Vendor Subscription Contract"
if NewParentDimSetID = OldParentDimSetID then
exit;

if not ConfirmManagement.GetResponse(UpdateDimensionsOnLinesQst, true) then
OnBeforeConfirmUpdateAllLineDim(Rec, Confirmed, IsHandled);
if not IsHandled then
if GetHideValidationDialog() or not GuiAllowed then
Confirmed := true
else
Confirmed := ConfirmManagement.GetResponse(UpdateDimensionsOnLinesQst, true);
if not Confirmed then
exit;

ServiceCommitment.Reset();
Expand Down Expand Up @@ -1785,6 +1791,11 @@ table 8063 "Vendor Subscription Contract"
begin
end;

[IntegrationEvent(false, false)]
local procedure OnBeforeConfirmUpdateAllLineDim(var VendorSubscriptionContract: Record "Vendor Subscription Contract"; var Confirmed: Boolean; var IsHandled: Boolean)
begin
end;

[IntegrationEvent(false, false)]
local procedure OnBeforeCreateDim(var VendorSubscriptionContract: Record "Vendor Subscription Contract"; var IsHandled: Boolean)
begin
Expand Down
Loading