LSMW to Load - Equipment Task List/Operations/Inspection Characteristics

Hello Experts,
  Any suggestions on standard LSMW load program for this. The Standard batch Input - 0470/IBIP program does not have the option to load Maintenance Package and Inspection characteristics.
Any other suggestions please.
Thanks

Hi Ananthram,
instead of using the standard batch input program, you could also create a new recording that performs exactly the tasks you need. Mark "Batch-input-recording" and click on Overview. From there, you can start recording your transactions.
I hope this helps and solves your issue.
Marc

Similar Messages

  • Equipment task list operation view by LSMW

    Hi Experts,
    We are uploading equipment task list and operation view and characteristic thru LSMW, .
    I want  to create LSMW for Equipment task list operation view and characteristic view.
    Can anybody explain the step by step process involved in this.
    ST

    Hi,
    Execute the transaction LSMW. Create Project, sub project and object which your company following with naming convention
    Click F8, in the next screen Under MAINTAIN OBJECT ATTRIBUTES, Choose Radio button Standard Batch/Direct Input
    and enter following
    This is one method you can do
    Or
    you can also use RECORDING method
    create Recording, system will prompt for Transaction code, enter IE01 and execute
    system will lead to IE01 transaction where you have to enter some test data ( dummy data ) for all your operations and characteristic view and save it
    This data is save under Recording as default data.
    Whatever the fields you have populated should be your source fields and you have to relate them with standard Fields and their lengths from ITOB table
    Specific the field either as Excel or Text field
    and try to proceed further
    please execute the above and let forum know if you held up at any step
    regards,
    santosh

  • How to Check LT check box in IA02 - for Long text for Equipment Task list operations

    Hi Experts,
    I am trying to upload text for Equipment task list,i am able to upload texts at header,but not for operations.
    At operations level - we have a check box LT which is grayed out - when am manually making an entry ( LT Check box -  is getting checked when am creating entry manually ) - after manual entry - when i tried uploading text is working fine.
    Can someone please tell me how to get the check box - checked - while saving text - using FM : SAVE_TEXT .
    Cheers,
    Rali K

    Try this:
    function findNodes(vNode){
         if (vNode.className === "field"){
              if (vNode.isPropertySpecified("name")===true){
                   var myStateName=new RegExp(vNode.name);
                   var returnValue = GFL.search(myStateName);
                   if (returnValue!=-1){
                        this.ui.oneOfChild.border.fill.color.value="192,192,192";
                        this.access="readOnly";
                   else{  
                        this.ui.oneOfChild.border.fill.color.value="255,255,255";//whatever colour is open access
                        this.access="open";
         for (var a=0;a<vNode.nodes.length;a++){
              findNodes(vNode.nodes.item(a));
    findNodes(xfa.form);
    Kyle

  • Equipment Task List

    Hi PM Experts,
    I have a general doubt in PM task list.
    When I open a Equipment task list with transaction IA03, and go to the components assigned to an operation.
    There i can see  a field "Holder" ... can someone please explain to me what is this "Holder" field.
    Actually when i copy this routing to create another counter, the "Holder" is not getting copied.
    Please Help.
    Thanks,
    Rohit

    Hi,
    There i can see a field "Holder"
    I'm not aware of that field. Maybe it is a custom field or belongs to some IS-functionality. What is the field name (F1 - Technical information)  ?
    -Paul

  • Unable to reset sample for the equipment task list.

    Unable to reset sample for the equipment task list. Example: Equipment task list has been created on 01.10.2007 & inspection lot is created on 10.12.2007 which requires the changed in the inspection characteristics

    Hi Sandeep,
    You may change the Inspection charecterstucs and save the Task List.
    After that u have to reassign that task list to the Lot. for that Trasaction code is QAC3 give the lot no. and enter
    , without doing anything save it. now go to QA02 and reassign the task list and sampling procedure. and save it.
    Now u may do RR as per ur new charecterstics.
    Regards,
    Neeraj Bhadauria

  • PM Module - Equipment Task LIST

    Hi All,
    Please help me for the PM MODULE.
    I want to change the following things in SAP
    IA02 -Equipment Task List i want to change the "Header Cost Center" & Operation "Cost Center"
    Is there a standard TOOL in which my INPUT parameter should be "Equipment NO"

    is this the correct forum

  • Standard test error in the task list operations

    Hi Friends,
    We made a Z program in such a way that Task list operation long text through standard text key (CA10) will get updated automatically for
    those associated operations, but the problem we never observed that program is overwriting the
    standard text key entries on the operations while updating the long text, and unfortunately
    it went to the production environment and it has been keep on executing the
    program for last 3 months and suddenly we came to know that there is bug in the
    code.
    My main intention is how to trace till now how many reports
    got corrupted and how to restore back those records which were effected in PRD environment.
    Regards,
    Srinika

    Greetings Srinika,
    I assume that the Z-program enters the Task List and re-enters the Standard Text Key KTSCH, does it call the standard transaction IA12? Maybe a good place to start is to see whether the Change Documents had been saved. Does the Z-program run as batch, as a particular user?
    Query the table CDHDR on the object PLAN, then based on the Object & Document numbers query CDPOS. You can get the Task List & Operations from CDPOS field TABKEY.

  • Upload Task List Operation long Text using SAVE_TEXT-Urgent

    Hi ,
    I am trying to create Task List Operation Long text using the function module ..
    SAVE_TEXT .I am passing the following keys
    Text Name       300ATEST057 0000000900000009
    Language        EN
    Text ID            PLPO Long Text
    Text Object     ROUTING    Texts for task list types
    But the long texts are not getting updated in the Task lists operations .
    Can anyone please suggest whether SAVE_TEXT will work for Operation long Texts or not Are we missing something
    .This is pretty urgent requirement .Award points are assured.
    Regards
    Sam

    hi,
    use function module create text
    check the sample code
    DATA: BEGIN OF itab OCCURS 0,
          asnum LIKE asmd-asnum, " Service No
          text(5000)  TYPE c, " Long Text
          END OF itab.
    *DATA: itab1 LIKE itab OCCURS 0 WITH HEADER LINE.
    DATA: BEGIN OF itab1 OCCURS 0,
          asnum LIKE asmd-asnum, " Service No
          sequ  type i,          " Text Sequence
          text(5000)  TYPE c, " Long Text
          END OF itab1.
    To create Long Text lines for CREATE_TEXT function module
    DATA:BEGIN OF dt_lines OCCURS 0.
            INCLUDE STRUCTURE tline. " Long Text
    DATA:END OF dt_lines.
    Variable declarations for CREATE_TEXT function module
    DATA : dl_name TYPE thead-tdname, " Object Name
           dl_lan TYPE thead-tdspras. " Language
    Constants
    Object ID for Long Text of Service Master
    CONSTANTS:c_best TYPE thead-tdid VALUE 'LTXT',
              c_material TYPE thead-tdobject VALUE 'ASMD'. " Object
    for file splitting.
    DATA: start TYPE i,
          len   TYPE i VALUE 92,
          totlen TYPE i,
          n TYPE i.
    PARAMETERS p_file LIKE rlgrap-filename."input file
    At selection-screen on Value Request for file Name
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
    Get the F4 Values for the File
      CALL FUNCTION 'F4_FILENAME'
        EXPORTING
          program_name  = syst-cprog
          dynpro_number = syst-dynnr
        IMPORTING
          file_name     = p_file.
    Start Of Selection
    START-OF-SELECTION.
    *To Upload Flat file
      CALL FUNCTION 'UPLOAD'
        EXPORTING
          filename                = p_file
          filetype                = 'DAT'
        TABLES
          data_tab                = itab
        EXCEPTIONS
          conversion_error        = 1
          invalid_table_width     = 2
          invalid_type            = 3
          no_batch                = 4
          unknown_error           = 5
          gui_refuse_filetransfer = 6
          OTHERS                  = 7.
      LOOP AT itab.
        itab1-asnum = itab-asnum.
        CLEAR: totlen,n, start.
        totlen = STRLEN( itab-text ).
        n = totlen / len.
        n = n + 1.
        DO n TIMES.
          itab1-text  = itab-text+start(len).
          itab1-sequ  = sy-index.
          start = start + len.
          APPEND itab1.
        ENDDO.
      ENDLOOP.
      delete itab1 where text is initial.
      SORT itab1 BY asnum sequ.
      LOOP AT itab1.
        dt_lines-tdformat = '*'.
        dt_lines-tdline = itab1-text.
        APPEND dt_lines.
    Call the Function Module to Create Text
        AT END OF asnum.
          dl_lan = sy-langu.
          WRITE : / itab-asnum.
          CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
            EXPORTING
              input  = itab1-asnum
            IMPORTING
              output = itab1-asnum.
          MOVE itab1-asnum TO dl_name.
          CALL FUNCTION 'CREATE_TEXT'
            EXPORTING
              fid         = c_best
              flanguage   = dl_lan
              fname       = dl_name
              fobject     = c_material
              save_direct = 'X'
              fformat     = '*'
            TABLES
              flines      = dt_lines
            EXCEPTIONS
              no_init     = 1
              no_save     = 2
              OTHERS      = 3.
          IF sy-subrc <> 0.
            WRITE:/ 'Long Text Creation failed for Service No'(001),
            itab1-asnum.
          ELSE.
            WRITE:/ 'Long Text Created Successfully for Service No'(002),
            itab1-asnum.
          ENDIF.
          REFRESH dt_lines.
        ENDAT.
      ENDLOOP.
    in text file give first field records in capitals
    regards
    siva

  • PM Task List Operations - Export to Excel

    Dear Gurus,
    I would like to export the task list operation to excel file for further analysis by client (maintenance personals).  How can i export all operations in a task list to a excel file.
    thanks in advance

    Hi Yogaraj,
    Run the transaction SE11 and enter table name as PLPO as said by Rakesh.
    Here in you can restrict the operation list with repsect your task list group number and execute.
    After executing you can download the task list list details to local file.
    Sundar

  • Sample functional specifications - Equipment task list?

    The earlier post of Teja provoked me to look into the other sample specifications provided in the ****************. The one I looked into is the equipment task list. I have a doubt here. I assume that the equipment is also a material. So why are equipments handled in a different way than to the other materials (using MM01/2 transactions)?
    Raghu

    Hi,
    Please check the following information from SAP help portal:
    Number Assignment for Equipment Task Lists and Functional Location Task Lists
    Numbers for equipment and functional location task lists are assigned internally. When you have created an equipment or functional location task list, the system issues a message with the number it has assigned to the task list. The first task list you create for a specified piece of equipment or functional location will be identified by a group number and a counter number. Further task lists for the same piece of equipment or functional location will simply be identified by a counter number within the group.
    Best regards,
    Stephen
    Number Assignment for Maintenance Task Lists - Task Lists (CS-AG/PM-PRM-TL) - SAP Library

  • Equipment BOM and Equipment Task List

    Hi
    I have created an Equipment BOM (IB01) and Equipment TL (IA01). When creating a WO using IW31 why doesn't the TL and BOM get copied across?
    Regards
    Adeel

    While doing maintenance for equipment (creating order in IW31), its not necessary that all the operations in task list & all the materials from BoM should be used.
    Based on the maintenance, you can select the operations from task list & you can select the components.
    In order, go to Extras => Task list selection => Reference object. It will list the task lists available for the equipment, from that you can select.
    For components, in components tab, there will be structure button. Click that, it will show you the BoM created, from that list, select required components.
    Note: Only in Production order, all the operations from Routing & all components from BoM will be copied. This is because for production order, all the operations & components are required to produce the finished product.

  • Fields in the Task List -- Operation Overview

    Dear Expert,
    There are few fields in the operation Overview of the Task List -
    >> if we move ahead in each n evry operation -- fields like Material Grp, Cost element and Assembly....n lot more. plz tell me the appropriate use of the same.(If any)
    plz guide
    thanks
    DM

    hi deepak
    As you know task list is ued for easy uplaoding of operation and materials ,in tak list you can maintain internal and external operation ,hence for both the operation you will give the appropiate necessary fields.like for PM02 you will assingn the purchasing grp,cost element,material grp
    regards
    thyagarajan

  • Creating a query for task list operations

    hello all
    I checked the forum for similar questions but could not find any.
    I am trying to create a task list for the following:
    1) specific plant
    2) generic task list
    3) specific group counter
    4) specific operations type (filtered by control keys)
    in the display I also include the dependencies of the operations.
    I also need to link the task list to a specific class and extract the characteristics value from the class, based on the task list (I think this is better with infoset: if so, in a second stage).
    I am using tables
    1)PLKO and PLPO joined by PLNTY and PLNNR
    2) CUOB, joined to PLPO by KNOBJ and CUKB joined to CUOB by KNNUMfor the dependencies
    the results tho, gave me operations that did not exist in the task list so I discovered that there were change masters to the task lists and I added table AENR, outer joined to PLKO by AENNR where I excluded inactive changes.
    I still do not get correct results.
    I do not get all the active change masters related to a task list, I do not manage to get the task list without changes and also the related operations and dependencies are not correct.
    can someone help?

    Hi alisa,
    Onethng was not yet touched upon in the discussion sofar. If you are not getting all the records those should come, then you need to try LEFT OUTER JOIN  between tables by trial. (Trial means LOJ is not accepted on adjacent tables.) I hope you know that the default connection between fields of 2 tables in through INNER JOIN.  You need to right click on this line and select LOJ for making it LOJ. This brings you all the records which are being filtered due to IJ (if any).
    Try this, if you haven't done already.
    KJogeswaraRao

  • Task list usage inspection plan - Universal 3 and GR 5

    Dear Friends,
    while creating Inspection plan for GR inspection from Procurment it is advisable to use Task list usage 5 or usage 3 which is universal
    may i know what is the difference
    Please advise also
    There is task list type  Goods receipt model  -    501  which  is Material, vendor and manufacturer what that mean and where it  is used
    Thanks & Regards
    Raj

    Hi Rajkumar,
    While planning an Inspection,which Task List gets assigned to which Inspection Lot is linked through combination of TaskList Usage and Lot Inspection Type
    In spro (at the location as suggested above) we assign TaskList usage to the Inspection Type. When any Lot is created based on the setting in QM view of MM, it looks for this link for automatic assignment to the lot.
    For your question "while creating Inspection plan for GR inspection from Procurment it is advisable to use Task list usage 5 or usage 3 which is universal"; both options will work as long as the above config in spro is maintained.
    It is however advisable to use the standard option of TaskList Usage of  05 as it is easier to segregate and analyse TaskList / Inspection Plans based on their usage; in case any need arises.
    Hope this helps,
    Thanks,
    RKM.

  • Routing-LSMW-Component Allocation to task list

    Hi Gurus,
    I'm creating LSMW to Routing using Standard-Batch Input method, have mapped the required structures.
    But I was unable to map the Component allocation to task list.
    Is it possible in the standard one else I need to go for some sort customisation.
    Can anybody throw some lite on this issue ?
    regards
    Ram Kumar

    Hi,
    You will find BIPMZ Batch input structure for component allocation to task list in the standard structure relations (no customizing required). Use the same for your need.
    Hope it clarifies your query.
    Regards,
    Vivek

Maybe you are looking for