updateBudgetFeeSchedule API updates the Budget Amount and Budget Unit from the Actual Amount and Actual unit based on the Agreement Fee Schedule. Agreement Fee Schedules are also updated. 

result updateBudgetFeeSchedule(feeID)

This API accepts agreement feeID and updates the Budget Amount and Budget Units for a given agreement fee ID.

Request Parameters

Request
FieldTypeRequiredDescription
feeIDIDYesID of the Agreement Fee


Response Parameter

Response
FieldTypeDescription
resultBoolean

Returns true if the Budget amount is updated.

Returns false if the Budget amount is not updated.

Code Sample

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