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.

Similar Messages

  • Change equipment and functional task list

    Hi All,
    I have a requirment to mass change the equipment and functinal task list data.The upload file has the group, group counter and operation which i have to use has key fields and only one field value needs to be changed. the field value that needs to be changed is 'Work involved in the activity' (PLPOD-ARBEI) field. we have change the no of hours.
    could anyone please let me know if there is a BAPI or function module to fulfill this particular requirment. I searched the forum but could not find any BAPI.
    Thanks in advance.

    hello,
    see i can tell you onething....when you will go to routing screen (ca01,ca02,ca03)...
    you will get a find button there on screen (see binacular sign)...when you click on that and enter any operation number ..then it brings that operation to first rwo and then you can modify the fields you wanted...
    but if you want to modify operation ..user has to give the operation number along with routing group and group number....
    while doing bdc recording you have to follow same same sequence of step...go to ca02 enter routing grp and grp counter from that screen go to header and from there go to operation screen ..click binacular button to find operation...then when that operation will come on first screen ..edi the field you want for that operation...
    you can include all this recording in a Function module...take these grp number and grp counter as import parameters to FM and define a table for operation details .....and the execute ..it will change the operation..but remember the thing taht user shd know the vales op operation to be modify and grp number and grp counter..if he is trying to modify the operation which is not existing then ..you can give error message stating the same...so he will change the operation

  • Function Module for creating Functional Location BOM and Equipment BOM

    Hi All,
    Is there any function module for creating and changing Functional Location BOM and Equipment BOM ???

    Hi,
    Tables for Eq., BOM: EQST, STKO, STPO.
    Tables fro Fun., Loc., BOM: TPST, STKO, STPO.
    You can use FMs: CS_BOM_EXPL_TPL_V1, CS_BOM_EXPL_EQU_V2 & CS_BOM_EXPL_MAT_V2 for extracting the appropriate BOM related data.
    And for the Alternatives please check the customizing or check with your respective Module experts for the appropriate configuration.
    Hope this helps.
    Best Regards, Murugesh AS

  • Functional location BOM and Equipment BOM

    Hi,
    I would like to know which tables store information of Functional location BOM  (TCODE 1B11) and Equipment BOM (TCODE IB01). Is there a possibility that once we create these BOM's we can create alternative BOM as in case of Material BOM (TCODE CS01).
    Regards,
    Vishal

    Hi,
    Tables for Eq., BOM: EQST, STKO, STPO.
    Tables fro Fun., Loc., BOM: TPST, STKO, STPO.
    You can use FMs: CS_BOM_EXPL_TPL_V1, CS_BOM_EXPL_EQU_V2 & CS_BOM_EXPL_MAT_V2 for extracting the appropriate BOM related data.
    And for the Alternatives please check the customizing or check with your respective Module experts for the appropriate configuration.
    Hope this helps.
    Best Regards, Murugesh AS

  • Filter not working in new and old task lists (new farm)

    I noticed this after migrating some sites from our current production environment. Even when creating a new task list the filter will not work, however if I make a custom list and add the existing Assigned To column, the [Me] filter will work.
    This is starting to drive me nuts, any help would be appreciated.

    This is a bug in the March 2015 CU. I have an open case on it, where MSFT is able to repro it. This is just a workaround and hopefully the issue will be resolved in the future. It only impacts Tasks lists.
    As to doing it to all Task lists, no I'm unsure of how to accomplish that.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • I need tutorials to help me configure and get task list.

    hello,
    In my current use case scenario i would have to do simple task like fetch TASK list and MODIFY A Human Task.
    I plan to use the wsdl <oracle_home>\bpel\system\services\schema
    It would be great if we have some good links to get started.
    Thanks,
    Sun

    I am using workflow API to develop the use cases and this code seems to work.
    import java.util.ArrayList;
    import java.util.List;
    import org.apache.log4j.Logger;
    import oracle.bpel.services.workflow.client.IWorkflowServiceClient;
    import oracle.bpel.services.workflow.client.WorkflowServiceClientFactory;
    import oracle.bpel.services.workflow.query.ITaskQueryService;
    import com.oracle.services.bpel.task.Task;
    import oracle.bpel.services.workflow.repos.Ordering;
    import oracle.bpel.services.workflow.repos.Predicate;
    import oracle.bpel.services.workflow.repos.TableConstants;
    import oracle.bpel.services.workflow.task.ITaskService;
    import oracle.bpel.services.workflow.verification.IWorkflowContext;
    public class TaskImpl {
         private static org.apache.log4j.Logger log = Logger
         .getLogger(TaskImpl.class);
         public void getTask(){
              System.out.println(" classpath : " + System.getProperty("java.class.path") );
              try {
                   //Create JAVA WorflowServiceClient
                   IWorkflowServiceClient wfSvcClient =
                   WorkflowServiceClientFactory.getWorkflowServiceClient(WorkflowServiceClientFactory.SOAP_CLIENT);
                        //Get the task query service
                   ITaskQueryService querySvc = wfSvcClient.getTaskQueryService();
                   //Login as jcooper, jstein or jcooper or weblogic
                   IWorkflowContext ctx = querySvc.authenticate("weblogic",
                   "weblogic",
                   null, //Use default realm
                   null);//Not logging in on behalf of another user
                   //Set up list of columns to query
                   List queryColumns = new ArrayList();
                   queryColumns.add("TASKID");
                   queryColumns.add("TASKNUMBER");
                   queryColumns.add("TITLE");
                   queryColumns.add("OUTCOME");
                   //Create a predicate to query tasks that have a null outcome
                   String outcome = null;
                   Predicate predicate = new Predicate(TableConstants.WFTASK_OUTCOME_COLUMN,
                   Predicate.OP_EQ,
                   outcome);
                   //Create an ordering to order tasks by task number
                   Ordering ordering = new Ordering(TableConstants.WFTASK_TASKNUMBER_COLUMN
                   ,true //Ascending order
                   ,false //Nulls last
                   //Query a list of tasks assigned to jstein
                   List tasks = querySvc.queryTasks(ctx,
                   queryColumns,
                   null, //Do not query additional info
                   ITaskQueryService.ASSIGNMENT_FILTER_MY,
                   null, //No keywords
                   predicate, //Only tasks with no outome set
                   ordering, //Order by ascending task number
                   0, //Do not page the query result
                   0);
                   //Get the task service
                   ITaskService taskSvc = wfSvcClient.getTaskService();
                   //Loop over the tasks, outputting task information, and approving tasks
                   for(int i = 0 ; i < tasks.size() ; i ++)
                   Task task = (Task)tasks.get(i);
                   int taskNumber = Integer.parseInt(task.getTaskId());
                   String title = task.getTitle();
                   String taskId = task.getTitle();
                   //Set the outcome
                   taskSvc.updateTaskOutcome(ctx,taskId,"APPROVED");
                   System.out.println("Task #"+taskNumber+" ("+title+") is APPROVED");
                   catch (Exception e)
                   //Handle any exceptions raised here...
                   System.out.println("Caught workflow exception: "+e.getMessage());
    }

  • BOM and INV item list

    I need a Query for BOM items to get, Inventory item Category, Inventory Item type and approved supplier, if any, for each item in BOM. for this I wrote a query, but i am getting Duplicate item.
    when I join MTL_SYSTEM_ITEMS_B, MTL_ITEM_CATEGORIES and MTL_CATEGORIES_B i am getting duplicate items.
    any body can help to eliminate duplicate.
    This is my query:
    SELECT MC.SEGMENT1 MODEL
    ,MC.SEGMENT3 ITEM_GROUP
    ,MC.SEGMENT4 ITEM_TYPE
    ,BCB.OPERATION_SEQ_NUM OPERATION_NUM
    ,MSI.SEGMENT1 PART_NUMBER
    ,MSI.DESCRIPTION PART_NAME
    ,MSI.INVENTORY_ITEM_ID
    ,msi.organization_id
    FROM BOM_BILL_OF_MATERIALS BBM
    ,bom_components_b bcb
    ,MTL_SYSTEM_ITEMS_B MSI
    ,MTL_ITEM_CATEGORIES MIC
    ,MTL_CATEGORIES_B MC
    WHERE BBM.BILL_SEQUENCE_ID = BCB.BILL_SEQUENCE_ID
    AND BCB.COMPONENT_ITEM_ID = MSI.INVENTORY_ITEM_ID
    AND BBM.ORGANIZATION_ID = MSI.ORGANIZATION_ID
    AND MSI.ORGANIZATION_ID = MIC.ORGANIZATION_ID
    AND MSI.INVENTORY_ITEM_ID = MIC.INVENTORY_ITEM_ID
    AND MIC.CATEGORY_ID = MC.CATEGORY_ID;
    Thanks in advance.
    Regards
    Ravi

    Ops! you post in wrong forum. post at {forum:id=75}. Remember before posting there close this thread marking as answered.
    Hamid

  • Equipment and task list relationship in PM module

    Hi Freinds,
    We have craeted 'Equipmentin t-code 'IE01' and task list for that equipment in t-code 'IA01'.
    The equipment created  is stored in table 'EQUI' and the task list is stored in table 'PLPO' and 'PLKO'.
    But in all these tables im not able to find relationship between the equipment - EQUNR and the task list 'PLNNR'. In which table can i find the relationship between EQUNR and PLNNR. This is respect to PM module.
    Thanx
    RR

    Hi Rajiv,
    try table EAPL which holds link between Equipment No (EQUNR) and task List(PLNNR).
    <REMOVED BY MODERATOR>
    Regards,
    Rahul
    Edited by: Alvaro Tejada Galindo on Apr 25, 2008 5:16 PM

  • 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

  • General task list: component selection from BOM - possible in batch input?

    Hi experts,
    for the assignment of non-stock material to general task lists I have followed the advice from message[6115684|Re: General Task List Components;.
    So what I have done is:
    - Include non-stock material in BOM
    - Assign BOM to general task list header
    When clicking on the "Component selection" button in the task list components, I can select a component.
    When entering the material number of the component directly though, I get an error: "Material type X and line item type L not compatible" (CO135).
    I would like to upload the general task lists with a batch input recording, but I can't figure out how to select components.
    Any thoughts?
    Kind regards,
    Andreas

    Hello,
    We have the same requirement to load tasklists (change & create).  We are using the function modules EAM_TASKLIST_CREATE and EAM_TASKLIST_CHANGE.  However, i cannot get a non-stock BOM item to process.  Has anyone got this working?
    Thanks,
    Clay.
    EDIT: Found the answer - simply fill in the fields for BOM on the component (STLTY, STLNR, STLKN, and STLAL). 
    Message was edited by: Clayton Mergen

  • SAP PM - Equipment BOM

    Hi,
    is there a function (perhaps in the customizing) to prevent the user to input a material twice in the same equipment bom? SAP should warn the user by doing this.
    regards

    I think this can be acheived using an User exit which checks for duplication of materials in BOM while saving the BOM.
    The User Exit should get activated or triggered while saving the Equipment BOM and check for duplication of entries, should warn the user and pop to save or exit.
    Hope this helps you.

  • Define own no ranges for Boms & Routings(task list type)

    hello all,
    I need to confirm if we can have seperate no ranges for materials Boms or routings on the same client?
    I think we can assign a new Bom no range but can't have different no ranges for different material boms on the same system. Moreover, using CS90 we can only define the internal no range for material boms?
    For task list we can define external no ranges but this gets assigned to the task list types. Is it possible to define our own task list type? I don't think so, but not a 100% sure.
    Pls can somebody confirm this for me.
    Many thanks.

    hi
    what you mentioned is correct there is no option of creating the task list types and also of youcan have external number ranges for BOMs check t-code SNUM with object STUE.
    -ashok

  • Dismantling of material from equipment BOM

    Dear Experts
    I am a beginner in SAP PM. I have one PM scenario. How to implement in SAP.
    I want to dismantle one temperature gauge from one equipment for repaired, first I have to dismantle the gauge from equipment and after repairing I have to reinstall the gauge on equipment. How to proceed for that?
    My temperature gauge is maintained in BOM for that equipment. How can I dismantle material from equipment BOM and reinstall that?
    Thanks

    Hi Iqbal
        In IQ01 for the 'material' Temp gauge I created one serial no and equipment. I installed that equipment(temp gauge) on pump as sub equipment. Then before repairing, in IE02 itself I selected dismantle and dismantled. Is it the way you were mentioning?
    Alternatively when I use the t-code IE4N it gives the following error massage: -
    "Missing Customizing settings for software component ECC-DIMP
    Message no. IEN126"
    Can you please tell me the path details for IE4N. And is there any customising settings reqd for this T-code.
    Thanks

  • Time logs and task lists

    My previous all-in-on offered numerous forms, etc. to print from the printer. Now it seems that I must join the web center printing to get the same?? Is that correct?? My objection is to the contract, which seems to say that joining allows HP to use private information, to keep my faxes and to use contact information from same to advertise. IS THAT CORRECT???  Is that the only way I will now get the time log forms and the task lists, etc. that used to be available as part of buying this printer?

    I have an HP Officejet 6700 Premium, which is a new one. On the earlier version, I could just print the forms from the printer itself, with out going through the process of signing for the web service - -to which I alluded in my question.
    Also, this scanner is not as user-friendly as my first one on the review screen.  I didn't expect such changes to the same model.
    anyway-- back to my original question. Like said, the model is 6700 Premium, which in general is a very nice unit.

  • How to get equipment number and type for given PM order

    hello all,
    i know the PM order number and corresponding object number (like OR9100000175),
    now using these how do i get equipment number and equipment type..
    do i need to use any function module...
    thanks in advance...

    From VBAK table with order number AUFNR, get notification no - QMNUM.
    From QMIH table with this notification no QMNUM, get equipment no - EQUNR.
    And then from equipment master EQUI, you can get the equipment categeory EQTYP from EQUNR

Maybe you are looking for