How get configuration task list?

hi
i have a selection screen with this fields:
material
Vehicle Model
Product Code
Product Class
Color
how i can get configuration task list for this material?(like tcode cu50)
tnx
Edited by: saeidom on Jun 19, 2010 9:10 AM

Hello,
It is better to fulfil this requirement by Recording ( either BDC or LSMW )
If you have a beg set of data and if this is a one time job, you can use 0170/0001/RCPTRA01/B. SAP gives a detailed program documentation about various options.
There are also other objects to update the Equipment Task list, Funcational location tasklist.
Hope this helps you.
Best Regards,
Murugesh AS

Similar Messages

  • How to get workflow task list ID?

    I created simple workflow in Office 365 SharePoint 2013 using SharePoint Designer 2013.
    The action Assign a task to user (Task outcome to Variable: Outcome |Task ID to Variable: TaskID) was used.
    The variable TaskID had a value something look like
    902aa0e9-0d58-47c0-a3ba-da96ebd47651, but I need ID from a task list.
    How to get the task list ID in SharePoint Designer Workflow?
    I am very grateful in advance for any help.
    bnossov

    I created dictionary and create two variables:
    Name: Accept; Type: string; Value:
     application/json;odata=verbose;
    Name: Content-Type ; Type: string; Value: application/json;odata=verbose;
    Output variable: JSonRequestHeader.
    I called HTTP web service:
    https://xxxxxx/_api/web/Lists/getbytitle('WorkflowTaskList')/items?$select=ID
    I used Count Items in Variables: JsonRequestHeader(Output to Variable: count)
    The output variable count had value equals 2.
    When I printed service url in browser it gave me xml with all the items ID in the
    WorkflowTaskList.  There were eight .
    How can I take data from web service and put them in dictionary?
    I would be grateful for any help.
    bnossov

  • Error while creating configurable task list

    Dear Expert,
    I am trying to create configurable task list for equipments and I want to use this task list for preventive maintenance cycle. In following steps I will tell you what i did in the process.
    Step1:- Characteristic is created and different values are assigned to this.
    Step2:- Class with class type 300 is created, characteristic is assigned to this class
    Step3:- Equipments are created and class created in above steps is assigned to them and character values are set for them
    Step4:- General maintenance task list created
    Step5:- Configuration profile for task list with same class is created
    now while creating the object assignment in the task list operation, in the dependency basic data I am getting error ' No source code entered'. Please guide me what data do I need to enter in this basic data and where I am doing wrong.
    I try to follow the previous discussion regarding the same topic, but unable to create this object dependency assignment.
    Thanx in advance, for your help.
    Regards,
    Parag

    Hi Parag,
    See this document.Configurable Tasklist
    I hope you will be able to connect and correct your process accordingly.
    Step3 here (CU01) is related to your issue.
    You are expected to give a code shown like that in the Editor above Assignments  in the Tasklist Extras menu (Takes to CU01)
    Jogeswara Rao K

  • How to attach Task List in Notification

    Hi all
    How to attach Task List in Notification?
    Thanks.

    List item is forms is generally used when you have pre-defined set of values. you can define them property of list item.
    It seems you have dynamic list of values to be displayed on your form, instead go for a text item with a LOV. You can define your logic to get list of values in record group.
    Thanks
    Rishi

  • 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

  • Significance of configurable task list

    Please explain the significance configurable task list and how this is done in the system?

    For Ex.  Pulsar  servicing center
    Pulsar 135 and 150  are coming for maintenance
    Operations to be done
    Lube oil flushing  - common for 135 & 150
    Piston 135 replacement - only for 135
    Piston 150 replacement - only for 150
    We can input 135 or 150 in the order to select the operations related to 135 or 150
    If you select 135, Lube oil flushing & Piston 135 replacement wiill appear in the order operations
    This is the configurable task list.
    For this
    Create Equipment  IE01
    Create class characteristics with class type 300 CL04 & CT01
    Create dependency Cu01
    Create General task list and assign dependency for operations IA05
    Create configuration profile for general task list CU41
    Create order and select the task list

  • Configurable Task List Profile

    Dear All:
    I have a small problem
    For example I want to create task list general for many equipments with the same operations however, for each equipment I will use different components, the only solution i see from system point of view is that I will have to create a special task list for each and every equipment to maintain the different components
    Now I was checking and I figured out that the Configurable Task List Profile can help me regarding that, I mean I can create a set of dependencies and assign them to the task list and then the system will check the variant class and characteristics and generate the operation only for what dependencies I choose
    Please correct me if am wrong
    Thank you very much

    [SAP Help|http://help.sap.com/erp2005_ehp_03/helpdata/EN/c0/04cef24ebb11d189110000e8322f96/frameset.htm]

  • Configurable task list

    Hi,
    What is configurable task list?
    Regds,
    SH

    Hi !
    Please check the link below for configurable task list.
    http://help.sap.com/saphelp_di471/helpdata/EN/c0/04cef24ebb11d189110000e8322f96/content.htm
    If things are not clear with this link you may revert with details. Where you want to apply configurable task list. Generally equipment, general and functional location task lists are sufficient.
    Regards,
    Vaibhav
    Edited by: VM1234 on Mar 31, 2010 12:55 PM

  • How to get failed tasks list for a user in OIM.

    Hi All,
    Can anybody please suggest me a way to get list of task that got failed(when a user trying to provision to a resource) in OIM using java code.
    Thanks in Advance.
    SP.

    Use the code snippet below to get the task status. Based on this you can filter rejected tasks.
    userintf = (tcUserOperationsIntf) ioUtilityFactory.getUtility("Thor.API.Operations.tcUserOperationsIntf");
    provintf = (tcProvisioningOperationsIntf)ioUtilityFactory.getUtility("Thor.API.Operations.tcProvisioningOperationsIntf");
    long userKey=100;
    tcResultSet userresultSet = userintf.getObjects(userKey);
    for(int i=0;i<userresultSet.getRowCount();i++)
         userresultSet.goToRow(i);
         long processKey = userresultSet.getLongValue("Process Instance.Key");
         tcResultSet provresultSet = provintf.getProcessDetail(processKey);
         for(int j=0; i<provresultSet.getRowCount();j++)
              provresultSet.goToRow(j);
              String taskName = provresultSet.getStringValue("Process Definition.Tasks.Task Name");
              String taskStatus = provresultSet.getStringValue("Process Instance.Task Details.Status");
    Let me know if you have any queries...

  • How to Update Task List..?

    Hi All,
           I need to update the standard work hours for a group of task lists.Could somebody please let me know if there is any BAPI or Function module to do this or any user exit.
    Thanks in advance
    Cheers
    Nishanth

    Hello,
    It is better to fulfil this requirement by Recording ( either BDC or LSMW )
    If you have a beg set of data and if this is a one time job, you can use 0170/0001/RCPTRA01/B. SAP gives a detailed program documentation about various options.
    There are also other objects to update the Equipment Task list, Funcational location tasklist.
    Hope this helps you.
    Best Regards,
    Murugesh AS

  • Got the Exception in ADF page while getting BPM task list

    Hi,
    My requirement is i,n ADF page i need to display BPM human task list in ADF region.
    while Deploying my applciation server got the below exeption and it's taking the more time too.
    Please find details of Exception below.
    06:56:08 PM] [Deployer:149192]Operation 'deploy' on application 'ADFResources_application1 [Version=V2.0]' is in progress on 'AdminServer'
    [06:56:09 PM] [Deployer:149193]Operation 'deploy' on application 'ADFResources_application1 [Version=V2.0]' has failed on 'AdminServer'
    [06:56:09 PM] [Deployer:149034]An exception occurred for task [Deployer:149026]deploy application ADFResources_application1 [Version=V2.0] on AdminServer.: .
    [06:56:09 PM] Weblogic Server Exception: weblogic.application.ModuleException:
    [06:56:09 PM] Caused by: java.lang.ClassNotFoundException: oracle.bpm.web.security.faces.AuthenticationPhaseListener
    [06:56:09 PM] See server logs or server console for more details.
    [06:56:09 PM] weblogic.application.ModuleException:
    [06:56:09 PM] #### Deployment incomplete. ####
    [06:56:09 PM] Remote deployment failed (oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer)
    is any thing i missed out to include the jar files.?
    Thanks,
    madhava

    Search which library you are missing from Jdeveloper ->Tools -> Manager Libraries by using the missing class name
    oracle.bpm.web.security.faces.AuthenticationPhaseListener

  • How to import task list to sap from external system

    There is a external system used for maintenance the task list.

    Hello,
    Have you checked the Business Object BUS1012 in Tx. SWO1?
    May be BAPI BAPI_ROUTING_CREATE will help you.
    Best Regards, Murugesh AS

  • How to fetch task list details?

    I want to fetch task list details against multiple task lists.
    Currently i am calling FM EAM_FM_TASKLIST_GETDETAIL in a loop.
    Since it may lead to performance issues in the case of large number of tasklists, I am looking for other options.
    Is there any other option?

    Vivek,
    If you only specify those tables you require in EAM_TASKLIST_GET_DETAIL (e.g. ET_HEADERS, ET_OPERATIONS) then the function module will run much quicker.
    I'm not sure why your Code Review Team have issues with this method - its common practice to use SAP standard function modules in this way.
    The only real way to know if the Code Review Team are correct is to try testing the report in a test/staging system (copy of production).
    PeteA

  • Getting the task list for a user

    i´ve created a bpel project in which all i do is a simple human workflow asssined to user1. Next i want to create a jsp in which i list the tasks assigned to that user for which i looked into the tutorial 10.UserTasks.
    The difference between the example in there is that the active bpel is the TaskManager in my case it just opens the TaskActionHandler.
    Now when i look into the exmple in listTasks.jsp it uses
    ITask[] tasks = worklist.listTasksByAssignee( "[email protected]" );
    when i set the user to user1 it returns no tasks, even though i can see 3 tasks opened.
    any clues? any pointers would be appreciated.
    gabriel

    Hi,
    In 10.1.2 the TaskManager is replaced with the TaskActionHandler.
    You don't necessarily have to build a JSP to access tasks - you can use the out of the box sample worklist. This can be accessed at:
    http://localhost:9700/integration/worklistapp/Login
    However, if you would like to create your own worklist, you will have to use the new 10.1.2 Worklist apis.
    These are documented in Chapter 14 and Chapter 16 of the BPEL developers guide.
    You can also find the javadoc at
    ORABPEL_HOME\integration\orabpel\docs\workflow
    To see a sample you can look at the VacationRequest or the HelpDeskRequest sample

  • How to fin the Workcenter after getting Task list type

    Hi all ,
           I got the fields PLNTY(Task List Type ) , PLNNR(Key for Task List Group) , ZAEHL(Internal counter ) and VORNR (Operation/Activity Number)   from PLPO table .
    I need to get the work centers names . I saw the work centers are in CRHD table .
    May i know how to get the name of the work centers after getting the task list type details .
    I  found the routing details of a give finished/semi finished material .
    my next step is to find the work centers.
    Any suggetions from you are appreciated .
    Regards
    Raj

    Hi Jan,
    Yes, sa38 makes it possible indeed to execute in background into immediate mode a job but
    the user have to know the name of the program to be carried out ...
    The user knows only the name of these transactions trade. For example, IW38.
    In the menu of this transaction, SAP gives the possibility to execute in background :
    Program --> Execute in Background --> display of Start Time screen for the type of start condition :
    Immediate, Date/Time, After job, After event, or At operation mode).
    It is at this time there that we want that the user can only choose the "immediate" mode.
    We must thus prohibit the other choices (Date/Time, After job, After event, or At operation mode) ... and
    and we don't know how to restrict these other options in this screen "Start Time screen for the type of start condition".
    Thank you.
    By.

Maybe you are looking for

  • Midlet running in the background/foreground

    i would like to know if it is possible to have a midlet running on for example a mobile phone - and this midlet runs in the background and as soon as certain parameters meet each other the midlet will be in the foreground again ... also i want to kno

  • Your thoughts please on getting me out of this problem

    I have the latest version of iphoto 4 and have the spinning wheel when loading iphoto. So I need to rebuild the library which I know how to do. My problem is the library is 24GB with 2500 photos in it. I can only free up 17 GB of space on the hard dr

  • HT4352 how can i change the apps on Apple TV??

    Does anyone knoww how to change, deletes or replace Apps on APPLE TV?

  • Motion 4 Problem

    Motion 4 has been really buggy for me. It has been a week since I installed it and I've already had more than 50 crashes. I get the same report everytime; with thread 5 crashing. Please help. Thread 5 Crashed: 0 libSystem.B.dylib 0x9096aacc nanosleep

  • Configure Replace (How to remove vlans ? )

    Hello guys. As you know we can remove vlans without reload, just with the command "no vlan 1-4094. For example: SW1(config)#vlan 15 SW1(config-vlan)#no vlan 1-4094 %Default VLAN 1 may not be deleted. %Default VLAN 1002 may not be deleted. %Default VL