Revenue Management Data Dictionary

ffrr__RevenueContract__c

Label: Revenue Contract

Represents a single revenue contract between a vendor and a customer.

Field NameField LabelCreated in VersionDescriptionTypeRequiredDefault Value
ffrr__AccountName__c Display Information Pre-Spring 2018 The name of the account for this revenue contract.

Text(255) false
ffrr__Account__c Account Pre-Spring 2018 Looks up to: Account

Lookup false
ffrr__Active__c Active Pre-Spring 2018 Indicates whether this Revenue Contract is active.

Checkbox true
ffrr__Allocatable__c Ready for Allocation Pre-Spring 2018 Indicates whether allocation can be run successfully for this revenue contract.

Formula:
ffrr__Revenue__c != 0 && ffrr__NullSSPCount__c = 0 && ffrr__TotalSSP__c != 0
Checkbox
ffrr__AllocationRatio__c Allocation Ratio Pre-Spring 2018 The ratio used to allocate revenue to linked performance obligations where the Allocated Revenue value has not been overridden.

Formula:
IF(ffrr__NullSSPCount__c <> 0 || ffrr__TotalSSPForAllocation__c = 0, null, (ffrr__Revenue__c - ffrr__TotalAllocatedRevenueOverride__c) / ffrr__TotalSSPForAllocation__c)
Number(18,14) false
ffrr__AllocationStatus__c Allocation Status Pre-Spring 2018 Shows if the revenue for this contract has been fully allocated, or needs reallocating.

Formula:
IF( ffrr__RevenueAllocated__c, IMAGE('/img/msg_icons/confirm16.png', $Label.RevenueAllocatedSuccessfully ) & ' ' & $Label.RevenueAllocatedSuccessfully, IF ( ffrr__Revenue__c = 0, IMAGE('/img/msg_icons/warning16.png', $Label.NoRevenueToAllocate ) & ' ' & $Label.NoRevenueToAllocate, IF ( ffrr__NullSSPCount__c > 0, IMAGE('/img/msg_icons/error16.png', SUBSTITUTE($Label.NullSSPCountGreaterThanZero, '{0}', TEXT( ffrr__NullSSPCount__c ) ) ) & ' ' & SUBSTITUTE($Label.NullSSPCountGreaterThanZero, '{0}', TEXT( ffrr__NullSSPCount__c ) ), IF ( ffrr__TotalSSP__c = 0, IMAGE('/img/msg_icons/error16.png', $Label.TotalSSPIsZero ) & ' ' & $Label.TotalSSPIsZero, IF ( ffrr__TotalNullAllocationRatioCount__c > 0, IMAGE('/img/msg_icons/warning16.png', $Label.RevenueNotAllocated ) & ' ' & $Label.RevenueAllocationNotRun, IMAGE('/img/msg_icons/warning16.png', $Label.RevenueNotAllocated ) & ' ' & $Label.RevenueNotAllocated ) ) ) ) )
Text false
ffrr__Company__c Company Summer 2025 Lookup to the company object.

Looks up to: fferpcore__Company__c

Lookup false
ffrr__CurrencyDP__c Currency Decimal Places Summer 2025 Number of decimal places on the record's currency.

Number(1,0) false
ffrr__Description__c Description Pre-Spring 2018 The description of this Revenue Contract.

Text(255) false
ffrr__EndDate__c End Date Pre-Spring 2018 The end date of this Revenue Contract.

Date false
ffrr__Engagement__c Engagement Summer 2025 Engagement this revenue contract relates to.

Looks up to: fferpcore__ff_Engagement__c

Lookup false
ffrr__NullSSPCount__c Null SSP Count Pre-Spring 2018 The number of performance obligations relating to revenue that have at least one null SSP value.

Summary
ffrr__POAllocatedRevenueOverrideCount__c PO Allocated Revenue Override Count Pre-Spring 2018 The number of linked performance obligations where an Allocated Revenue Override value has been entered.

