Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

BAPI or FM to Create a Meter Reading Order

Former Member
0 Kudos

Hi,

Can anyone suggest me the name of a standard BAPI or any standard function module which can create a Meter Reading Order. I tried with ISU_S_METERREAD_CREATE but it is not creating the order, don't know why.

Please Help.

Regards,

Kirti Bhushan.

4 REPLIES 4

laxmanakumar_appana
Active Contributor
0 Kudos

Hi,

Check this BAPI: BAPI_MTRREADDOC_UPLOAD

Regards

Appana

Former Member
0 Kudos

I have tried to use the FM - ISU_S_METERREAD_CREATE. But no meter reading order is getting created. I do not know whether I am using the proper input parameters for the FM

If some one has practically used the above FM for creating meter reading order , kindly let me know the exact steps needed which I need to follow to create a new meter reading order.

Thx...

Paul

0 Kudos

Hi,

I have the same problem. Do any of you already know the solution?

Thanks,

Pieter

alfredo_gomezripoll
Participant
0 Kudos

Sometimes ,BAPI´s are executed without errors (sy-subrc = 0 ) and don´t create the item (order,invoice etc.).

That´s why you have to do a commit work after execution :

CALL FUNCTION BAPI ****

IF sy-subrc = 0 .

commit work.

endif.