updateFeeSchedule API updates the Actual Amount and the Forecast Amount of all the agreement fee schedules for a given agreement fee ID.

result updateFeeSchedule(feeID)

This API accepts agreement feeID and updates the Actual Amount of all the agreement fee schedules for a given agreement fee ID.

Request Parameters

Request
FieldTypeRequiredDescription
feeIDIDYesID of the Agreement Fee


Response Parameter

Response
FieldTypeDescription
resultBoolean

Returns true if the agreement fee schedules are updated.

Returns false if the agreement fee schedules are not updated.

Code Sample

ID feeId = 'a566A000000PRh5QAG';
Apttus_Revenue2.RevRecAction.updateFeeSchedule(feeId);
CODE