Summary
ffrr__PerformanceObligationsCount__c Performance Obligations Count Pre-Spring 2018 The number of performance obligations on this revenue contract.

Summary
ffrr__RevenueAllocated__c Revenue Allocated Pre-Spring 2018 Indicates if the revenue for this contract has been allocated successfully.

Formula:
ROUND(ffrr__Revenue__c, IF(ISBLANK(ffrr__CurrencyDP__c), 2, ffrr__CurrencyDP__c)) = ROUND(ffrr__TotalAllocatedRevenue__c, IF(ISBLANK(ffrr__CurrencyDP__c), 2, ffrr__CurrencyDP__c)) && ROUND(ffrr__TotalAllocatedRevenue__c, IF(ISBLANK(ffrr__CurrencyDP__c), 2, ffrr__CurrencyDP__c)) <> 0 && ffrr__TotalNullAllocationRatioCount__c = 0
Checkbox
ffrr__RevenueOverride__c Revenue Override Pre-Spring 2018 When populated this value is used in the Revenue field.

Currency(16,2) false
ffrr__RevenueRecognitionComplete__c Recognition Complete Pre-Spring 2018 Indicates whether this Revenue Contract is fully recognized.

Formula:
IF(ffrr__Revenue__c = 0 && ffrr__TotalRecognizedToDate__c = 0 && ffrr__TotalCost__c = 0 && ffrr__TotalAmortizedToDate__c = 0, false, ffrr__Revenue__c == ffrr__TotalRecognizedToDate__c && ffrr__TotalCost__c == ffrr__TotalAmortizedToDate__c)
Checkbox
ffrr__Revenue__c Revenue Pre-Spring 2018 The value that will be allocated to the performance obligations. Uses Total Revenue, or Revenue Override if populated.

Formula:
ROUND(IF(ISBLANK(ffrr__RevenueOverride__c), ffrr__TotalRevenue__c, ffrr__RevenueOverride__c), IF(ISBLANK(ffrr__CurrencyDP__c), 2, ffrr__CurrencyDP__c))
Currency(18,3) false
ffrr__StartDate__c Start Date Pre-Spring 2018 The start date for this Revenue Contract.

Date false
ffrr__TotalAllocatedRevenueOverride__c Total Allocated Revenue Override Pre-Spring 2018 Sum of Allocated Revenue Override values from all linked performance obligations.

Summary
ffrr__TotalAllocatedRevenue__c Total Allocated Revenue Pre-Spring 2018 Total Allocated Revenue for this Revenue Contract.

Summary
ffrr__TotalAmortizedToDate__c Total Cost Recognized To Date Spring 2018 Total Cost Recognized to Date for this revenue contract.

Summary
ffrr__TotalCost__c Total Cost Spring 2018 Sum of Cost values from all linked performance obligations.

Summary
ffrr__TotalNullAllocationRatioCount__c Null Allocation Ratio Count Pre-Spring 2018 The number of linked performance obligations where the Allocation Ratio and Allocated Revenue Override fields are null.

Summary
ffrr__TotalRecognizedToDate__c Total Revenue Recognized to Date Pre-Spring 2018 Total Revenue Recognized to Date for this revenue contract.

Summary
ffrr__TotalRevenue__c Total Revenue Pre-Spring 2018 Sum of Revenue values from all linked performance obligations.

Summary
ffrr__TotalSSPForAllocation__c Total SSP for Allocation Pre-Spring 2018 Sum of SSP values from linked performance obligations where the Allocated Revenue value has not been overridden.

Summary
ffrr__TotalSSP__c Total SSP Pre-Spring 2018 Sum of SSP values from all linked performance obligations.

Summary
ffrr__ZeroSSPCount__c Zero SSP Count Pre-Spring 2018 The number of performance obligations relating to revenue where SSP is zero.

Summary
ffrr__ffrrtemplate__c Recognition Template Pre-Spring 2018 Looks up to: ffrr__Template__c
Lookup false


© Copyright 2009–2025 Certinia Inc. All rights reserved. Various trademarks held by their respective owners.