Creating Equipment With Same Equipment No. In Different Maintenance Plant

Dear Gurus,
Is it possible to create equipment with same equipment No. (external Numbering) in different maintenance plant of same company code?
We have 2 plants, plant 1000 & plant 1100 & the geographlocal locations are different. These 2 manufacturing plants belong to same company code. We have implemented plant maintenance system for plant 1000 & now want to roll out the same system at plant 1100. In plant 1000 we have equipment with equipment No. M323 (External Number). Now we want to create equipment with same no. in plant 1100. How can this be done? or is it necessary to have different no.? please advice.
Regards,
Abhijit Khandekar

Dear Friend
As Equipment master data is client specific, you cannot have the same equipment number for same category of equipment, though plants are different.
Yes, you can do it if equipment categories are different.
I hope this will resolve your query if not let me know.
Regards
Makarand Gurjar
SAP PM consultant

Similar Messages

  • How to create directories with same name in different schemas

    I have two schemas on the same database.
    I am trying to create directories with same name, but different paths in both the schemas.
    When i created the directories in second schema, the directory paths of the first schema are automatically changed to the second path.
    Is there any solution to create directories with same name, but different path in two different schemas on the same database.
    Thanks,
    Sridhar.

    Hi,
    >>When i created the directories in second schema, the directory paths of the first schema are automatically changed to the second path.
    If you have removed the REPLACE clause of your create statement, then you would see that is not possible.
    SYSTEM> connect scott/tiger
    Connected.
    SCOTT> create directory mydir as '/tmp';
    Directory created.
    SCOTT> connect legatti/pwd
    Connected.
    LEGATTI> create directory mydir as '/tmp';
    create directory mydir as '/tmp'
    ERROR at line 1:
    ORA-00955: name is already used by an existing object
    LEGATTI> select owner,object_name,object_type,created
      2  from dba_objects where object_name='MYDIR';
    OWNER     OBJECT_NAME    OBJECT_TYPE         CREATED
    SYS       MYDIR          DIRECTORY           19/12/2007Cheers
    Legatti

  • Unable to monitor two databases with same name on two different hosts

    I have got two databases with same name on two different hosts. I added one database to the list of monitored databases. Now If I try to add the other one , I get the message that the database is already being managed.
    Can't we monitor two databases with same name on two different hosts?

    you can... while saving the target,give a different name.. for eg target-2

  • Create Equipment with same Number rang at Diff Equipment Catagory

    Hallo Guys,
    client bymistake created some equipments which are actually PRT with catagory M ( Machine)
    now they made deletion indicator to that and inactive the part and now want to create same machine as a PRT with same number range interval
    as that of made at machine, but as per std system is not allowing to create duplicate records.
    How to achive this ?
    Regards,
    Rip

    If no Equipments were created after the Deleted Equipments then you may have an option.
    Tcode OIEN
    Go to Number range interval, Then the Current number  can be changed as under. Reduce this Current number by those many equipments. Then new equipments will have the same numbers of the deleted equipments
    You should do it in trial servers and if suits to you then you can decide to go ahead. You should be prepared to have filters in Selection-screes to avoid the DLFL INAC equipments appear in the reports
    Jogeswara Rao K

  • How To Create Table View With Same Column name But Different Table?

    Hi All,
    I have the problem to create a tableview with same column name but in different table.
    The Table that i have:-
    Table - PAC051MPROFORMA
    Column - mrn,visitid
    Table - PAC051TPROFORMA
    Column - mrn,visitid
    Table - PAC052MTRANSBILL
    Column - mrn,visitid
    Then i want to create a table view to view that table. This is my SQL
    CREATE VIEW pacviewproforma (mrn,visitid,mrn,visitid,mrn,visitid)
    As Select PAC051MPROFORMA.mrn,PAC051MPROFORMA.visitid,PAC051TPROFORMA.mrn,PAC051TPROFORMA.visitid,PAC052MTRANSBILL.mrn,PAC052MTRANSBILL.visitid
    where
    *(a.PAC051MPROFORMA.mrn=PAC051TPROFORMA.mrn)*
    and
    *(a.PAC051TPROFORMA.mrn=PAC052TRANSBILL.mrn)*
    That SQL Return this error = ORA-00957: duplicate column name
    Then I modify that SQL to
    CREATE VIEW pacviewproforma (mrn,visitid)
    As Select PAC051MPROFORMA.mrn,PAC051MPROFORMA.visitid,PAC051TPROFORMA.mrn,PAC051TPROFORMA.visitid,PAC052MTRANSBILL.mrn,PAC052MTRANSBILL.visitid
    where
    *(a.PAC051MPROFORMA.mrn=PAC051TPROFORMA.mrn)*
    and
    *(a.PAC051TPROFORMA.mrn=PAC052TRANSBILL.mrn)*
    This time this error return = ORA-01730: invalid number of column names specified
    What should i do?
    Thanks...

    Hi,
    SQL> CREATE VIEW pacviewproforma (mrn,visitid,mrn,visitid,mrn,visitid)
      2  As Select
      3  PAC051MPROFORMA.mrn,
      4  PAC051MPROFORMA.visitid,
      5  PAC051TPROFORMA.mrn,
      6  PAC051TPROFORMA.visitid,
      7  PAC052MTRANSBILL.mrn,
      8  PAC052MTRANSBILL.visitid
      9  from PAC051MPROFORMA,PAC051TPROFORMA,PAC052MTRANSBILL
    10  where
    11  (PAC051MPROFORMA.mrn=PAC051TPROFORMA.mrn)
    12  and
    13  (PAC051TPROFORMA.mrn=PAC052MTRANSBILL.mrn);
    CREATE VIEW pacviewproforma (mrn,visitid,mrn,visitid,mrn,visitid)
    ERROR at line 1:
    ORA-00957: duplicate column namePlease give different names to each column.
    Something like this..
    SQL> CREATE OR REPLACE VIEW pacviewproforma (MPROFORMA_mrn,MPROFORMA_visitid,TPROFORMA_mrn,TPROFORMA
    _visitid,MTRANSBILL_mrn,MTRANSBILL_visitid)
      2  As Select
      3  PAC051MPROFORMA.mrn,
      4  PAC051MPROFORMA.visitid,
      5  PAC051TPROFORMA.mrn,
      6  PAC051TPROFORMA.visitid,
      7  PAC052MTRANSBILL.mrn,
      8  PAC052MTRANSBILL.visitid
      9  from PAC051MPROFORMA,PAC051TPROFORMA,PAC052MTRANSBILL
    10  where
    11  (PAC051MPROFORMA.mrn=PAC051TPROFORMA.mrn)
    12  and
    13  (PAC051TPROFORMA.mrn=PAC052MTRANSBILL.mrn);
    View created.
    SQL> DESC  pacviewproforma;
    Name                                      Null?    Type
    MPROFORMA_MRN                                      NUMBER
    MPROFORMA_VISITID                                  NUMBER
    TPROFORMA_MRN                                      NUMBER
    TPROFORMA_VISITID                                  NUMBER
    MTRANSBILL_MRN                                     NUMBER
    MTRANSBILL_VISITID                                 NUMBER
    ORA-01730: invalid number of column names specifiedThe list of column nmae you specified during the CREATE VIEW should match with the SELECT list of the view.
    Twinkle

  • Sale of Equipment with sub-equipment attached

    Hi fellow members,
    We have a business scenario where two different serialized materials are assembled into a single composite unit and sold to the customer. The single unit sold to the customer also has a serial number on it. We are required to track the serial numbers of the individual components as well when the main unit is sold.
    There is a sub-equipment option that could be used to attach the individual serialized devices to the main equipment. However, seek the following inputs from you:
    a. Is there a way where the equipments can be attached to the main equipment master record automatically when the composite unit has been produced ?
    b. If we sell the main unit, the system status of the equipment record gets recorded as ECUS. Will this also change the system status of the sub-equipments to ECUS ?
    c. What is the approach to be used if we would like to create one composite unit from two individual materials without the use of a production / sub-contracting order ? Can this be done via a direct movement type ?
    Appreciate your help
    Regards
    Rohit Zalani

    Hi
    The scenario you described is a production process & if you map it through PP order processing it can be tracked through its cycle. However you have following alternative as workaround-
    1. Create the finished material as equipment with serialised material & with construction type feature.
    2. Create a material BOM of the main material & you will get a structure of two material.
    3. Component material can be serialised for their own identity.
    4. You maintain the equipment master if required for the main equipments, no need to creatre equipment view of the component material.
    5. Further your question- If we sell the main unit, the system status of the equipment record gets recorded as ECUS. Will this also change the system status of the sub-equipments to ECUS ?
    Ans- No equipment status are maintained individually
    Regards
    Shakti

  • Problem with same Container for 2 different outputs

    Hi,
    I am using method set_table_for_first_display to display 2 different output with same container depending upon the selection of radio button. but the problem I am facing is when I click BACK button after dispaying second output and executing first output, it is showing prebious output only. is there any method to handle this problem?
    Regards,
    Nilanjana

    Hi,
    On clicking back use leave to screen 0 in the PAI module of the screen.
    Call screen 100.
    PROCESS BEFORE OUTPUT.
    Logic
    PROCESS AFTER INPUT.
    MODULE USER_COMMAND.
    MODULE USER_COMMAND INPUT.
    IF sy-ucomm EQ 'User command defined for BACK button'.
    LEAVE TO SCREEN 0. "Go back to selection screen
    ENDIF.
    END MODULE.
    Have a look at the method FREE of class cl_gui_alv_grid.
    eg:
    CALL METHOD wcl_alvgrid1->free
      EXCEPTIONS
        cntl_error        = 1
        cntl_system_error = 2
        OTHERS            = 3.
    Thanks,
    Vinod.

  • Merging two Podcast with same episodes and two different feed addresses

    Version 7.0.1.8 has certainly problems in the download of new podcast episodes.
    I'm having a lot of difficults - the last one beeing forced to unsubscribe one podcast and subscribe it again with another feed address. Now I have two podcasts in ITunes with same name. In Windows Explorer, all episodes are together - in the iTunes menu, all episodes are separated, each one downloaded the same episode, and with a number one appearing in the file name under the folder where the programs are stored. I tried to merge both subscriptions, but it's impossible.
    Does anybody knows how to do this? Need I download all episodes again?
    link:http://discussions.apple.com/message.jspa?messageID=3376635#3376635

    nothing was done, but I hope new software updates solved this issue.

  • BOM with Same Parent Number But Different WH

    Hello fellow SAP B1ers!
    I have a question and hope someone can help.  This point has us scratching our heads on how to do this.
    A customer has two warehouses (WH 1 and a newly-built WH5) producing the same product (Product A) but at different costs per warehouses.  They want to create two Bill of Materials (BOM) u2013 one for each warehouse.  For Example: BOM of Product A in WH1 and BOM of Product A in WH5.  The item cost is maintained at the warehouse level and, with it being a new warehouse, of course the item costs are different on the Item Master Data (Inventory Tab).  I cannot believe SAP B1 2007 cannot handle this, as this is Production 101 for any company.   Creating fake new and/or phantom products is certainly not the answer, because that could lead to an unbelievable amount of double work.  Besides, they want to be able to see the Product A information together.
    We have researched both SAP Help and Documentation and in both areas, it says (a direct quote) u2013
    If the parent item already has a Bill of Materials, the components are displayed. However, you can still create a new Bill of Materials for that parent item.
    So, how do we create a NEW Bill of Material for that parent item?
    We have tried to enter a new BOM with the parent item and WH5 and same components, but we receive an error that the item is already on the table.  When we use the duplication drop-down function, change the WH number on the header, and change the WH on the lines for components, the original BOM Product A WH1 is gone.  For some reason it also duplicates the components (but that is easily fixed).  I would imagine that a BOM table would need to have part of the key as ItemCode and WhsCode u2013 maybe a mistake in thinking?
    Can someone help us and tell us what we are missing???
    Many thanks for responses - Zal

    Hi Zal,
    Product Code is same as item code as it is unique so it is not possible to have two BOM  for same one item .
    I think help file to pointing towards special production order where you define new BOM for same product
    But I think it is too much work  if you have a lot.....
    So I think you have to look for add on to solve your issue ...
    A thought for  your problem 
    Thank you
    Bishal

  • Use same report with same database structure to different database server.

    Hi,
    I have standard crystal reports which needs to be copied to another database server.
    The origin database has exactly same database structure with the data base in other server.
    My only question is how to change the connection of the crystal report file from old database server to new one without affecting the linked tables in the report. Would it be possible?
    Note: origin database and new database has same structure, tables and columns but differ in data on it. and both has different server. (MS SQL)
    Thanks,

    Hi Mark,
    Open the report in the CR Designer > select Database option on the top > select Set Datasource location.
    The pane on the top shows the current connection. Go ahead and create a new connection to the target database from the pane at the bottom. Once created, highlight one table from the top, highlight the corresponding table from the bottom pane and click Update. Do this for each table.
    -Abhilash

  • Error in sharepoint external list while creating record with same id (this id is primary key)

    Hi,
    I have created one external content type in sharepoint designer to insert/update/delete table data.
    This table contains Primary key constraint.
    Then I have added this external content type to Sharepoint out of box List.
    Insert/Update/Delete is working fine. But when I am trying to insert record with the same id which is already exist in table, page crashed and its giving me following error:
    “Violation of PRIMARY KEY constraint 'PK_tbl_Accounts'. Cannot insert duplicate key in object 'dbo.tbl_Accounts'.
    The duplicate key value is (1). The statement has been terminated.”
    So I want to handle this exception. Can we show any popup message to hide this error?
    Thanks & Regards
    Rajni

    Avoid entering of primary from form  if possible.
    if not try to customize the new form with infopath and place your custom logic there.
    http://lightningtools.com/uncategorized/modifying-external-list-forms-with-infopath-2010/
    http://salnikan.wordpress.com/2011/07/26/prevention-of-duplicate-entries-based-on-two-or-more-columns-in-a-sharepoint-list/
    Bala

  • Problem with same application under two different context root

    JDev 11.1.1.6
    Does anyone have experience with such one scenario, so same app, but with two diff context root ?
    At a certain point, since both start to be used (and just in that case), at times there was a drastic deceleration, as if something is blocking some period. Subsequently, after some time, the application start to behave normally. I also periodically comes to acceleration and deceleration. In the log files there is no trace, no exception happens, nothing.
    And all this in a situation where both applications use only one user per app (so, the resources are not concerned)
    Any comments ?

    same app, but with two diff context root ?
    A web app packaged in WAR can have only one context root. Package a web app in two different WARs for two different context roots.
      weabpp1.war web.xml
    <?xml version='1.0' encoding='UTF-8'?>
    <weblogic-web-app>
      <context-root>context-1</context-root>
    </weblogic-web-app>
      weabpp2.war web.xml
    <?xml version='1.0' encoding='UTF-8'?>
    <weblogic-web-app>
      <context-root>context-2</context-root>
    </weblogic-web-app>

  • Two browser with same site having two different session

    Hai Experts................
    I have a problem that with session............
    when we logged in one site with our username and password, and
    then i try to log in same site with other username and password in another browser
    then how to know is there any browser is open with any other username and password in the same site.
    I want to give this checking in the client side.....

    You could use cookies, but this will only allow you to detect multiple uses of the same browser like two instances of IE. This won't work if you are using IE and you open another different browser such as Firefox.
    I think you are out of luck :)

  • CREATING DVD WITH SAME FRAME

    Shot an HD video and imported to Final Cut Pro X. Edited my project. Now I want to burn a SD DVD of my project. My DVD comes out with loss of the original picture on the edges. The original frame is larger than what I am getting on my DVD.
    The projects parameters are: 1080iHD,   Resolution 1920 x1080, rate 29.97i

        I did a quick check and found that if I have an HD timeline, FCPx won't allow me to change it to SD. If that's the case then you'd need to create a new SD timeline and pull your clips into that (simple copy and paste, I think). Then be sure the Inspector Spacial Conform is set to Fit and you will see a black area above and below the film. There are probably ways to output the 16:9 ration in a letterbox from within Compressor  or using Compressor settings in FCPx but understand that your sweet HD is going to be pulled down to SD resolution so it will not look anything close to as sharp as the HD version was. 

  • Is it possible to create vendors with same name and city in FK01?

    Hi All,
    I need to create vendor through transaction FK01.
    I need to create two vendors:
    1. Name-Abdul, City-Hyderabad, Country-India.
    2. Name-Abdul, City-Hyderabad, Country-Pakistan.
    Is it possible to create in such a way.
    Please help.
    Thanks in advance.

    Hi Gautam,
    yes it's possible, because the key is only LIFNR.
    The address can be as you want.
    regards, Dieter

