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: 

function module for meterread change

Former Member
0 Kudos
1,047

hi,

I am using the function module ISU_S_METERREAD_CHANGE to update the meter read recorded in EL29.

But its not updating..can any1 tell me the mandatory parametrs dat has to be passed in the fm..and in which parameter should i add the new Meter read recorded reading.

Thanks.

1 ACCEPTED SOLUTION

Former Member
0 Kudos
503

Hi,

Use the FM BAPI_MTRREADDOC_UPLOAD, for updating MR document is the one advice by SAP.

FM ISU_S_METERREAD_CHANGE, is not "Release for Customer", if you have any issue while using on you Zed Programs/code SAP won't support it.

Don't forget to call FM BAPI_TRANSACTION_COMMIT, to commit the changes.

You can use transaction BAPI, to search for help info for the MR document upload.

You can also do a Where-Used list for this FM, to understand who to fillin the data.

General recomendation, never use a ISU_S* FM if you have a BAPI, because ISU_S* functions are never release for customer. To know if a FM is release for customer, go to the actibutes and check if the last field on left hand of the screen has a date filled in, if not then "is not release". A BAPI FM always call ISU_S* functions.

KR,

AAL!

AAL!

View solution in original post

2 REPLIES 2

Former Member
0 Kudos
503

did you include the statement "COMMIT WORK." after the FM?

Former Member
0 Kudos
504

Hi,

Use the FM BAPI_MTRREADDOC_UPLOAD, for updating MR document is the one advice by SAP.

FM ISU_S_METERREAD_CHANGE, is not "Release for Customer", if you have any issue while using on you Zed Programs/code SAP won't support it.

Don't forget to call FM BAPI_TRANSACTION_COMMIT, to commit the changes.

You can use transaction BAPI, to search for help info for the MR document upload.

You can also do a Where-Used list for this FM, to understand who to fillin the data.

General recomendation, never use a ISU_S* FM if you have a BAPI, because ISU_S* functions are never release for customer. To know if a FM is release for customer, go to the actibutes and check if the last field on left hand of the screen has a date filled in, if not then "is not release". A BAPI FM always call ISU_S* functions.

KR,

AAL!

AAL!