Move in -Move out  and Aperiodic meter reading order, No auto service Ord

Hi ISU Experts,
I have a following problem in ISU,
When create a Move In or a Move out, the system should automatically create a Meter read Order and a Service Order in the Background.
Same case  is applicable for the Aperiodic meter read order, whenever I create a Aperiodic meter read order, the system should create a service order/ notification automatically in the background,
As mentioned above, In both the cases no service order/notifications is getting cretaed.
I have maintained the SPRO settings for Aperiodic meter reading and for Move in and Move out , the service order creation checkbos is checked.
Please anybody can throw some light, help me out what may be the problem, or any other SPro settings are to be maintained, any enhancement has to be done.
Your inputs will be highly appericiated .
Best Regards
Suresh

Hi,
         I am stuck with the same issue. I have checked the check box to create service order/notification from the meter reading order. Please let me know if you have found any resolution
Thanks,
Dhana

Similar Messages

  • Automatic creation of meter reading order with RR 01 after move in

    Hi Experts,
    I am working with DM module of SAP ISU. Currently I am facing a problem that after move-in a periodic order with RR 01 is created automatically by the system.
    Ex: Move in date is 01.01.2010. Monthly Portion is used with Schedule record 01.01.2010, 01.02.2010, 01.03.2010, 01.04.2010 and so on.
    If current system date is 20.07.2010 then Meter reading order is created automatically by the system for sch MRD 01.08.2010.
    Please let me know how to overcome this problem
    Thanks in advance.

    Thanks for your reply but I have cheked SPRO setting the suggested check box is already uncheked.
    I beleive the setting you have suggested is meant for default meter reading during move in but my problem is automatic creation of meter reading order with reason 01 during move in

  • Link between notification number and meter reading order in ISU

    what is the link between notification number and meter reading order in ISU. i have written a program to close all open notifications but now i want the program to close only notifications with closed meter reading orders but i cant find the link between meter  reading order and notification

    HI timothy
    you can tell me how do you solved this issue?
    how i can match reading Order with the order in Work Management?
    i need some configuration?
    thanks in advance
    Miguel

  • Meter reading order simulation

    Hello experts,
    I need to "simulate" meter reading order creation process, to download orders (EL35, with specific formkey) and use the file for external system.
    Is this possible?
    Thanks,
    Angela

    Hello Olivia,
    thank you for your answer, but i'm afraid I don't understand it properly.
    I thounght  ISUMSORDER was for working order not for meter reading; is it not correct?
    I need to simulate meter reading order, I mean to use EL35 but without filling db tables EABL/EABLG.
    thanks,
    Angela

  • BAPI for meter reading order (MRO) Reversal

    Hi Experts,
    Please let me know if there is any FM or BAPI for meter reading order reversal, Similar to EL37
    Regards
    Bikas

    Hello Bikas,
    Though this is an old post, thought of replying for the sake of googlers who might look for a solution for your query...the below code works!
    *---Begin Of Code
      TYPES : BEGIN OF ty_meter_orders_data,
               anlage   TYPE eablg-anlage,
               adatsoll TYPE eablg-adatsoll,
               ablesgr  TYPE eablg-ablesgr,
              END OF ty_meter_orders_data.
      DATA : lt_meter_orders_data TYPE STANDARD TABLE OF ty_meter_orders_data,
                  xy_ieabl_delete   TYPE  eabl_tab,
                  xy_ieablg_delete  TYPE  eablg_tab,
                  xy_ietrg_delete   TYPE  etrg_tab,
                  x_anlage type anlage,
                  x_retro_upd_date type adatsoll,
                  y_return type char1.
      DATA : y_obj TYPE  isu17_meterread.
    *--Get the needed data for reversal
      SELECT a~anlage
             a~adatsoll
             a~ablesgr
        FROM eablg AS a
        INNER JOIN eabl AS b ON a~ablbelnr = b~ablbelnr
        INTO TABLE lt_meter_orders_data
        WHERE a~anlage = x_anlage AND
              a~adatsoll >= x_retro_upd_date AND
              b~ablstat = '0'. "MR Order
      IF sy-subrc = 0.
        SORT lt_meter_orders_data BY anlage ablesgr adatsoll.
        DELETE ADJACENT DUPLICATES FROM lt_meter_orders_data COMPARING anlage ablesgr adatsoll.
        SORT lt_meter_orders_data BY adatsoll DESCENDING.
        LOOP AT lt_meter_orders_data ASSIGNING FIELD-SYMBOL(<fs_meter_orders_data>).
          CALL FUNCTION 'ISU_O_METERREAD_OPEN'
            EXPORTING
              x_anlage              = <fs_meter_orders_data>-anlage
              x_adatsoll            = <fs_meter_orders_data>-adatsoll
              x_ablesgr             = <fs_meter_orders_data>-ablesgr
              x_select2             = '5'
              x_wmode               = '6'
            IMPORTING
              y_obj                 = y_obj
            EXCEPTIONS
              not_found             = 1
              foreign_lock          = 2
              internal_error        = 3
              input_error           = 4
              existing              = 5
              number_error          = 6
              general_fault         = 7
              system_error          = 8
              manual_abort          = 9
              gasdat_not_found      = 10
              no_mrrel_registers    = 11
              internal_warning      = 12
              not_authorized        = 13
              not_qualified         = 14
              anpstorno_not_allowed = 15
              already_billed        = 16
              dev_already_prep      = 17
              OTHERS                = 18.
          IF sy-subrc = 0.
            CALL FUNCTION 'ISU_O_METERREAD_ACTION'
              EXPORTING
                x_okcode             = 'PSAV'
              CHANGING
                xy_obj               = y_obj
              EXCEPTIONS
                cancelled            = 1
                failed               = 2
                action_not_supported = 3
                system_error         = 4
                input_error          = 5
                not_customized       = 6
                OTHERS               = 7.
            IF sy-subrc = 0.
              CALL FUNCTION 'ISU_O_METERREAD_ACTION'
                EXPORTING
                  x_okcode             = 'SAVE'
                TABLES
                  yt_eabl_delete       = xy_ieabl_delete[]
                  yt_eablg_delete      = xy_ieablg_delete[]
                  yt_etrg_delete       = xy_ietrg_delete[]
                CHANGING
                  xy_obj               = y_obj
                EXCEPTIONS
                  cancelled            = 1
                   failed               = 2
                  action_not_supported = 3
                  system_error         = 4
                  input_error          = 5
                  not_customized       = 6
                  OTHERS               = 7.
              IF sy-subrc = 0.
                COMMIT WORK.
              ENDIF.
            ENDIF.
            CALL FUNCTION 'ISU_O_METERREAD_CLOSE'
              CHANGING
                xy_obj = y_obj.
    * Implement suitable error handling here
          ELSE.
            y_return = 'E'.
          ENDIF.
        ENDLOOP.
        IF y_return <> 'E'.
          y_return = 'S'.
        ENDIF.
      ELSE
    *    RAISE no_mtr_read_ordrs_found.
      ENDIF.
    *---End of Code
    Thanks.
    Mohammed.

  • None of the network adapters are bound to the Netmon driver.If you have just installed, you may need to log out and log back in order to obtain the proper rights to capture. Please refer to the product help for more information.

    Hi,
    To analyze Lync issues I have installed these applications in my windows 7 x64 laptop
    1) network monitor 3.4
    2)Lync network monitor parser
    3)nmdecrypt2.3
    4)network monitor parser3.4
    Installtion got completed successfully but when I try to start capture I get this error everytime.......
    "None of the network adapters are bound to the Netmon driver.If you have just installed, you may need to log out and log back in order to obtain the proper rights to capture. Please refer to the product help for more information"
    I read many technet articles and other blogs but that didn't solve this issue. I tried things like
    A) Run as administrator
    B) nmconfig /install in cmd
    So could you please help me how I can fix this issue?
    Regards,
    Ajit

    Seems our driver didn't get installed.  What you see when you type "sc query nm3" from a command prompt?
    Thanks,
    Paul

  • BAPI or FM to Create a Meter Reading Order

    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.

    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.

  • Duplicate sets of meter read orders

    Hello Team,
    Meter read order gets created duplicated so how i can i delete the meter read orders and how can i prevent duplication in future.
    Thanks
    Regards,
    Vijji

    Hello Vijji,
    Have you applied note 1384492 to help resolve your issue?
    Please let me know if this helps.
    Regards
    Olivia

  • Creation of Meter Reading Order

    Hi,
    My uploading program creating Meter Reading order using the function module ISU_S_METERREAD_CREATE. MRO is created Successfully for Meter Reading Reason 06. The Problem is Metering scheme is not Displaying in the Table EANL for the particular Subinstallation.
    Any one help me pls.
    Thanks in Advance
    Lakshmi

    Hi,
    Use Blocking Reason in ES31 (installation: Billing/Meter Reading control Tab)...During meter reading order creation, prevents meter reading orders from being created for the registers allocated to the installation.

  • Blocking creation of meter reading order for perticular installation

    Hi,
    I want to block creation of meter reading order for perticular installation within an MRU.
    This meter is disconnected in the installation.
    My requirement is if i create meter reading orders for  MRU it should not create MR oder for some installtions.
    your input on the same will be highly helpful.
    Thanks in advance.
    Regards,
    chetan

    Hi,
    Use Blocking Reason in ES31 (installation: Billing/Meter Reading control Tab)...During meter reading order creation, prevents meter reading orders from being created for the registers allocated to the installation.

  • BAPI / FM to create meter read order   (  Tcode  EL01)

    Hi All ,
    Is  there any BAPI or Function module to create meter read order  (Tcode EL01) .   Thanks in advance.
    Regards
    Neetesh

    use :
    ISU_S_METERREAD_CREATE

  • For few devices Meter Read order 09 information created automatically.

    Hi,
    In our one of the clients ISU system for EVC meters two Information read Orders are automatically created few days before every 01 order creation for the particular device.  Please provide the information due to what the Information Read order 09 is created .
    With Regards

    Check Meter control group is filled in register data of device. Control group allows to create multiple meter reading order in between periodic billing with meter reading reason
    09.Please make control data blank from device modification transaction if
    interim meter reading order is not required.
    Thanks,
    Laxmi.

  • To get previous and current meter reading in Bill Doc

    Hi ALL
    To get current and previous meter readings in Bill Document,  How to fill DBERCHZ2 table.
    currently my billing scheme is not updating any line items into DBERCHZ2 to 8 tables.
    could you please suggest any one...
    Thanks in ADVANCE...........KK

    Resloved my self
    Thanks..............KK

  • Need to create form that user can fill out and SAVE in Reader

    Hi,
    My form, which of course works fine in Adobe Acrobat 4 CS4, is unsaveable when typed into with Acrobat Reader. It says at the top:
    "Please fill out the following form. You cannot save data typed into this form. Please print your completed form if you would like a copy for your records."
    *I know it's possible* to make it writable/saveable for Readers users, because I have here a form that someone else created, and in Reader the message says, "Please fill out the following form. You can save data typed into this form."
    What setting do I need to change in Acrobat to make it saveable in Reader? Document attached.
    Thank you in advance!!!!

    WelltechSolutions wrote:
    Phillip,
    Thank you for the clarification.
    I cannot seem to find the post that mentioned that this could not be done; perhaps it was for an older version of Acrobat. If I find it, I'll send you the URL.
    This is a form that will reside on a web site for download, and the forms are used by individuals to track exercise as part of a community nonprofit wellness program. I doubt 500 folks will use it. We can monitor downloads.
    If we need to go above 500 downloads, how would we go about purchasing a license for additional use? And, is there a chance that Adobe will increase this limit for a purpose that is non-commercial and non-profit?
    Thanks.
    I don't know the answers to the question about license for additional use, nor would Adobe increase the limit. I  among other that were associated with Non-profits (I was treasury for an Electronics Association for 17 years) were the reason for adobe doing this to begin with. Before Acrobat 8, you had to use the other methods mentioned (The LiveCycle Server).

  • ORA-12535 TNS:Operation time Out and ORA-12154:TNS Could not resolve servic

    Greetings!!!
    I have installed my Oracle Database 10g & Developer Suite 10g in Windows XP Pro Machine. Oracle Application Server 10g is also installed in Windows 2003 Server machine.Both machine have different domain.When using Form Developer Suite OC4J to run my form program, i can connect to the database properly run the form perfectly.
    Problem encountered.
    When I tried to run the form using Application Server 10g(installed in Windows 2003 Server), I got an error ORA-12154:TNS Could not resolve service name when connecting to the database and I got an error ORA-12535 TNS:Operation time Out when using TNSPing. I checked both the configuration of TNSNAMES.ORA(database & Application SErver) using the same port & service name but still got the same error.
    Hope somebody can help me out there...
    Many thanks in advance.
    Regards,
    BTF

    I have seen this before with my setup, I found that I had to go into the net configuration assistant, and change my host name to the fully qualified name, example: my compuer name is computer1, I had to enter in computer1.OIT.Docfinity.com for it to take. That has always gotten me past that TNS error, just my 2 cents, hope it helps.
    keep on keeping on.

Maybe you are looking for

  • Zeen does not work anymore

    hi i an HP eStation c510. but the tablet zeen does not come out of options I got it already reset I think have no android system more rick I come from Netherlands

  • Spry Slide Show-how to use one size photo for large photo and thumbnail?

    Hi all, I'm am using Adobe's Spry Slide Show. I can only use one size photo 640x480px for both the large photo and the thumbnail. I changed the size of the small thumnail on the html:                  <li><a href="Photos/TestPhoto640x480.jpg" width="

  • Oracle Forms Access

    From Oracle forms I can not access "sys.dba_SOURCE" but I can from SQL*Plus and From Oracle reports, I'm even using the TNSNAMES.ora

  • RECIVER RFC ADAPTER ERROR

    Hi, I'm sending data from databse table to sap.I've create one ztable in sap and assign in tables staement in functionmodule.i wrote sourcode is         insert ZPERNR_POS from table intra. sender side jdbc shows green colourand also rfc shows green c

  • No reply got while sending a message

    Environment: SCO Unixware 7.1.1, Tuxedo 6.5, Windows 98(client) While the client sends a message(photo) which size is near to or over 16K Bytes, to the server, the client gets no reply. Seems the server can not get the request. Does anybody know the