updateForecastFeeSchedule API updates the Forecast Amount of all the fee schedules for a given agreement fee ID.

result updateForecastFeeSchedule(feeID)

This API accepts agreement feeID and updates the Forecast Amount of all the 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 Forecast agreement fee schedules are updated.

Returns false if the Forecast agreement fee schedules are not updated.



Code Sample


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