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

overdue amount calculation

Former Member
0 Likes
1,562

hi all,

how to calculate overdue amount for account statments.

is there any function module to calculate the overdue amount .

regards,

deepthi

4 REPLIES 4
Read only

Former Member
0 Likes
983

hi all,

how to calculate the overdue balance

for overdue(1-30),overdue(31-60),overdue(61-90),overdue(90+),

balances for the account staments.

regards,

ndeepthi

Read only

Former Member
0 Likes
983

Normally we get the account statement and do the calculation of overdue amount.

Here are the BAPIs for AR and AP to get the account statements.

BAPI_AR_ACC_GETSTATEMENT

BAPI_AP_ACC_GETSTATEMENT

Read only

0 Likes
983

hi sudhir,

the bapi was helpful but how do we calculate the overdue amount.

regards,

ndeepthi

Read only

Former Member
0 Likes
983

Loop on the items and find the difference between

PSNG_DATE of each item and SY-DATUM which gives the

number of days from which it is open.

If the days is between 1-30 add the amount (LC_AMOUNT) to this cap else check if the days between 30-60 and add amount and so on for opther two caps.