Create Service Contract with Party, Line and Line Price using SOAP webservice
Summary
Create Service Contract with Party, Line and Line Price using SOAP webserviceContent
The below web service is being used to Create Contract in Fusion Enterprise Contract with Contract header, line and it's pricing details.
Version
20ACode Snippet
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:typ="http://xmlns.oracle.com/apps/contracts/coreAuthoring/contractService/types/" xmlns:con="http://xmlns.oracle.com/apps/contracts/coreAuthoring/contractService/" xmlns:head="http://xmlns.oracle.com/apps/contracts/coreAuthoring/header/flex/header/" xmlns:par="http://xmlns.oracle.com/apps/contracts/coreAuthoring/parties/flex/partyContact/" xmlns:par1="http://xmlns.oracle.com/apps/contracts/coreAuthoring/parties/flex/party/" xmlns:lin="http://xmlns.oracle.com/apps/flex/contracts/coreAuthoring/lines/" xmlns:con1="http://xmlns.oracle.com/apps/projects/billing/contracts/contractPublicService/" xmlns:con2="http://xmlns.oracle.com/apps/projects/billing/contracts/contractBillingService/" xmlns:bil="http://xmlns.oracle.com/apps/projects/billing/contracts/flex/BilllPlanDff/"> <soapenv:Header/> <soapenv:Body> <typ:createContract> <typ:contractHeader> <con:OrgName>Business Unit Name</con:OrgName> <con:ContractTypeName>Contract Type Name</con:ContractTypeName> <con:Cognomen>Contract Name</con:Cognomen> <con:PartyId>1000000035XXXXX</con:PartyId> <con:StartDate>2020-03-01</con:StartDate>
1