Overwrite Maintenance order address in IW32

Hi expert,
I've got requirement to replace some value in Maintenance order address (for example: Name and Postal Code) that was changed by user and need change it back to previous value.
I tried to use EXIT_SAPLCOIH_009 but didn't get the details in that user exit.
I've also tried BADI ADDRESS_UPDATE and using method ADDRESS1_SAVED.
I could find new value in IM_T_XADRC but It's protected, then I try to directly change name value in :
(SAPLSZA0)XADRC[]
(SAPLSZA0)ADRC
(SAPLSZA0)ZADRC[]
but after save the value was not changed to my replacement value.
Really appreciate any inputs

the issue solved by myself, using BADI ADDRESS_CHECK
thanks

Similar Messages

  • Maintenance Order Components Error IW32

    Hi all,
    Please guide me on below error log:
    while going into components from IW32 screen against maintenance order number (It is against functional location only) - it is giving an error ::
    Business transaction could not be carried out
    Reference object for business object not allowed
    (Highlighting Function Location <name>)
    Blue flag appears.
    Thanks
    DM
    Edited by: Deepak M on Nov 7, 2008 6:28 AM

    Hi deepak
    You have set the functional location Deletion Flag status...
    thats why you are not able to create a order...
    it does not depends on components tab...
    When u enter the functional location click a enter, it will display a error message. Message display will be like this..
    Reference object for business operation not allowed
    Message no. IM275
    Diagnosis
    You tried to perform a business operation for a reference object whose status does not allow this operation.
    System Response
    The system does not perform the operation.
    - Pithan

  • BADI during release of Maintenance Order thru IW32

    hi,
    is there any badi maintained at the point of, maintenance order release thru IW32.
    When I trace the logic for the release steps of MO, i can only see AT_SAVE method...i cannot see any AT_RELEASE method...
    Rgds
    lakshmi

    [PM/CS User-Exits|http://pjatkin.users.btopenworld.com/documents/PMCSUserExits.pdf]
    PeteA
    [PJA Consultancy Services|www.pjas.com]

  • Change order address (iw32)

    I have created custom tcode similar to that of Iw32 and i need to add  functionality to change of address button.
    I should be able to change the address and post back ..
    Please let me know if there is any bapi/ fm to change the address

    Transaction Code - IW32                     CHANGE ORDER
    Exit Name           Description
    IWO10012            Maintenance order: Priority handling on central header
    No of Exits:          1
    BAPI-step by step procedure
    http://www.sapgenie.com/abap/bapi/example.htm
    list of all BAPI's
    http://www.planetsap.com/LIST_ALL_BAPIs.htm
    USER EXIT
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sapgenie.com/abap/code/abap26.htm
    http://www.sap-img.com/abap/what-is-user-exits.htm
    http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction
    http://www.easymarketplace.de/userexit.php
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sappoint.com/abap/userexit.pdfUser-Exit
    http://www.sap-img.com/ab038.htm
    http://help.sap.com/saphelp_46c/helpdata/en/64/72369adc56d11195100060b03c6b76/frameset.htm
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sap-img.com/abap/what-is-user-exits.htm
    http://expertanswercenter.techtarget.com/eac/knowledgebaseAnswer/0,295199,sid63_gci982756,00.html
    FUNCTION MODULES
    http://www.erpgenie.com/abap/functions.htm
    http://www.sapdevelopment.co.uk/fmodules/fmssap.htm
    http://www.erpgenie.com/abap/index.htm
    http://www.geocities.com/victorav15/sapr3/abapfun.html
    Rewards if useful.........
    Minal

  • Using Manufacturer Part numbers (HERS) in Maintenance orders (IW32)

    We want to be able to allow our maintenance engineers to select the MPN's they want (material type HERS) from the maintenance order creation screen (Iw31/IW32) but we get the message CO010 Material nnnnnnnn not found in plant xxxx. Of course the HERS will not be created in MARC, however the end user should be able to select the HERS and generate a reservation for the "Firms own inventory managed material" (the ERSA).
    Any suggestions?

    We have the same problem; so far we think we have to create a custom search help and append the MAT1.
    I spent a long time searching for OSS notes but could not find any ...

  • Create partners for a maintenance order ( IW32 transaction)

    Hello:
    I need create partners for a maintenance order ( IW32 transaction) in a program.
    I'm using IBAPI_ALM_ORDERPARTNER_MAINT but it does not do anything.
    when,in partners data, an error exists, this is returned but when all is correct, bapi does not do anything.
    help me please.
    Thanks's
    REPORT  ZPM_PRUEBA_BAPI_INTER.
    DATA G_PAR TYPE I_PARNR.
    parameters p_aufnr like aufk-aufnr.
    SELECT-OPTIONS: S_PAR FOR G_PAR.
    parameters p_id(2).
    data lv_mens(255)   TYPE c.
    data: BEGIN OF lt_partner OCCURS 0.
            INCLUDE STRUCTURE BAPI_ALM_ORDER_PARTNER.
    data: end of lt_partner.
    data: BEGIN OF lt_partner_UP OCCURS 0.
            INCLUDE STRUCTURE BAPI_ALM_ORDER_PARTNER_UP.
    data: end of lt_partner_UP.
    DATA: BEGIN OF LT_ERR_COM.
           INCLUDE STRUCTURE BAPIRET2.
    DATA      END OF  LT_ERR_COM.
    *data begin of lt_errors occurs 0.
    *       include structure BAL_S_MSG.
    *data end of lt_errors.
    data: lt_errors type standard table of BAL_S_MSG with header line.
    start-of-selection.
      lt_partner-PARTN_ROLE = p_id.
    *  lt_partner_UP
      LOOP AT S_PAR.
        lt_partner-PARTNER = S_PAR-LOW.
        APPEND lt_partner.
      ENDLOOP.
    *1038062
      CALL FUNCTION 'IBAPI_ALM_ORDERPARTNER_MAINT'
        EXPORTING
          IV_ORDERID                           = p_aufnr
    * IMPORTING
    *   EV_CREDITLIMIT_CHECK_NECESSARY       =
      TABLES
        IT_PARTNER                           = lt_partner
    *   IT_PARTNER_UP                        =
    *   ET_PARTNER                            =
          ERRORS                               = lt_errors
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    EXPORTING
       WAIT          = 'X'
    IMPORTING
       RETURN        = LT_ERR_COM
      loop at  lt_errors.
    *    write: /2 lt_errors-MSGV1,lt_errors-MSGV2,lt_errors-MSGV3,lt_errors-MSGV4.
           CALL FUNCTION 'FORMAT_MESSAGE'
          EXPORTING
            ID              = lt_errors-msgid
    *           LANG            = '-D'
            NO              = lt_errors-MSGNO
            V1              = lt_errors-msgv1
            V2              = lt_errors-msgv2
            V3              = lt_errors-msgv3
            V4              = lt_errors-msgv4
          IMPORTING
            MSG             = lv_mens
          EXCEPTIONS
            NOT_FOUND       = 1
            OTHERS          = 2.
         WRITE lv_mens
      endloop         .

    Hi,
    First, you can/should not use the FM IBAPI_ALM_ORDERPARTNER_MAINT. This FM is part of the service order BAPI called BAPI_ALM_ORDER_MAINTAIN and this is the correct FM to call for your requirement.
    A released BAPI by SAP will "survive" any upgrade. This is certainly not true for the mentioned FM IBAPI_ALM_ORDERPARTNER_MAINT, for instance.
    Please read the documentation for FM BAPI_ALM_ORDER_MAINTAIN either from SE37 (use language EN) or from transaction BAPI. There are sections for partner handling there (you must fill both the IT_PARTNER and the IT_PARTNER_UP tables for instance.
    This thread here on SDN will be of interest for solving your problem: Re: Deleting partner with BAPI_ALM_ORDER_MAINTAIN does not work
    If you find this answer of help then award some points so others can benefit from the answer as well.
    Best regards, Johan

  • How to change Unit for Breakdown Duration in Maintenance order.

    Hello,
    In cuni, somebody created Unit "TST" by mistake, system can not convert it to "second" for calculation automaticlly.
    "TST" make no sence. So if maintain "TST" as Unit for Breakdown Duration in a maintenance order, dump will happen. However there is a maintenance order maintained Unit for Breakdown Duration as "TST" saved by mistake, Dump will happen when I try to access to this order by IW32 to change the Unit for Breakdown Duration. Is there any way to change the Unit for Breakdown Duration"TST" to "H" so that I can access to this order by IW32.
    Thank you.

    Hi,
    You could temporarly adjust the CUNI definition for TST so that it can be converted to seconds. Adjust the notifications to set a valid unit of measure.
    The alternative would be to update the field MAUEH in table QMIH with a valid breakdown unit of measure.
    -Paul

  • PP-PM Integration-capacity block due to maintenance order

    Hi guys,
    I have an work center under which i have grouped 3 similar machines which has both machine & labour category
    Now with respect to notification(that one of the m/c in that wrok center got break down) from production if a maintenance order is planned then in CM 27 screen iam able to see the capacity getting blocked
    The problem is capacity is getting blocked for the whole work center,iam not able to dispatch for the other two m/c,my requirement is that i should be able to dispatch the operations in other 2 machines,so what should be done to address this issue?

    Hi Naven,
    In work center capacity tab select Capacity header details and give "No of Individual Capacities " 3.
    Hope this is useful
    thanks and regards
    Murugesan

  • Services for Object in Maintenance order can not link

    Hello,
    "Services for object" in Maintenance Order can not link to share point.
    Linking documents from the C drive or Global drive is successful but if SHAREPOINT is used, it fails
    When trying to link to a Word document on our Sharepoint... It fails... when I'm in an order... it gives me an error... (displayed on the attached Word file...) and when I'm working within a document... (CVN02) it merely links to my C:\ drive which won't work...  
    We need to link to our "master" Sharepoint (web based) documents.
    Please suggest the solution.
    Thanks
    Regards
    Anil

    Anil,
      Couldn't you add the web address as the attachment?
    Regards
    Narasimhan

  • 4.6C method for creating a Maintenance Order

    Hi,
    We have a requirement to create and update maintenance orders on a 4.6C system.  The scenario is that we need to programmatically mimic what users can do in IW31 and IW32.  The BAPI_ALM_ORDER_MAINTAIN function module is not available on this system (SAP delivered that BAPI in a later version.)  We've looked at IBIP but it does not offer structures for order data.  Using "call transaction" and BDC data structures directly seems to be an option but difficult to implement and prone to error.
    What other options exist for creating/updating maintenance orders on a 4.6C system?  Thanks in advance for any information or examples you can provide.
    -Jason

    Ok.  I've actually figured out how this works.
    I'll post what I've found out in case it helps anyone else.
    The parameters seem to be: ( with my example data in brackets)
    I_AUFNR – order number
    I_VAPLZ – work center ( MAINT.)
    I_VAWRK – plant ( 0001)
    I_PLNTY – Task list type = ( A )
    I_PLNNR – Task list group ( 55)
    I_PLNAL – Task list group counter ( 1)
    The problem I have is that this bapi is not released, and it is not remote enabled. 
    Are there any released BAPIs that would do the same thing?
    Or would I need to write my own remote-enabled BAPI that calls this one, and then try to call my BAPI ( using .NET Connector ) ?
    Thanks,
    Derek

  • Restrict use of tab Components in Maintenance Order

    Hello guys.
       I'd like to know if is there a configuration to restrict the use of modification Maintenance Order (IW32) to only the "Components" Tab? Otherwise, how can I implement this?
       Thanks in advance.
    Gabriel

    Gabriel,
    If I'm correctly understand your requirements and your system meets some prerequisites
    http://help.sap.com/erp2005_ehp_07/helpdata/en/46/4ad530501c0db6e10000000a1553f6/content.htm?frameset=/en/61/de307316e74958ad1b90cbbcabbcfb/frameset.htm&current_toc=/en/46/4afb86d8d551ede10000000a114a6b/plain.htm&node_id=169
    then you can use Basic order view functionality

  • Start date of maintenance order .....have ur points.

    Hi all,
    - AFIH is maintenance order header.
    -AUFK is order header.
    I am not able to find the BASIC START date of a maintenance order (IW32) in these tables. Pleas help me from where i can get, this date.....
    <b>thanx in advance...
    Have ur ponts.</b>
    Regards,
    pradeep phogat

    Hi
    Check the Table
    <b>AFVV</b> and AFVC etc
    take the key field of AFVV from AUFK or AFIH  and pass to AFVV and AFVC tables
    Also see in the tables
    AFKO and AFPO
    Regards
    Anji

  • Recording for vehicles in maintenance order

    Hi
    how can i enter  in maintenancne order  counter-reading recording for vehicles like primary counter for miles  using screen O150
    i am getting  License plante  using " Scenario: O150  Field name: LICENSE_NUM though SPRO setting "
    but not able to get the primary counter and its last reading in maint. order
    Thanks
    Ajay khurana

    Dear Ajay
    You requirement is to enter the mesuring counter reading against Vehicle (Fleet object) through maintenance order right??
    You can enter the the measuring counter reading against the vehicle through maintenance order at two points.
    1. At the time of order confirmation using iw41/IW42 transaction.
    2. At the time of TECO using IW32 transaction. When we try to TECO the order the small screen is coming. on this screen measurement document button is there. click on it. Then you will be on enter measurement document screen. Just enter there the counter reading which will get updated against the Vehicle.
    I hope this will satisfy your requirement.
    Regards
    Makarand Gurjar

  • Maintenance order workflow (in plant maintenance module)

    Hi,
    I'm looking into implementing maintenance order workflow within PM module. Found the workflow ws2000021, but is this workflow integrated with enterprise portal. That means when a work order is created, can this work order be route to UWL (EP) of another supervisor for release and signoff, instead of going into IW32 and release the work order?
    Is any of the logisitics workflow(like Purchase order) available and can be used in the enterprise portal? Just like leave and overtime application in the HR module which are currently available for use in the portal.

    Hi,
    To get to know info about mySAP ERP 2004 - MM Workflows,please check in this link.
    http://help.sap.com/saphelp_erp2004/helpdata/en/1d/ea9d9c7aca11d194b70000e82dec10/frameset.htm
    Well, if there is a workflow that works with EP, you can find them in the above link itself.
    I dont think Workflows comes with BUSINESS PACK.
    Regards,
    <i><b>Raja Sekhar</b></i>

  • Field costs in maintenance order

    Good morning,
    DdsCabeç tab. the maintenance order (IW31/IW32/IW33) there is a field that costs just under the Note field.
    This field is released for publishing costs while the order is only with ABER status. I wonder if this release has the field to iissue a final or at least the status of the maintenance order LIB.
    Thanks,
    Edited by: Equipe PM on Apr 6, 2011 2:38 PM

    Hi Rupesh,
    Has this been resolved? If so, what did you do? We have a similar problem. I am seeing the "Planned Costs", but not the "Actual Costs" for my services.
    When trying to save the SES, I get the following pop-up message:
    "No message record could be found for output of message. Save anyway?"
    Also, when I try to accept the SES, I get the following error message:
    RC=
    3  BP              
    045 Profile PM0001 does not exist
    Can someone please guide me on troubleshooting this?
    Thanks in advance
    DKK

Maybe you are looking for