2008 Jan 02 7:55 AM
Hi all,
I would like to know the mandatory parameters for this FM in order to create meter reading ?
Your help is very much appreciated.
Best Regards,
Kevin Ng
2008 Jan 11 1:49 PM
Hello!
Mandatory parameters are:
X_ADATSOLL LIKE TE418-ADATSOLL
X_ZUORDDAT LIKE TE418-ZUORDDAT
X_ABLESGR LIKE TE418-ABLESGR
That means:
- Scheduled meter reading date
- Meter reading allocation date
- Meter reading reason
Hope it helps. Please, reward points if so
Joaquin
2008 Jan 11 3:23 PM
Check the include LEL01F00 where it is called multiple times under different scenarios. That will give you a hint about what are all needed to create a meter read. Merely looking required parameters on the funciton module will not help.
2008 Jan 25 6:28 AM
Hi,
Do you want to just create a MRO or you also want to upload the reads as well into the order.
If you use ISU_S_METERREAD_CREATE it will JUST create a MRO with no meter reads.
The parameters that I used for this FM are:
x_anlage = p_xy_zhhmr-anlage
x_equnr = p_xy_zhhmr-equnr
x_adatsoll = c_last_date
x_zuorddat = c_last_date
x_ablesgr = p_l_readreason
x_ebene = c_ebene_equnr
x_upd_online = c_true
x_no_dialog = c_true
TABLES
xt_eabl = l_eabl
EXCEPTIONS
Values as under:
c_last_date = 31.12.9999
c_true = 'X'.
Get back to me with your requirement so that I can suggest other FM that will load the meter reads after an MRO is created.
Thanks,
Ajay
2015 Nov 10 11:39 AM