Reqmts profile in equipment master & Logbook functionality

Hi experts,
I am working in ECC 6 version, EHP4 where I am looking one filed in equipment master called "Reqmts profile" Anybody please explain the significance of this field & also how to use logbook in PM module.
Thanks in advance
rgds
rajib

Hi
question1:
  Requirment profile is used if specific skill set/specilization  is required for carring out the certain maintenance activity.
during this case requirment profile is maintained.
say example electrical maint: skill set will be technican with xyz certification is essential...etc....and assinged to technician who all having this skill set. then you can able to pull out all the technician who all having this skill set.
this is how it works.
question2: I have not worked lets other experts can answer this
regards
Krishna jois

Similar Messages

  • Deleting user status profile in equipment master

    Hello experts,
    can anyone tell if it's possible to delete a user status profile. Once we used an user status profile in an equipment i cannot find i way to delete or change the profile to another profile.

    Hi,
    You can only change the user status profile in the equipment provided no status value has been set. Once a status value is set (maybe as intital status) the field is closed for input and no change can be made to the profile.
    -Paul
    Please use [Enterprise Asset Management (EAM)|Enterprise Asset Management (SAP EAM); forum for PM/CS specific topics

  • Interface between Legacy and SAP for Equipment Master

    Hello
    I got a requirement where I need to develop a interface between legacy system and R/3 system for Equipment Master Data update in R/3. I am thinking of getting a Idoc file from Legacy and then update the changes or any new creation of Equipments in R/3. I found a standard BAPI for this BAPI_EQUIPMENT_CREATE/CHANGE. This BAPI use a strcture BAPI_ITOB for data record of IDoc. But I got more data from legacy except what we have in BAPI_ITOB. I got Partner Data, Classification data also for Equipments. I am thinking of copying the BAPI to a Z function module and modify the Idoc structure , message type and all to capture all the data and then do a update in same way as standard transaction IE01(Equipment Create) is doing in Batch Input. Do you think if there is any better way of doing this? I am not used to transaction BAPI . just wondering if we Can use that in someway to include our modification?
    Thanks
    Harkamal

    20,000 is on quite higher side for IDOC.
    IBIP help doc says it needs 2 Kbyte for each record, i.e. 40 Mb for 20,000 rec. that should be ok. Since it has structures for Partner & classification data , I don't think u need to modify the BAPI.
    Transaction IE01 - Create equipment
    Transaction IE02 - Change equipment
    Structure - IBIPEQUI Equipment record
                     |->    IBIPNSTA     New status profile if necessary
                     |->>   IBIPSTAT     User status records
                     |->>   IBIPDOCU     Doc. from Doc. management system
                     |->>   IBIPPART     Partner details (comment below)
                     |-->>  IBIPTEXT     (see comment below)
                              for long text:          TEXT_MARK = " " empty
                              for internal comment:   TEXT_MARK = "1"
                     |-->>  IBIPCLAS    Classification record (eqpmt class)
                         |-->> IBIPFEAT     Classification characteristics,
                                               ie. features for the class
                     |-->>  IBIPBDCD     see below (from screen 102)

  • Enhancement for Equipment master data

    Hi all
       I want to find an enhancement for Equipment master data. I want to add some customer fields to Equipment data,but i can't find the enhancement.Anybody tell me the Enhancement which be useful for that. thanks.
    BR
    Chris.

    Hi,
    you can add new tab on the screen and provide your custom field on that tab. You have to add a new tab for any Technical Object by doing some configuration changes in SPRO. first go to SPRO and in screen sequences add a new tab sequence against the profile. Now in the function group SAPLXTOB you can see this new tab screen. Do your requirements on this screen.
    Reward if useful and get back to me if you need any help.
    Thanks,
    Anil

  • Creation of Equipment master throught Emigall

    Hi Fritz,
    Good Day!
    I need to create a Emigall object for Equipment Master, which we can't
    handle in LSMW because of the volume of data, I am using the same object as
    used for Device of ISU.
    The object name is EQUIPMENT in company ZISU. I have used those fileds only
    which are required to create a equipmetn master in STW. While uploading the
    data I am getting an error " Enter a valid device category" which is a
    device category of ISU.
    Can we do this or do we need to create some other customization in this case
    Thanks for your support Fritz.
    Regards,
    Robert.

    Robert,
    I did some research. Please confirm you are referring to the data as copied below from the documentation.
    Kind regards,
    Fritz
    Definition
    Partners (business partners) are internal and/or external organizational units. For example, internal partners can be logistics and sales departments that perform services. External partners can be customers as service recipients and vendors as supporting service providers. A partner can be a natural or a legal entity. You can use partners in CS- and PM processing.
    The following partner types are delivered with the Standard System:
    Customer
    Contact person
    Vendor
    User
    Personnel number
    Organizational unit
    Position
    Partner Function
    You define partner functions in Customizing for Plant Maintenance and Customer Service. They are freely definable and always refer to a partner type. Standard functions exist (for example, goods recipient) and you can also define your own functions.
    Partner Determination Procedure
    The partner determination procedure is a grouping of partner functions. It specifies which partner functions are permitted or must always be specified for a particular business transaction (for example, for the processing of a service or maintenance order). In Customizing you define the partner determination procedure and assign partner functions to it. If functions are assigned to the partner determination procedure, you can assign the partner determination procedure to an object (for example, to a notification type).
    Integration
    You can assign partners to the following objects: Functional location and equipment

  • How to Use PM BAPI for equipment Master upload : BAPI_EQUIPMENT_SAVEREPLICA

    Hi ,
      How to use PM BAPI for equipment Master upload : BAPI_EQUIPMENT_SAVEREPLICA.
      May i know what are the input parameters & fields mandatory
      for each Table structures ct_data , ct_datax , it_descript , it_longtext.
      Can any one explain me Step by Step Process.
      B'cos i tried with below code. Equipment is not getting created.
      wa_itab-equipment_ext = '000000000100000001'.
      wa_itab-descript      = 'Test 2 -> Lube Oil Pump'.
      wa_itab-text_language = 'EN'.
      wa_itab-sdescript     = 'Short Description'.
      APPEND wa_itab TO it_itab.
      CLEAR  wa_itab.
      LOOP AT it_itab INTO wa_itab.
        ct_data-ta_guid       = '000000000000000001'.
        ct_data-equipment_ext = wa_itab-equipment_ext.
        ct_data-descript      = wa_itab-descript     .
        ct_data-valid_date    = sy-datum.
        ct_data-equicatgry    = 'M'.
        APPEND ct_data.
        CLEAR  ct_data.
        ct_datax-ta_guid       = '000000000000000001'.
        ct_datax-equipment_ext = 'X'.
        ct_datax-equipment     = 'X'.
        APPEND ct_datax.
        CLEAR  ct_datax.
        it_descript-ta_guid       = '000000000000000001'.
        it_descript-text_language = wa_itab-text_language.
        it_descript-descript      = wa_itab-sdescript    .
        APPEND it_descript.
        CLEAR  it_descript.
        it_longtext-ta_guid        = '000000000000000001'.
        it_longtext-text_language  = wa_itab-text_language.
        it_longtext-text_id        = 'LTXT'.
        it_longtext-text_line      = 'SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS'.
        APPEND it_longtext.
        CLEAR  it_longtext.
        it_longtext-ta_guid        = '000000000000000001'.
        it_longtext-text_language  = wa_itab-text_language.
        it_longtext-text_id        = 'INTV'.
        it_longtext-text_line      = 'aaaaaaaaaaaaaaa'.
        APPEND it_longtext.
        CLEAR  it_longtext.
        it_longtext-ta_guid        = '000000000000000001'.
        it_longtext-text_language  = wa_itab-text_language.
        it_longtext-text_id        = 'INTV'.
        it_longtext-text_line      = 'bbbbbbbbbbbb'.
        APPEND it_longtext.
        CLEAR  it_longtext.
        it_longtext-ta_guid        = '000000000000000001'.
        it_longtext-text_language  = wa_itab-text_language.
        it_longtext-text_id        = 'INTV'.
        it_longtext-text_line      = 'cccccccccccccccc'.
        APPEND it_longtext.
        CLEAR  it_longtext.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
      call BAPI-function in this system
        CALL FUNCTION 'BAPI_EQUIPMENT_SAVEREPLICA'
          TABLES
            ct_data     = ct_data
            ct_datax    = ct_datax
            it_descript = it_descript
            it_longtext = it_longtext
            return      = return
          EXCEPTIONS
            OTHERS      = 1.
        IF sy-subrc = 0.
          CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
          WRITE : 'Successful'.
        ENDIF.
        IF NOT return IS INITIAL.
          LOOP AT return.
            IF return-type = 'A' OR return-type = 'E'.
              WRITE : 'Error'.
            ENDIF.
          ENDLOOP.
        ENDIF.
        REFRESH  return.
      ENDLOOP.
    Regards
    SUrendar

    Hi ,
      How to use PM BAPI for equipment Master upload : BAPI_EQUIPMENT_SAVEREPLICA.
      May i know what are the input parameters & fields mandatory
      for each Table structures ct_data , ct_datax , it_descript , it_longtext.
      Can any one explain me Step by Step Process.
      B'cos i tried with below code. Equipment is not getting created.
      wa_itab-equipment_ext = '000000000100000001'.
      wa_itab-descript      = 'Test 2 -> Lube Oil Pump'.
      wa_itab-text_language = 'EN'.
      wa_itab-sdescript     = 'Short Description'.
      APPEND wa_itab TO it_itab.
      CLEAR  wa_itab.
      LOOP AT it_itab INTO wa_itab.
        ct_data-ta_guid       = '000000000000000001'.
        ct_data-equipment_ext = wa_itab-equipment_ext.
        ct_data-descript      = wa_itab-descript     .
        ct_data-valid_date    = sy-datum.
        ct_data-equicatgry    = 'M'.
        APPEND ct_data.
        CLEAR  ct_data.
        ct_datax-ta_guid       = '000000000000000001'.
        ct_datax-equipment_ext = 'X'.
        ct_datax-equipment     = 'X'.
        APPEND ct_datax.
        CLEAR  ct_datax.
        it_descript-ta_guid       = '000000000000000001'.
        it_descript-text_language = wa_itab-text_language.
        it_descript-descript      = wa_itab-sdescript    .
        APPEND it_descript.
        CLEAR  it_descript.
        it_longtext-ta_guid        = '000000000000000001'.
        it_longtext-text_language  = wa_itab-text_language.
        it_longtext-text_id        = 'LTXT'.
        it_longtext-text_line      = 'SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS'.
        APPEND it_longtext.
        CLEAR  it_longtext.
        it_longtext-ta_guid        = '000000000000000001'.
        it_longtext-text_language  = wa_itab-text_language.
        it_longtext-text_id        = 'INTV'.
        it_longtext-text_line      = 'aaaaaaaaaaaaaaa'.
        APPEND it_longtext.
        CLEAR  it_longtext.
        it_longtext-ta_guid        = '000000000000000001'.
        it_longtext-text_language  = wa_itab-text_language.
        it_longtext-text_id        = 'INTV'.
        it_longtext-text_line      = 'bbbbbbbbbbbb'.
        APPEND it_longtext.
        CLEAR  it_longtext.
        it_longtext-ta_guid        = '000000000000000001'.
        it_longtext-text_language  = wa_itab-text_language.
        it_longtext-text_id        = 'INTV'.
        it_longtext-text_line      = 'cccccccccccccccc'.
        APPEND it_longtext.
        CLEAR  it_longtext.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
      call BAPI-function in this system
        CALL FUNCTION 'BAPI_EQUIPMENT_SAVEREPLICA'
          TABLES
            ct_data     = ct_data
            ct_datax    = ct_datax
            it_descript = it_descript
            it_longtext = it_longtext
            return      = return
          EXCEPTIONS
            OTHERS      = 1.
        IF sy-subrc = 0.
          CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
          WRITE : 'Successful'.
        ENDIF.
        IF NOT return IS INITIAL.
          LOOP AT return.
            IF return-type = 'A' OR return-type = 'E'.
              WRITE : 'Error'.
            ENDIF.
          ENDLOOP.
        ENDIF.
        REFRESH  return.
      ENDLOOP.
    Regards
    SUrendar

  • 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

  • Creation of equipment master automatically with grn.

    H gurus
    Is there any way to creat automatically equipment master while doing GRN.?
    This is cliants requirement.
    Regards,

    hi
    you can create equipment master record automatically provided you have assigned serial no profile to the material master and the serialization procedure which allows the equipment master to be created automatically
    regards
    thyagarajan

  • Restrict Equipment Master (with serial numbers) creation

    Hello All,
    I am faced with an issue where the client will be using Serial Numbers for 2 sets of materials. I have assigned a Serial Number profile to these materials in Material Master.
    I am able to create equipment master data for these materials with serial numbers without any issue.
    However, I am also able to create equipment master data (with serial numbers) for materials to which I have not assigned a Serial Number profile.
    Is there a way to restrict the creation of equipment master data (with serial numbers)  to only those material that have a Serial Number profile assigned in material master data...?
    Thanks
    Jensi

    Thanks for the reply Amuthan.
    Unlike what you wrote in the reply, the system does allow me to create/save a equipment number for those serial numbers that I assign to materials that do not have a serial number profile.
    Is there any validation, any check or something of that sort that I can activate so that the system will prevent assignment of serial numbers (and in turn creation of equipment master data) for those materials which do not have a serial number profile assigned in the material master data?
    Thanks
    Jensi

  • Help requested on Procedure to Archieve Equipment Master Data

    Hello SAP Gurus,
    We have a requirement to Archive the Equipment Master data in SAP 4.7 system that run on Linux platform with Oracle 10g database. Can anyone of you please guide us with any links or documents which would detail the step by step process on how to do it and what are the consideration that have to be taken in to account.
    Any How To document with step by step process would be of great help as we have not this task before.
    Regards
    Murali

    Thank you for your suggestion
    I was trying to archieve one equipment data in our sandbox system. My functional consultant has set the deletion flag on equipment to be deleted and then we are trying to run SARA tcode for Object PM_EQUI and defined variants needed.
    Preprocessing went through fine next we had run Write Job that too completed successfully and there was a archive session created as well.
    when go to configure Delete in SARA it is showing that there is no data to be selected .  when I look in to CCMS archieve monitor in tcode SAR_SHOW_MONITOR this shows as -  No Method Method assigned !!
    Can you please suggest what can be the issue ? I am clue less as this was my first experience with SARA Tcode.
    Is there any howto document available that give step by step screenshot for archieving ?
    Regards
    Murali

  • In Material Master Screen,functionally what is BAckward Consumption period

    In Material Master Screen,functionally what is BAckward Consumption period & Forward Consumption period in the MRP Screen.Pls explain its functionality

    Hi,
    The safety time / actual range of coverage ensures that the planned warehouse stock covers the requirements of a defined number of days. It therefore serves as a time float and thus works alongside the safety stock, which acts as quantity float.
    The system simulates bringing the requirements forward by the specified number of days and the planning for the receipts, created for these requirements in the planning run, is also brought forward by this number of days.
    Prerequisites
    ·   You have set the Safety Time indicator in the material master record (MRP 2 View) to define whether the safety time is only to apply to independent requirements or to all requirements.
    ·    In the material master record (MRP 2 View), in the Safety Time/Actual Range of Coverage field, you have entered the number of workdays by which the requirements are to be brought forward.
    ·    If, in addition to this actual range of coverage, you also want to define a different number of workdays in certain periods or a safety time less than one day then, in Customizing for MRP in the activity Define Period Profile for Safety Time/Actual Range of Coverage you can define a period profile and assign it to the material in the material master record.
    Regards,
    Vijay

  • In Material Master Screen,functionally what is Requirement Group in the MRP

    In Material Master Screen,functionally what is Requirement Group in the MRP Screen.Pls explain its functionality

    Hi,
    The safety time / actual range of coverage ensures that the planned warehouse stock covers the requirements of a defined number of days. It therefore serves as a time float and thus works alongside the safety stock, which acts as quantity float.
    The system simulates bringing the requirements forward by the specified number of days and the planning for the receipts, created for these requirements in the planning run, is also brought forward by this number of days.
    Prerequisites
    ·   You have set the Safety Time indicator in the material master record (MRP 2 View) to define whether the safety time is only to apply to independent requirements or to all requirements.
    ·    In the material master record (MRP 2 View), in the Safety Time/Actual Range of Coverage field, you have entered the number of workdays by which the requirements are to be brought forward.
    ·    If, in addition to this actual range of coverage, you also want to define a different number of workdays in certain periods or a safety time less than one day then, in Customizing for MRP in the activity Define Period Profile for Safety Time/Actual Range of Coverage you can define a period profile and assign it to the material in the material master record.
    Regards,
    Vijay

  • In Material Master Screen,functionally what is Safety time and safety time

    In Material Master Screen,functionally what is Safety time and safety time indicator in the MRP Screen.Pls explain its functionality

    Hi,
    The safety time / actual range of coverage ensures that the planned warehouse stock covers the requirements of a defined number of days. It therefore serves as a time float and thus works alongside the safety stock, which acts as quantity float.
    The system simulates bringing the requirements forward by the specified number of days and the planning for the receipts, created for these requirements in the planning run, is also brought forward by this number of days.
    Prerequisites
    ·   You have set the Safety Time indicator in the material master record (MRP 2 View) to define whether the safety time is only to apply to independent requirements or to all requirements.
    ·    In the material master record (MRP 2 View), in the Safety Time/Actual Range of Coverage field, you have entered the number of workdays by which the requirements are to be brought forward.
    ·    If, in addition to this actual range of coverage, you also want to define a different number of workdays in certain periods or a safety time less than one day then, in Customizing for MRP in the activity Define Period Profile for Safety Time/Actual Range of Coverage you can define a period profile and assign it to the material in the material master record.
    Regards,
    Vijay

  • Using BAPI to upload Equipment Master (IE01)

    Hi,
    Can any one help to do below object...that i need for resume.
    Pls provide me compelete details with code or else give me guidelines  in detail to carrayout.....
    i should be thankful to you....
    •Using BAPI to upload Equipment Master (IE01). Fields that are uploaded are Equipment category, valid to date, Equip. Description, object type, Acquisition value, Acquisition date, Maintenance Plan, plan section, catalog profile. Input file is accessed from application server. Error log file is created at application server.
    with regards
    bheem

    If this is a onetime load, you can use LSMW to do this.
    Object 0400.  Must easier than writing a report from scratch.
    Albert

Maybe you are looking for