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
Original file line number Diff line number Diff line change
Expand Up @@ -516,6 +516,7 @@ table 8065 "Vend. Sub. Contract Line"
Rec."Subscription Description" := ServiceObject.Description;
Rec."Subscription Line Entry No." := ServiceCommitment."Entry No.";
Rec."Subscription Line Description" := ServiceCommitment.Description;
OnAfterInitFromSubscriptionLine(Rec, ServiceCommitment, ServiceObject);
end;

internal procedure IsCommentLine(): Boolean
Expand All @@ -533,4 +534,9 @@ table 8065 "Vend. Sub. Contract Line"
if not VendSubContractDeferral.IsEmpty() then
Error(UnreleasedVendSubContractDeferralExistsErr);
end;

[IntegrationEvent(false, false)]
local procedure OnAfterInitFromSubscriptionLine(var VendSubContractLine: Record "Vend. Sub. Contract Line"; SubscriptionLine: Record "Subscription Line"; SubscriptionHeader: Record "Subscription Header")
begin
end;
}
Loading