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: 

Previous Meter reading results

Former Member
0 Kudos

Hi Experts,

I need to get previous MR results based on current MR result. Is there any table or function module for the same. Please provide your valuable inputs. Thanks in advance.

Regards,

Laxman.P

4 REPLIES 4

former_member215295
Contributor
0 Kudos

Hi Laxman,

Do you mean current meter read resultls based on previous meter read results right ? I think you posted apposite.

There are various ways of estimating the MR results.

thanks,

VR

Former Member
0 Kudos

Hi,

Check table EABL.

You can query on Select single V_ZWSTAND from EABL where adat < 'Current Meter Reading Date' AND ABLSTAT <> 0.

Let me know if more infor required.

Thanks and regards,

Ranjit Thakur.

kvinkr
Participant
0 Kudos

Check out table EBIAS and structure PREVMR

Also refer a similar posting

Edited by: vinodh kumar on Sep 30, 2011 2:35 PM

Former Member
0 Kudos

Hi Laxman:

FM ISU_DB_EABL_LAST:

CALL FUNCTION 'ISU_DB_EABL_LAST'

EXPORTING

x_equnr = x_equnr

x_zwnummer = x_zwnummer

x_adat = l_adat "Current MR date

x_atim = l_atim

x_adaterz = x_adaterz

x_arbauf = x_arbauf

x_endbillper = x_endbillper

IMPORTING

y_eabl = y_eabl_prev

TABLES

yt_eablg = yt_eablg_prev

xt_eabl = xt_ieabl

xt_eablg = xt_ieablg

EXCEPTIONS

not_found = 1

system_error = 2

not_qualified = 3

adat_to_old = 4

others = 5.

Regards,

David