Creation of equipment using asset

Dear Experts,
I am very new to SAP PM. I have one query regarding the creation of equipment master automatically by asset master scenario is as below..
    I have created one asset master in which asset quantities are 10 in one asset master, I have synchronize asset master with equipment master in FI configuration. I am getting only one equipment master for that asset master but I want maintain above mentioned 10 asset separately so I want 10 seperate equipment for same.. Please tell me how can do this
Thanx .
Regards,
ABC PM

Thanx Yawar,
I have activated that setting & I am getting one equipment for one asset master. but in my scenario in one asset master there are 10 quantities of asset & to maintained  them separately I want to make 10 seperate equipment master.. so hw can I do that???
Regards,
Parag.

Similar Messages

  • Automatic Creation of Equipment Master

    Hi Experts
    I have gone through lot of discussion available on forum but still Asset Equipment link is not working.
    I would like to create Equipment when I create Asset.
    I have done below settings.
    1) Asset Accounting --> Master Data --> Automatic Creation of Equipment Master -> Specify Conditions for Synchronization of Master Data
    here i have assigned equipment category and object type and selected direct synchronization after saving in Create Equipment
    2) Asset Accounting --> Master Data --> Automatic Creation of Equipment Master -> Assign Master Data Fields of Assets and Equipment
    here i have assigned fields here.
    When I create asset and save its only creating assets and even not getting error message . I have also checked screen layout and equipment is optional and not seems to be a problem.
    To see whether synchronization functionality works I have done settings from Equipment to Asset creation and it's working but that's not the requirement.
    I have changed the settings back to the 1) above to create equipment when asset is being created and it's not working.
    So to summaries when I create Asset - No equipment is created but if i change settings other way then asset is getting created from equipment.
    My question is what settings are missing to create Equipment when I create Assets?
    Is there any settings required from equipment side? any specific requirement on equipment category and object type?
    Thank you.

    Hi,
    Simple,
    1. Go to AOLK and check which tab layout is assigned to your asset class, to transaction group 'Others'.
    2. Go to AOLA select layout you found out at 1st step, then double click on 'Tab Page Titles'.
    3. Select tab page Allocations and click on position group on tab pages.
    4. Click on new entries and insert 'S0013', save.
    after doing this you will be able to find 'equipment' box under allocation.
    and regarding asset synchronization..
    Asset Accounting --> Master Data --> Automatic Creation of Equipment Master -> Specify Conditions for Synchronization of Master Data
    In this step, under the box 'Edit Asset Master Record' mention,
    Create Equipment                 2 Direct Synchronization after saving
    Change Equipment               2 Direct Synchronization after saving
    Make sure you do not have any other field 'required' in equipment creation and not assigned to asset field.
    After doing this you should be able to get equipment created automatically..
    Regards,
    Sayujya

  • FI-AA and the Automatic Creation of Equipment Master Records

    Our client is currently on SAP R/3 4.7E and per SAP Notes 176056, 370884, 361520, releases above 4.6B should be able to automatically create an equipment resord master record from within FI-AA.  Configuration shows that undaer FI-AA Master Data the integration should be possible, but we have tested and cannot get it to work.  No equipment record is ever created. 
    Has anyone been successful in performing this function?
    What are we missing?
    Thank You.
    Ruthie

    Hi,
    Simple,
    1. Go to AOLK and check which tab layout is assigned to your asset class, to transaction group 'Others'.
    2. Go to AOLA select layout you found out at 1st step, then double click on 'Tab Page Titles'.
    3. Select tab page Allocations and click on position group on tab pages.
    4. Click on new entries and insert 'S0013', save.
    after doing this you will be able to find 'equipment' box under allocation.
    and regarding asset synchronization..
    Asset Accounting --> Master Data --> Automatic Creation of Equipment Master -> Specify Conditions for Synchronization of Master Data
    In this step, under the box 'Edit Asset Master Record' mention,
    Create Equipment                 2 Direct Synchronization after saving
    Change Equipment               2 Direct Synchronization after saving
    Make sure you do not have any other field 'required' in equipment creation and not assigned to asset field.
    After doing this you should be able to get equipment created automatically..
    Regards,
    Sayujya

  • Bapi for creation of equipment master

    hi friends ,
    I have to made a BDC program for creation of equipment master .
    for that  I am using bapi i.e. ' BAPI_EQUI_CREATE '.
    I had matched the fields of transaction IE01 but in the additinal data part i could not able to map 'Partner' fields .
    pls some body can guide what should i do for it.

    Hi Das,
    If u r going to create equipment no against this Bapi BAPI_EQUI_CREATE"
    then u need to pass material no, Equipment type, Serial No. there is no need to give partner no .
    If its good, then plz give point.

  • BAPI  for  creation of Equipment BOM

    Which BAPI is used for creation of Equipment BOM?

    Hi,
    Check this Code, it works:
    DATA ecsin  TYPE csin.
    DATA estkob TYPE stkob .
    DATA estzub TYPE stzub .
    DATA astlnr TYPE stzub-stlnr .
    DATA t_stpob TYPE STANDARD TABLE OF stpob WITH HEADER LINE .
    PARAMETERS: pa_equnr TYPE equnr DEFAULT '1500037'. "Your Equipment.
    START-OF-SELECTION.
       ecsin-equnr = pa_equnr.
       ecsin-stlty = 'E' .
       ecsin-stlan = '4' .
       ecsin-werks = 'C002'. "Your Plant.   
       ecsin-datuv = '20130101'.
       estkob-bmein =  'ST'.
       estkob-bmeng = 1.
       estkob-stktx = 'TEST'.
       t_stpob-stlty = 'M' .
       t_stpob-postp = 'L' .
       t_stpob-idnrk = '000000000040002882'. "Your Component.
       t_stpob-meins = 'ST' .
       t_stpob-menge = 1 .
       t_stpob-rvrel = 'X' .
       APPEND t_stpob .
       t_stpob-menge = 2.
       t_stpob-idnrk = '000000000040002877'. "Your Component.
       APPEND t_stpob.
       CALL FUNCTION 'CSAI_BOM_CREATE'
         EXPORTING
           ecsin                    = ecsin
           estkob                   = estkob
           estzub                   = estzub
    *   FL_NO_CHANGE_DOC         = ' '
    *   FL_COMMIT_AND_WAIT       = ' '
    *   FL_NO_COMMIT_WORK        = ' '
    *   FL_ALE                   = ' '
         IMPORTING
    *   FL_WARNING               =
           astlnr                   = astlnr
         TABLES
           t_stpob                  = t_stpob
         EXCEPTIONS
           error                    = 1
           OTHERS                   = 2.
       IF astlnr IS INITIAL.
    ****ERROR.
       ENDIF.
       IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
       ENDIF.
    Regards,
    Sergio.

  • Integeration for Equipment with Asset Management.

    Hi Gurus,
    Please guide me how to integerate the Equipments with Asset Management.
    Please give me all the process steps relatively.
    Regards,
    Maven Kumoku

    Dear,
    Integrating equipment with asset means at the time of equipment creation you want to maintain as a asset also. Fot this there are two option:
    1- Create asset number at the time of equipment creation
    2- Create equipment number at the time of equipment creation.
    for these you hae settings in customization SPRO>ASSET ACCOUNTING>MASTER DATA>AUTOMATIC CREATION OF EQUIPMENT MASTER RECORD>Specify Conditions for Synchronization of Master Data
    Regards,
    Kaushal RAi

  • Creation of role using T-code PFCG in R/3

    Hi Experts,
    I have created a Role using PFCG inorder to give acess only to three T-codes(PZ09. PZ80,PZ88).
    so i have created a role intially using PFCG and incorporated PZ09 tcode in it and assigend the Role to users in R/3. it is displaying the TCode(PZ09) in Portal.
    Now again i have added PZ80 & PZ88 to the same Role in R/3, but now i am getting an error:
    Infotype 0000 does not exist.
    but whereas when i assign SAP_ALL they(PZ88 & PZ 80) are working fine.
    Is they anything i can do so that i can avoid assigning SAP_ALL Profile to the users and eliminate the Error "Infotype 0000 does not exist.
    Thanks Inadvance,
    Regards,
    Siva

    Hi,
    Thanks for your reply,
    Creation of role using T-code PFCG in R/3
    The above link has solved my issue, Thank you!
    Regards,
    Siva

  • Creation of Material using BDC Session method & global class

    Hi
    Creation of Material using BDC Session method & global class by using oops.
    can anyone plz help me out

    Hi,
    it looks like it's not possible to call this BAPI wihtout material number. Here is a quote from BAPI documentation.
    When creating material master data, you must transfer the material
    number, the material type, and the industry sector to the method. You
    must also enter a material description and its language.
    Cheers

  • Problem during creation of equipment

    dear sap gurus,
    I m facing the problem creating equipment.when i creating equiment the pop message shows as "Customer-specific check determined that the update is not permitted'  plz how it can be rectified
    Rakesh mane

    hi
    kindly check whether you have activiated any user exit for creation of equipment,consult with your abaper
    regards
    thyagarajan

  • Automatic creation of equipment after goods receipt

    Hi SAP experts,
    I need help to find where in  SPRO do I turn off/on the automatic creation of equipment once a GR is done for serialised equipment.
    Also, is it a PM function or MM?
    Thank you
    Emanuel

    hi
    SPRO>PM>Master data in PM >Technical objects->Define Serial No Profile  -->here goto ur serializing no profile --> goto serializing procedure and chek in MMSL procedure and change the EqR value to 1 .
    regards
    pushpa

  • Problem regarding the creation of Table using CSS.

    Hi ,
    Here I have a Problem regarding the creation of Table using CSS.
    In My Application i have a table with multiple rows(Rows are Dynamically added to the table).First i am setting the table with the following properties:
    width:900px;
    height : auto,
    Overflow : visible,
    Max-height: : 200px.
    If I use above properties,I'm getting a table with 5 or 6 rows(height upto 200px).After that i am getting the Vertical ScrollBar.
    The problem is when a table has many columns, Vertical and Horizontal Scrolls are coming at the time of setting the table. The table height is not Increasing dynamically.
    How can i use "height" property in CSS? (I want the table height to be increased when the columns are more.)
    Thanks & Regards
    Madhavi

    Hey humble user. Errr I'm trying to understand what ur trying to do. U want to create a section of a region destructively from an existing region right? If so select the option convert to new region (opt-comm-R or selecting it by right clicking). Check your audio bin to make sure. Whats the "merge" function? Are u refering to the glue tool?

  • Automatic creation of Notification using T-code IK11

    Hi Gurus,
      i got stuck in a requirement, where they want Automatic creation of notification using T-code IK11.
    I am using EXIT IMRC0001.
        Please guide me that with what logic i should go.
    Thanks
    Regards
    VICKY
    Moderator Message: Vague Question. Expecting others to do your work for you => Thread Locked.
    Edited by: kishan P on May 12, 2011 12:35 PM

    In the role give Authorization object P_ORIGIN for Infotype 0, 1 and 2. with Authorization level as R (read)
    This will resolve your issue then no need to give sap_all authorization
    Good Luck
    - Ashish

  • Disable certain fields during the creation of SC using "create limit item"

    Hi,
    I have a requirement to disable certain fields from the role "SHOP" associated with the operational purchaser role. I would like to disable the fields "Unlimited check box", "Service Agent", " Invoice Only radio button", "Unknown account assignment radio button" from the screen I get during creation of SC using the option "Create Limit Item". Also i need to disable the option "Good / Service" entry box as we are using only free text items and donu2019t want this option to be seen in the screen when using the operational purchaser role.
    Please advise how can I achieve this.
    Regards
    GGL

    Hi,
    I have a same requirement to disable certain fields from the Shopping Cart Limit Item. I would like to disable the fields  "Service Agent", "Unknown account assignment radio button" from the Detail  screen. during creation of SC using the option  Limit Item .  Also i need to make default Value "Known" and "Invoice Only". But this is in SRM 7.0. Notes You have mentioned supports only Release 5.5, But I am in Release 7.0. Any idea?
    I appreciate your help
    Thanks,
    Monica

  • PrE 8 used assets not checked in Task Pane

    I recently upgraded to PrE 8 after using PrE 3 for years. My first project in 8 is quite involved with a lot of sound drops and still photos.Since I'm trying to learn and apply a lot of new features, I've brought into the project a lot of assets I ended up not using. Now the project is complete and I want to clean up my assets (ie, remove the ones I didn't use) before I archive the project ... but for some reason the check marks in the "USED" column in the Task Pane aren't there so I can't easily confirm which assets were/were not used. I do incremental saves with different file names as I build the project and it looks like the "USED" column may only be checked for new assets brought in initially under each file name.
    Does anybody know an easy fix for this, or something I should check? Otherwise I love this version (after the update for the NVIDIA display problem).
    Thanks.

    I have not encountered the Used Column not displaying correctly. The only instance that I can recall reading of was when a user had duplicate, or very similar Asset names, and found that they did have the checkmark, but that they were looking at other Assets and the names were so similar, that it appeared that used Assets were, in fact, not used.
    PrPro has one neat feature, Delete Unused, that will rid the Project Panel of any Imported Assets, that are not used. I was thinking that PrE had that too, but could not find it in PrE 4. Do not know about PrE 7, or PrE 8.
    Good luck,
    Hunt
    PS if you are getting some checkmarks, I would assume that this would preclude a graphics issue
    PPS are the unmarked Assets showing as Off-Line?

  • What is an easy web-page creation program for use with MacBook Pro?

    Can anyone suggest an easy web-page creation program for use with MacBook Pro?  I have used FrontPage with my PC, but am changing to a MacBook Pro.

    It largely depends on your skill level. Do you want to write web page code, or do you want to just design something and have it turn into a web page automatically?
    If you are more of a designer, try these:
    RapidWeaver
    Freeway Pro
    Muse
    If you want to write web page code, try these:
    Coda
    BBEdit
    Dreamweaver
    If you really don't want to write the code and want the best experience for your viewers, and you want to spend the least amount of time on it, my recommendation is:
    No program at all.
    Instead, sign up with a web site company like:
    WordPress.com (hosted by them) or WordPress.org (hosted on your server)
    Squarespace
    Wix
    The reason is that these companies have fully operational, nicely designed web site templates that you just fill in with your words and pictures, and they are ready to go. They also give you these benefits:
    Already designed to the latest web standards
    Already designed to resist hackers
    Already designed to work on all browsers
    Already designed to automatically adjust the page for readability on desktop, laptop, tablet, and smartphone screen sizes
    Already designed for accessibility
    Already designed for Search Engine Optimization so that your page will be found on Google
    Already designed with social media links built in if you want
    It is not like the old days where you build a site in Front Page and you assume it will only be seen on a desktop computer. If you build it yourself with a web page program, do you have the knowledge to make a site that works on all of the different web browsers and mobile devices, and is friendly to search engines and social media? If you don't have those skills, working with a website company can be a lot better, faster, and more reliable than trying to hammer all of that out yourself using code in some app.

Maybe you are looking for

  • On F4 , POP up details  on screen,

    hi all, I have a senario where in i have a screen containing fields Po document(ebeln),and PO item (ebelp) no other than that i have material no(matnr) ,supplier(lifnr) and transporter(lifnr) . now the issue is , i have a text field by the name get p

  • Small office file server options

    Hi all, I'm having a nightmare getting decent answers from the web and businesses about this, so thought I'd try the forum.. Here is our situation, We are a small business with 2 mac mini's, 2 macbook laptops and another macbook pro laptop who is rem

  • Filter plugin. Problem after change image depth.

    Hi All ! I already wrote filter plugin it work fine but only for image depth 8bit, after i change image depth on 16 or 32 bits I getting error msg box from photoshop. I try change on 'destination.colBits = 8' or 'destination.colBits = pChannel->depth

  • DVD player not working w/specific DVD

    I have one specific DVD that is giving me trouble. It's one of a set, and all the others play fine. When I insert this particular DVD (it looks totally clean, scratch free) it starts to play from the beginning and will not stop. The program goes into

  • Rebate basis

    Dear All, 1)For rebate processing,  rebate basis step maintained in pricing procedure with subtotal 7. I would like to know whether this step is necessary to calculate for rebate processing.( I think the function of rebate basis step is, it subtracts