Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Days sales outstanding countback Method

Former Member
0 Likes
2,323

Hi,

We are implementing a DSO calculation based on count back method, I request the forum members to share some ideas on coding part.

CountryYearMonthsnumber of daysARSalesDTo calculate (DSO net)
US20131231200050095
113025004001500
103110001100
0930700100
08311000
0731700
06301000
0531
0430
0331
0228
0131
201212

Table 1 : Contents of the cubes are  Country, Year, Months,number of days, AR and Sales.

To calculate D and DSO net.  Logic is as follows

DSO is calculated based on country here later we might do it on comp code  with same count back method.

- If AR > Sales then note down the number of days . In this case 2000 > 500 , number of days for December would be 31.

- Next step is AR - Sales, which is 2000-500 = 1500 (value of 'D').

- If D > Sales (current month -1). which is 1500 > 400 (November)

  then note down the number of days in November, which is 30. Add 30 (November) to 31 (December).

- Repeat until D < Sales (current month -1). which is 100 < 700 for month of September.

Now perform the DSO calculation taking in September values for D, Sales and Number of days 

(D/ Sales) * number of days.  which is 100/700 *30 = 4 days.

Now final step would be Add all the days December + November + October + DSO Calculation for September.

which is 31+30+30+4= 95 days.

Then this process is repeated for month of November. where AR is 2500 and Sales is 400.

Thanks,

Vinay

 

Hi,

We are implementing a DSO calculation based on count back method, I request the forum members to share some ideas on coding part.

CountryYearMonthsnumber of daysARSalesDTo calculate (DSO net)
US20131231200050095
113025004001500
103110001100
0930700100
08311000
0731700
06301000
0531
0430
0331
0228
0131
201212

Table 1 : Contents of the cubes are  Country, Year, Months,number of days, AR and Sales.

To calculate D and DSO net.  Logic is as follows

DSO is calculated based on country here later we might do it on comp code  with same count back method.

- If AR > Sales then note down the number of days . In this case 2000 > 500 , number of days for December would be 31.

- Next step is AR - Sales, which is 2000-500 = 1500 (value of 'D').

- If D > Sales (current month -1). which is 1500 > 400 (November)

  then note down the number of days in November, which is 30. Add 30 (November) to 31 (December).

- Repeat until D < Sales (current month -1). which is 100 < 700 for month of September.

Now perform the DSO calculation taking in September values for D, Sales and Number of days 

(D/ Sales) * number of days.  which is 100/700 *30 = 4 days.

Now final step would be Add all the days December + November + October + DSO Calculation for September.

which is 31+30+30+4= 95 days.

Then this process is repeated for month of November. where AR is 2500 and Sales is 400.

Thanks,

Vinay

 

1 REPLY 1
Read only

tom_samata
Explorer
0 Likes
992

I know this is an old post, but check out note:

942684 - Credit management: Activation of DSO calculation for France

It looks like this does the count back method for DSO calculations.