Skip to content
Merged
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 @@ -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";
Expand Down
Loading