2011 Sep 29 8:06 AM
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
2011 Sep 29 3:45 PM
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
2011 Sep 30 7:12 AM
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.
2011 Sep 30 10:00 AM
2011 Oct 04 9:42 PM
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