Deallocate maintenance task list from order

Dear Expert
I have attached a maintenance task list in maintenance order through Extras>> Task list selection>>direct entry.
due to some reson I want to deallocate same task list from that order.
how I can do it.????
Regards
Prasad

HI Pete
thank you so much for your reply. I tried this and when I was trying to assign same task list with same geoup counter(but modified operations)it is giving below error.
how to correct it ??
and deleting operations from order,does not remove task list  from maintenance order. it still shows under planning tab.
error Meassage
No operations available for selection in chosen funct. loc. task list PS-ADM-MAIN-A-7220-0601 12
Message no. IW615
Diagnosis
You have selected a task list to include in the maintenance order or service order.
The system can no longer provide operations for you to select from for this task list because they have all already been included in the order and the indicator One-time operation selection has been set.
System Response
Processing will not be continued.
Procedure
Remove the indicator One-time operation selection.
Regard
Prasad

Similar Messages

  • How to import a maintenance task list from external system to R3

    Is there a bapi or a fm can import the maintenance task list (equipment ,function location ,generic) from external system to R3.

    Hello,
    how to import task list to sap from external system
    Hope this helps.
    Regards, Murugesh AS

  • Example of a source file for Creating general maintenance task list

    Hi SAP Gurus,
    I need to create general maintenance task list from a source file. Reading forums i found that it is possible by using LSMW, with object 0490 and method 0000.
    However, I don't know how to associate structure IBIPTLST, IBITLOP and IBIPMAT. When i assign individual source files for each structure, and I execute LSMW, a problem appears indicating that IBITLOP don't have all the required fields from the list header.
    This is the structure propose by SAP in standar programa IBIP.
    Structure - IBIPTLST     Task list header
    |-->>  IBIPTEXT  (see comment below)
       |-->>  IBIPTLOP   Operations
    |       |-->> IBIPTEXT  (see comment below)
       |       |-->> IBIPTMAT  Material for one operation
       |       |-->> IBIPPRTS  Production resources/tools (PRT
       |                   |-->> LONGTEXT  (see comment below)
       |       |-->  IBIPMPAC  Maintenance packages (up to 32)
       |--->> IBIPBDCD (see comment below) from operation overview
    In other forums, a possible solution is to define an unique source file, that is proposed by LSMW, but i don't know how to obtain this template.
    Can you send me an excel example of how to define de input file or the steps I have to follow in order to execute an LSMW or the standard transaction IBIP?.
    My e-mail is [email protected]
    I have read all the SAP documentation, what i really need is an example.
    Thanks a lot
    Andrés.

    solved

  • Global Object Services (GOS) Attachments Deleted from Maintenance Task List

    We use the Global Object Services (GOS) Attachments function to attach Word and Excel Documents to Maintenance Task Lists (transactions IA02, IA09). Recently we noted that more than 300+ Attachments had been deleted/removed from the GOS list visible via IA03/IA09. We are at a loss for explaining how this occurred- all Attachments appear to have been deleted at once/instantaneously. We can see the underlying tables (SGOSHIST and others) still contain entries, but we do not understand why the Attachments are no longer visible in the GOS list via Maintenance Task Lists, or how the ability to access these via GOS can be restored. This is not occurring with other PM Object Attachments - only Task Lists. Any help or suggestions appreciated.

    Is it possible that there was some authorisation change in a role associated with task lists? That would be consistent with the immediate loss - but only in the task list area. Another thought - has anyone been doing any programming in the Generic Object Services Business Add-Ins (perhaps for another module?) - They might have inadvertently clobbered your use?
    Do you use the GOS notes functionality? Does that still work?

  • What is the use of general maintenance task list?

    Hi expert,
    I want know What is the use of general maintenance task list in SAP plant maintenance & how to use this step by step.
    Regards,
    Ram Rathode

    Hi
    A task list in PM is created to perform a specific repair or maintenance task. The task list consists of work operations and components needed to complete the job. Often a task list will be associated with a functional location or equipment, where not tied to a specific technical object it is known as a general task list.
    Task lists can be assigned to a order, the operations/components are imported into the order. Task lists are also assigned to maintenance plans - once orders are generated from the plan the task list is transfered to the order.
    -Paul
    Please use [Enterprise Asset Management (EAM)|Enterprise Asset Management (SAP EAM); forum for PM/CS specific topics

  • Print Individual task Lists from Project 2010

    Hi
    I have a routine which prints individual task lists from a Project Plan using VBA.  This routine is currently being piloted and they have advised that not all resources have a task list produced.  when I step through the code the Resource numbers
    appears in this order:
    1,3,18,7,8,9,11,12,13,14,18,19,20,21,22,23,24,25
    Task lists are produced for each of the above resources.  However this misses resource numbers 2,4,5,6,10,15,16,17 and I have no idea why.  I have supplied my code below.  Any advice/guidance appreciated.  You will note that the task
    lists are exported to a pre-defined spreadsheet template.
    Sub PrintResourceCharts()
    Dim xlApp As Excel.Application
    Dim xlRange As Excel.Range
    Dim rName As String
    Dim Tsk As Task
    Dim Res As Resource
    Dim Ass As Assignment
    Dim s As Worksheet
    Dim BookNam As String
    Dim Row As Integer
    Dim fName As String
    'Call SetSummaryTask - DB: commented out - run summaryname manually as required.
    Call Task_CF_To_Assignment_CF
    'Remove Existing Task List files from directory before creating new ones
    On Error GoTo Finish
    Kill "D:\Task List Templates\Task Lists\*.*"
    Finish:
    'Save File Location
    fName = "D:\Task List Templates\Task Lists\"
    'Start Excel and Create a new Workbook
    Set xlApp = CreateObject("Excel.Application")
    xlApp.Visible = True
    'Export Resource and Task details
    For Each Res In ActiveProject.Resources
    If Res.Assignments.Count > 0 Then
    Row = 5
    xlApp.Workbooks.Open ("D:\Task List Templates\Task List Template.xlsm")
    BookNam = xlApp.ActiveWorkbook.Name
    Set s = xlApp.Workbooks(BookNam).Worksheets(1)
    For Each Ass In Res.Assignments
    Set xlRange = s.Range("A5")
    If Ass.PercentWorkComplete < 100 Then
    With xlRange
    rName = Ass.ResourceName
    s.Range("A" & Row).Value = Ass.ResourceName
    s.Range("B" & Row).Value = Ass.TaskUniqueID
    s.Range("D" & Row).Value = Ass.Text1
    s.Range("E" & Row).Value = Ass.Start
    s.Range("G" & Row).Value = Ass.Finish
    End With
    End If
    Row = Row + 1
    Set xlRange = xlRange.Offset(Row, 0) 'Point to next row
    Next
    xlApp.Visible = True
    Application.DisplayAlerts = False
    If rName = "" Then
    GoTo Finished
    End If
    xlApp.ActiveWorkbook.SaveAs FileName:= _
    "D:\Task List Templates\Task Lists\" & rName & ".xlsm", FileFormat:= _
    xlOpenXMLWorkbookMacroEnabled, CreateBackup:=False
    rName = ""
    xlApp.ActiveWorkbook.Close savechanges:=False
    Application.DisplayAlerts = True
    End If
    Next
    Finished:
    xlApp.Application.Quit
    Set xlApp = Nothing
    MsgBox ("Individual Task Lists have now been produced....")
    End Sub

    Tony,
    You said you step through the code and it picks up resource 1. What happens when the loop gets to resource 2? Note: since resource 1 may have several assignments and stepping through them all could take some time, I sometimes use a stop statement in the
    outer loop to make it a little easier to "catch" what I'm looking for. For example, you could put this right after the For Each Res...
    If Res.ID = 2 then stop
    Then step through and see what happens.
    John

  • Additional User Defined field in Maintenance Task List

    I wan to add an additional field user field in Maintenance Task List.
    I know It is possible in User Fields.
    But I an not able added user field to Operations that are already there in the maintenance plan.
    The system is allowing me to Add field in New Operations that I am adding the the Task List.
    Thanks
    Sabyasachi

    Hi,
    If I am correct, It is not possible to add user fileds to the operations in the maintenance plan which was copied from the tasklist which is there in the maintenance plan.
    if you required these user fileds goto to change mode in maintenance plan and remove the task list in plan and do necessary changes in the task list and add to plan again. After that you can get userfileds in the opeations as u required with was generated now onwards. It is not possible for the past ones.
    Regards
    Srinivas

  • Error while uploading the general maintenance task list with LSMW

    Hi friends,
    I am uploading the general maintenance task list with the help of Standard Batch/Direct input method in LSMW. I am using the internal number range for task list.
    First task list is getting created properly, but while creating second task list, system is giving the error as "external number range is not assigned for task list and task list with this group ID is already created in the system."
    This is because, on initial screen, system automatically takes the group ID of the task list that is created earlier.
    My question is
    1. How to get rid of the group number that is automatically gets populated in group field of initial screen, while creating the next task list?
    2. Is it possible to assign a common identifier in all structure (Header, Operation etc) for single task list, so that system can differentiate between two task lists?
    In Equipment task list, we can differentiate the task list with equipment id and group counter.
    Please note the following point before replying to my question.
    1. I don't want to upload the general maintenance task list with external number assignment.
    Thanks in advance for early reply.

    I have the same problem....
    Please can somebody help me?

  • Plant independent general maintenance task list

    Hi, All,
    Can it be possible to create a general maintenance task list without maintenance planning plant & which can be used for all plants in same client?
    This is required to reduce the common task list data per plant existing in the system.
    Regards,
    Sanjay

    Hi Sanjay,
    maintenance Planning plant & Work Centres may differ according to the Centralised & decentralised maintenance.
    Hence not only maintenance planning plant but alos work centres may also needs to changed.
    Logically each work centres planned activity cost may differ so if u create a common task list it will not serve the purpose too.
    Ref link
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/5b/ae33e04b8611d182ba0000e829fbfe/frameset.htm
    Ramesh

  • Plant Maintenance Task Lists - Data download

    Are there any standard transaction to download plant maintenance task list? (no tables please). Function modules, BAPI also will help.

    you need to create one task list with a maintenance strategy with packages and hierarchy to outline the work requirements i.e. some tasks to be carried out 3 monthly some 4 monthly etc, and also if common tasks appear in 3 monthly package vs 4 monthly package then to suppress the duplicating task
    you would then define a strategy based maintenance plan and run it to get the respective maintenance orders

  • PM General Maintenance Task List

    I have used general maintenance task list in Notification. Now i forget in which notification i have assign that genaral maintenance task list. Now any body help me to search that notification in which that particular genaral maintenance task list is assign or any transaction code is there for search criteria.

    Hi
    In which type notification have you assgined the task list? or was it Maint plan?
    Sujit

  • How to retrieve Task Lists from All Subsites to the Parent Site and display in Grid view using CAML Query

    How to retrieve Task Lists from All Subsites to the Parent Site and display in  Grid view using CAML Query + object model

    do u just want task list or items under task list for all subsites
    for items use spsitedataquery ref
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spsitedataquery.aspx use recursive to get it from alll subsite under site collection
    for tasklist only u can a simply use a for loop to find in all subsite
    Manish Sati

  • Maintenance Task Lists

    Does anyone know if there is a IDOC for Maintenance Task Lists. If so what is it called.

    hi
    Kindly refer the note [1254880|https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1254880]
    regards
    thyagarajan

  • OIL6 - MAINTENANCE TASK LIST PROFILE DATA

    Dear Experts,
    1. How this OIL6 - maintenance task list profile works in PM task list?
    2. In  IA02, I have select Settings - profile ( Task List) and see the Network Graphic and did the changes and then saved.
    But after again I have checked  in IA02, there is no profile settings saved and no Network Graphics available. System says "Maintain Profile".
    Please focus on the issue.
    Thanks & regards,
    Tushar

    You can default the Profile in the initial screens for task list processing by entering the "PIN" parameter ID in your user master.
    PeteA

  • Copy General Task List from one service order to another one

    Dear Guru,
    I have the following questions:
    1- From a service order in IW32, how can I see the link between the operations and components?
    2- I want to be able to copy all the operations and all the components contained in a service order into another service order for a similar type of equipment. Can someone help me step by step on what needs doing?
    KR
    Christian

    Hello Sebastian,
    Many thanks for your quick reply indeed on this.
    Now this is the catch: I know that I could create a new service order based on a previously created one using IW31, however in my department they are creating sales orders for equipments in the normal SAP SD flow.
    In one the material line they enter a service material which is converted into a ZC03 (Service order) when saving the normal sales order which creates automatically a Service Order number.
    Because they create a lot of those service order in that way, they want to be able to populate them with the same list of operations and relevant components all the time.
    If they would be using IW31 to make copies, they would have to cancel the previously generated service order deriving from the regular Sales Order in SD which we want to avoid simply because it alters the original sales document flow.
    Question:
    1- I tried to copy the description of the task lists present in my service order thinking that would also copy the list of relevant and subsequent components defined for each task. The system has only copied the description of the tasks but not the components.
    Is there a way we could copy a list of general tasks to automatically have those coming with the relevant components?
    Please advise
    KR
    Christian

Maybe you are looking for

  • Problem with continue in a for loop

    Hi all I have a variable of type Node[] which contains nodes like Text,ImageView and SVGPath etc... now i want to filter that group which means i want to separate the Text nodes for that i used a for loop as var abc:Node[]; var abcsize=sizeof abc; va

  • Browser crashes after update

    I did the latest OS X update and now none of my browsers work. IE crashes immediately when I open it. Safari, Firefox, and Opera crash as soon as I open the FIFA site - fifaworldcup.yahoo.com/06/en/ Not sure what happened, but I'm dead in the water.

  • Customer care moving to outright ignoring people

    Hi everyone,  I just wanted to highlight the tip of the iceberg, the straw that broke the camels back. After 2 weeks with BT and the abysymal cusotmer service experience, I think we will be moving elsewhere.  As its the middle of my work day, I was b

  • HP ENVY 15t Quad TouchSmart Battrie stop charging bafter runing HP update.

    My batterie was charging fine till yesterday,  but after running an hp update it totely stop charging and is staying at 0%, before yesterday I was getting 4 to 6 hour life on it. I think thgis is my last HP I buy I won over 10 HP computer the past fe

  • SecurityContext EL expression not working

    When trying to apply this: #{securityContext.userInRole['roleList']} ... (#{securityContext.userInRole['Administrator']}) ... (#{securityContext.userInRole['Administrator,Spaces-User']}) to portlet visibility flag in Spaces it always returns false. B