How to monitor aged receivables?
CFOs or accountants need continuous reporting about outstanding receivables. They use aging reports to determine which customers have open invoices for longer times.
JustOn Billing & Invoice Management provides a business report that delivers this data: Aging report per debtor. Before you can make use of this report, however, you must create a number of formula fields on the Invoice object, which provide the necessary data.
To enable the aging report:
-
Create the required formula fields on the invoice.
- Click to enter Setup, then navigate to the fields list of the Invoice object (
ONB2__Invoice__c
). -
Create the following new fields:
Field Label API Name Data Type Formula Aged 0-30 Aged0_30__c
Formula (Currency) IF(AND(ONB2__DaysOverdue__c>=0,ONB2__DaysOverdue__c<30),ONB2__Balance__c,null)
Aged 31-60 Aged31_60__c
Formula (Currency) IF(AND(ONB2__DaysOverdue__c>=31,ONB2__DaysOverdue__c<60),ONB2__Balance__c,null)
Aged +60 Aged_60__c
Formula (Currency) IF(ONB2__DaysOverdue__c>=60,ONB2__Balance__c,null)
- Click to enter Setup, then navigate to the fields list of the Invoice object (
-
Add the provided aging report to your org.
- Log in to your Salesforce org.
- Open the report overview.
- Scroll down the list until
Aging report per debtor
. -
Click Get it now.
This adds the report to your Salesforce org and redirects you to the report result page.