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 @@ -952,11 +952,8 @@ table 8063 "Vendor Subscription Contract"
var
ServiceCommitment: Record "Subscription Line";
NewDimSetID: Integer;
IsHandled: Boolean;
begin
IsHandled := false;
if IsHandled then
exit;
OnBeforeUpdateAllLineDim(Rec, NewParentDimSetID, OldParentDimSetID);

if NewParentDimSetID = OldParentDimSetID then
exit;
Expand Down Expand Up @@ -1785,6 +1782,11 @@ table 8063 "Vendor Subscription Contract"
begin
end;

[IntegrationEvent(false, false)]
local procedure OnBeforeUpdateAllLineDim(var VendorSubscriptionContract: Record "Vendor Subscription Contract"; NewParentDimSetID: Integer; OldParentDimSetID: Integer)
begin
end;

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