Indicated whether the update was successful. The values returned are true and false.
Code Sample
The sample below enables you to update the proposal object field values.
/**
* The below method demonstrates how to update description for already created proposal
*/
public Boolean updateProposal(String proposalName)
{
Boolean updateStatus = false;
Apttus_Proposal__Proposal__c proposalSO = [SELECT Id FROM Apttus_Proposal__Proposal__c WHERE Name = :proposalName LIMIT 1];
// assign new value to the proposal fields one by one.
proposalSO.Apttus_Proposal__Description__c = 'Updated through updateProposal API';
updateStatus = Apttus_Proposal.ProposalWebService.updateProposal(proposalSO);
return updateStatus;
}
CODE
Integration Details
Use the following information in your integrations with CPQ Web Services API. Refer to Integrating Conga with External Systems for information on how to get started.