SAP for Utilities Discussions
Connect with fellow SAP users to share best practices, troubleshoot challenges, and collaborate on building a sustainable energy future. Join the discussion.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Including Late payment charge in Rate steps?!.

Former Member
0 Kudos
301

Hi SAP Gurus,

We need to apply a new incentive, i.e Load factor incentive(LFI), I have successfully created the rate, but could not map how to include LPC to the rate steps.?  there are only 2 condition for applicability,

1. Consumer should not have late payment charge in the invoice.(cannot map in the rate step)

2. billing demand should not be greater than contract demand.(added in the rate step)

This issue is high in priority.

Thanks in advance

Shilpa. K

6 REPLIES 6
Read only

Former Member
0 Kudos
243

Hi Shilpa,

Please clarify one thing.

Are you charging the consumer if maximum demand is greater than the contract demand ?

Regards,

Rajesh

Read only

0 Kudos
243

Rajesh,

No, it is applicable only when billing demand is more than 75% of Contract demand, then the  0.75% on total energy charges will be an incentive. and when Bill demand is greater than contract demand then the incentive should not be applied.

Hope this will give you a clear picture.

Thanks

Read only

william_eastman
Product and Topic Expert
Product and Topic Expert
0 Kudos
243

LPC calculation and posting generally has nothing to do with the rate/billing.  It is usually posted well after the invoice is generated and is determined using time/rate and/or a flat charge is posted.

Read only

0 Kudos
243

William,

Thanks for your inputs i knew that, let me explain you in detail, i have design a rate HT_LFI, and updated in existing schema with a rate determination from 01.06.2012 to 31.12.9999.

what will be the condition if i say this rate will be applicable only if the consumer had payed the bill before Due date. If the consumer delayed the payment this rate should not be executed. Hope this explanation help.

Regards,

Shilpa K.

Read only

0 Kudos
243

Shilpa,

There is no such standard configuration to control the rate execution based on LPC calculation. Your requirement can be met by creating a custom variant to identify the delayed payments.

Create a new variant to get the delayed payments and open items. You can use FM 'ISU_INV_OPEN_ITEM_SELECT' for your requirement. you will get all the open items in internal table XY_WA_IIU-T_OPEN_ITEM.

Now delete all items from table XY_WA_IIU-T_OPEN_ITEM , which are not overdue based on date of invoice or which are already paid.

LOOP AT XY_WA_IIU-T_OPEN_ITEM WHERE FAEDN GE BLDAT OR
                     NOT AUGBL IS INITIAL.


     DELETE
XY_WA_IIU-T_OPEN_ITEM INDEX SY-TABIX.


ENDLOOP.

If the internal table XY_WA_IIU-T_OPEN_ITEM contains any entries, consumer will be charged with LPC and HT_LFI rate steps will not be executed. Else HT_LFI rate will be executed and consumer will get the incentive.

Hope it gives a rough idea.

Regards,

Rajesh


Read only

Naga_MN
Product and Topic Expert
Product and Topic Expert
0 Kudos
243

Hi Shilpa,

As per the LPC is concerned you have the localization means there will be a  separate node in IMG.

Or ELSE you have to activate the event R999,R971,R979,R970.

I think this will help you.

regards,

Nags