updateBudgetFeeScheduleFromForecast API updates the Budget Amount and Budget Unit from the Forecast Amount and Forecast Unit based on the Agreement Forecast record. Agreement Fee Schedules are also updated. 

result updateBudgetFeeScheduleFromForecast(agreementID)

This API accepts agreement ID as input parameter. It updates the budget amount and budget units for a given agreement ID.

Request Parameters

Request
FieldTypeRequiredDescription
agreementIDIDYesID of the Agreement.


Response Parameter

Response
FieldTypeDescription
resultBoolean

Returns true if the fee schedules are updated.

Returns false if the fee schedules are not updated.



Code Sample

ID agreementId = 'a566A000000PRh5QAG';
Apttus_Revenue2.RevRecAction.updateBudgetFeeScheduleFromForecast(agreementId);
CODE