generateFeeSchedule API generates Agreement Fee Schedules for a given agreement fee ID. Agreement Fee Schedules are generated for each period based on the Start Date and the End Date defined on the Agreement Fee. 

result generateFeeSchedule(feeID)

This API accepts agreement feeID and generates Agreement Fee Schedules for that agreement fee. 

Request Parameters

Request
FieldTypeRequiredDescription
feeIDIDYesID of the Agreement Fee


Response Parameter

Response
FieldTypeDescription
resultBoolean

Returns true if the agreement fee schedules are generated successfully.

Returns false if the agreement fee schedules are not generated.


Code Sample

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