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

Similar Messages

  • 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

  • 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

  • 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

  • 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

  • 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

  • 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

  • Problems while uploading Task List - Service Pack with LSMW

    We are trying to upload General Maintenance Task List using LSMW. We are using Standard Batch/Direct Input method with Object 0490.
    We need to upload task list header, operations, maintenance pack, component and service pack for operations.
    We have created separate files containing data for different structures and they are linked using Group, group counter and operation number according below
    Header
    |----Operations
    .......... |----Long Text
    ..........|----Maintenance Pack
    ..........|----Components
    ..........|----Service Pack
    We have multiple operations per task list and multiple services per operation. The service pack is required only for a specific control key - PM03.  As per the configuration this screen (PROGRAM - SPLMLSP, Screen Number - 0200) is accessible only when the value PM03 is entered in the operation. We are able to upload all other details except service pack details. We have tried using structure IBIPBDCD for the same.
    While uploading the task list in foreground, when control key is entered as PM03 in an operation, service pack screen is displayed with error u201CNo batch input data for screen SAPLMLSP 0200u201D. The data provided in structure IBIPBDCD does not get processed at this time.
    On exiting the screen using back button, the data in IBIPBDCD structure is passed incorrectly to fields in screen 3400 (SAPLCPDI)
    Are we doing something incorrect? Is there a way to use this standard functionality to upload task lists with service packs?
    Thanks
    Edited by: jvalitp on Dec 15, 2011 12:46 PM

    Hi,
    When loading the tasklists you need to define a source structure as per the IBIP structure. You have different levels for example level 1 - header then below that level 2 - Operations, Header Long text then below that you have level 3 - Operation Long text, Operation Package assignments, operation component allocation.
    For each of these levels you need an identifier that links then together. In your source file specify identifier 1 for header, Identifier 1 and Identifier 2 for operations, identifier 1 identifier 2 and identifier 3 for packages. This way the system can create the correct structure when it reads the data from the text file.
    The identifiers are numeric and will dissapear once the files are loaded. specify then in the source structure as 2 characters and remember to set the xcel file up to have a 2 character field.
    For the header file each line will be a new identifier 1,2,3,etc.
    The operations are assigned to the header and have 2 identifiers. The first corresponds to the header identifier the next is a sequential number stating at 1 and incrementing for each line e.g Header 1 op 1, header 1 op 2, header 2 op 3, header 2 op 4, header 2 op 5 (this would be 2 header records. The first with 2 operations on it the second with 3 operations)
    The package is assigned to the operation and as such needs to have a third identifier. Header (identifier 1), Operation (identifier 2), Package (identifier 3) Example Header 1 op 1 pack 1, header 1 op 2 pack 2, header 2 op 3 pack 3, header 2 op 4 pack 4, header 2 op 5 pack 5
    I have a loading file for each of the items i.e. Header file, Operation file, maintenance package file. This is then assigned to the respective source structure.
    Regards,
    ravi

  • 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

  • Problem with numbering of general task lists by creation thru LSMW - (IA05)

    I'm using a sequencial file to create general task list thru LSMW (Object 0490 which corresponds to TCode IA05).
    The numbering range for general task list groups is internal. I executed batch input and it works pretty well with the first general task list group, but every next fails, because the number of the previousy created task list stays in the user buffer and apears in the PLNNR field, so the system assumes I'm trying to create a new group counter instead of new general task list group.
    I explicitely set IBIPTLST-PLNNR = '' in field mapping - still the same problem. I also set user parameter PLN to be empty in SU3 and still no luck. I even turned off the historic data in local data tab of SAPGui, but the problem persist.
    Can anyone tell me how can I achieve it without changing the numbering range to external?

    Hi,
    From IBIP Help:
    Initial fields
    As a general rule, initial fields in structures are not transported into the corresponding screen field. In other words, fields that are blank are ignored. If you explicitly want to reset a field to the value "<blank>", you must mark the field in the batch input structure with the value !. This is the reset indicator, and means that a field is to be reset to its initial value.
    Try setting IBIPTLST-PLNNR to !
    -Paul

  • 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

Maybe you are looking for

  • XSLT Code not working

    Hi All, I am doing on XSLT Mapping. It is having a lookup. Lookup is working fine and I am getting data back in one variable say 'Var1'. Now in my mapping all the field are mapped one to one from source to target except one field say "lookup' and I a

  • Accessing method in application from a component

    I need to access a public method in actionscript by a component that is a child of the application.mxml file. How can I do that? Ive tried this.methodName (but "this" only refers to the parent container) Ive tried "Application.methodName" but that do

  • Aperture library not showing in mail, iweb or iphoto

    After upgrading to 3.1 my Aperture Library is not coming up in other applications. It also is not showing up as an option for screen saver. Anyone have this issue?

  • Blank first page of pdf

    Diadem 2012 I've had a recurring issue which I've l lived with for quite a while and have not been able to narrow down what causes it. Sometimes a report exported as a PDF has a blank page 1 (missing what should be on page 1 - I only see a black bord

  • Multi vlaued attribute in IDM Schema Configuration

    The IdM docs - states Optionally, an IDMAttributeConfiguration can specify whether the attribute is multivalued, and can provide a display name (currently not used), and a description.http://docs.sun.com/source/820-2961/A_edit_configObjects.html#wp19