-3

I don't know much about SAP but I need the annual sales (the total amount of what was sold in a certain year) for DSO calculation. In which SAP table is this stored? VBAK?

Also for this calculation the accounts receivables (all payments that were not paid by customers in the fiscal year) is needed. I use BSID and BSAD tables, is that correct?

I hope someone can help me. Thank you!

Sandra Rossi
  • 11,934
  • 5
  • 22
  • 48
Martin
  • 1
  • 1

1 Answers1

1

There are many standard SD reports which fit your needs. For accumulated sales data you can use MC+E and MC+2 which refers to invoiced sales and per-customer aggregated sales correspondingly.

enter image description here

Also you can inspect VC/2 standard report which represent customer fact sheet data including account receivables

enter image description here

What concerns particularly receivables, there is a good transaction S_ALR_87012167 which also includes DSO analysis for receivables as well as evaluation by different metrics.

enter image description here

enter image description here

What concerns the tables, this data lays in multiple tables including VBAK, VBAP, BSID, BSAD, etc., so it wouldn't be easy to grab them manually. You should analyze the code of corresponding transaction to reveal how it calculates the data.

I'd rather stick to extracting data directly from transaction, rather than digging into the tables, as you may just repeat the efforts (aka reinvent the wheel) that SAP put into developing these standard reports.

Suncatcher
  • 10,355
  • 10
  • 52
  • 90