Maybe you are looking for

  • Can give another developer access to my MUSE documents?

    Hi, I made several products in MUSE lately as a kind of prototyping for testing and descionmaking at a publishing house in Norway. Now the website design has to be mapped to a publishing system for a product line. Ofcourse I can make the HTML export

  • Skype 7.5 disappears almost immediately after laun...

    hi! im on OSX 10.9.2 and all of a sudden skype won't start. It disappears right after launching without any warning whatsoever. i need skype for work. i tried to use the online skype thing but i cant't find it. i also tried to find the Skype folder t

  • Encode 1080p with Compressor coming soon?

    Hi, Is there any rumors out there, that Compressor in a not so distant future will be able to encode to h.264 1080p for use on HD DVD/Blue Ray? I sure hope Apple will implement that feature, since Compressor as of now only does up to 720p. FCP import

  • Getting an object to move back and forth

    OK, at first this seemed like the easiest thing to do, but I've tried to make it work a number of different ways and nothing seems to work. I have a movie clip that I want to have constantly moving back and forth across the stage, basically "bounce"

  • Buddy icons in Mac Messages

    Since updating to Yosemite I have not been able to resolve the problem of buddy icons in Mac messages being greyed out, as if my buddies had no profile pictures.  When I delete a conversation and re-add the buddy, his/her profile pic reapperas. Howev