2010 Jul 16 8:20 AM
Dear ALL,
Could anyone let me know how to use this user exit EDMSUPBI. Basically my requirements is to suppress billing for certain meter readings during upload of reading using meter reading upload BAPI.
This user exit gets triggered during the above mentioned meter reading upload event. But I would like to know how to pass the parameters to enable the suppress billing order functionality.
There are no export or import parameters in this user exit. Whereas the user exit has the following tables
XT_EABL
XT_EABLG
XT_ETRG
YT_SUPPR_ETRG
YT_DEACT_EABL
Let me know how to pass the paramets such that the suppress billing order functionality is enabled
WIth Regards
Balaji.J
2010 Jul 16 3:37 PM
if you want to suppress billing for certain meter readings then you will have to suppress the meter reading order for which you could use this exit.
the table XT_EABL will contain the Meter Reading Results. XT_ETRG will contain the Billing Orders.
If you fill the values for table YT_SUPPR_ETRG with the Billing/Meter Reading Order, the system will suppress your billing.
2010 Jul 17 1:56 PM
Hello Yuvi,
Thanks for the reply. I have tried by passing the entries in the mentioned table, but still after executing the billing order doesn't get deleted. Apart from passing the entries in the mentioned table Do I have to anything more to enable the suppresss billing functionality.
WIth Regards
Balaji.J
2010 Jul 20 3:12 PM
Hi Balaji
You have to delete the billing order you want to suppress from table XT_ETRG.
Regards,
Daniel Toba
2014 Jan 22 4:02 PM
If you still care:
You will have to access the mtr_obj in memory to get informations.
DATA:
ls_obj TYPE ISU17_METERREAD.
import xy_obj TO ls_obj
FROM memory id 'ISU_MR_EXIT_SAPLEL01_015'.
Cheers.
2014 Jan 23 7:34 AM
Hi Balaji,
To supress the meter read, Set the supress falg in EABLG table and to stop Billing, you have to delete the Bill Oder from ETRG table.
Doing so will store the Meter read but won't bill it.
Regards,
Gagan
2015 May 20 3:59 PM
Hi Balaji,
I am also facing the same issue, can you please let me know how you suppresed the BO.
when I am creating MRO, debugger is not stopping at exit "EXIT_SAPLEL01_015".
Please help.
Girdhar A.
2015 May 20 8:48 PM
girdhar:
the exit is only called if you have activated the enhancement EDMSUPBI.
regards,
bill.
2015 May 21 6:55 AM