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: 

Billed Meter Read getting reversed

gourisankar015
Explorer
0 Kudos
773

Hi Experts,

Every now & then random cases of billed meter read getting reversed is happening with bill document & Invoice Document existing in system. There is no adjustment log for the bill docs either. Most of the user base has access only to tcode: EL37 for any sort of read or order reversal. I am not sure how is it happening & if there is a way to replicate these cases for future fix.

Please guide.....

2 REPLIES 2

daniel_mccollum
Active Contributor
0 Kudos
353

RELCORRDELEABL can be used to obliterate meter reading results.

Additionally its possible to delete results inside a billed period where EABL-AKTIV = 0 (meaning its not used in Billing).

The only alternatives I can think of outside these would be rogue custom processes forcibly deleting records.

gourisankar015
Explorer
0 Kudos
353

Thanks for the response Daniel...

I have checked the change document its indeed getting reversed through 2 custom programs used for Mass Release of the locked reads & sometimes while Mass Reversal of the Reads.

From the audit log i found out below code in a custom program is doing it.. Question is how is SAP allowing it to reverse already billed Meter read. Let me know if there is any Note or work around to fix this.

CALL FUNCTION 'ISU_MASS_RELEASE'
EXPORTING
x_no_dialog = 'X'
TABLES
xt_eabl = lt_eabl[]
yt_eabl_error = lt_eabl_error[]
EXCEPTIONS
input_error = 1
foreign_lock = 2
OTHERS = 3.