From e441d38ec42142a6aad2e2ec045cc0b29d94b478 Mon Sep 17 00:00:00 2001 From: Samra Pihljak <78367344+samra-singhammer@users.noreply.github.com> Date: Fri, 9 Jan 2026 09:06:34 +0100 Subject: [PATCH] Expose CreateVendorContractLineFromServiceCommitment --- .../Tables/VendorSubscriptionContract.Table.al | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Apps/W1/Subscription Billing/App/Vendor Contracts/Tables/VendorSubscriptionContract.Table.al b/src/Apps/W1/Subscription Billing/App/Vendor Contracts/Tables/VendorSubscriptionContract.Table.al index fd11269b00..f711605c85 100644 --- a/src/Apps/W1/Subscription Billing/App/Vendor Contracts/Tables/VendorSubscriptionContract.Table.al +++ b/src/Apps/W1/Subscription Billing/App/Vendor Contracts/Tables/VendorSubscriptionContract.Table.al @@ -1592,14 +1592,14 @@ table 8063 "Vendor Subscription Contract" until VendorContractLine.Next() = 0; end; - internal procedure CreateVendorContractLineFromServiceCommitment(ServiceCommitment: Record "Subscription Line") + procedure CreateVendorContractLineFromServiceCommitment(ServiceCommitment: Record "Subscription Line") var VendorContractLine: Record "Vend. Sub. Contract Line"; begin CreateVendorContractLineFromServiceCommitment(ServiceCommitment, ServiceCommitment."Subscription Contract No.", VendorContractLine); end; - internal procedure CreateVendorContractLineFromServiceCommitment(var ServiceCommitment: Record "Subscription Line"; ContractNo: Code[20]; var VendorContractLine: Record "Vend. Sub. Contract Line") + procedure CreateVendorContractLineFromServiceCommitment(var ServiceCommitment: Record "Subscription Line"; ContractNo: Code[20]; var VendorContractLine: Record "Vend. Sub. Contract Line") var ServiceObject: Record "Subscription Header"; VendorContract: Record "Vendor Subscription Contract";