updateForecastFeeFromSchedule API updates the Forecast Amount of all the fee schedules for a given agreement fee ID. This API does not populate the customer-revenue.

result updateForecastFeeFromSchedule(agreementID)

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

Request Parameters

Request
FieldTypeRequiredDescription
agreementIDIDYesID of the Agreement


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 agreementId = 'a566A000000PRh5QAG';
Apttus_Revenue2.RevRecAction.updateForecastFeeFromSchedule(agreementId);
CODE