Possible to autocreate task from Technician Portal when creating SR?

I have this question:
Is it possible to automatically create a task (and assignment) when creatin a SR in Technician Portal (Field Service)? There is setup for creating automatically tasks and even assigning them to a resource when working in Service in the Create Service Request Form. Is it possible something like that in Field Service?? I think I have the correct setup but this is not happening in Field Service. Is it so it's supposed to be?
Thanks ,
Patricia
Edited by: Patricia Paredes on Feb 2, 2009 9:57 AM

This is not working in WF.
Refer this thread
Re: Contact record not pupulated when Task created using Workflow.

Similar Messages

  • Is it possible to autocreate requisition from Projects for inventory items

    Is it possible to autocreate requisition from Projects for inventory items with destination type of inventory in a non-manufacturing organization?Also how ti budget for inventory items based on actual cost i.e. FIFO cost?
    Zeeshan

    Hi Dina,
    Hope you are fine and enjoyed the weekend.
    Thanks for your help, yes there was an error in the Material Transactions form, i have corrected and PA_TRANSACTIONS interface got updated. I issued the stock to Project and there was'nt any transaction transferred to Projects.
    I just want to confirm one more thing, we are using FIFO costing method, if i procure same item for 2 different projects like Qty 1 with Rate 10 for Project 123 on 1st Jan 2010 and then i receive same item Qty 1 Rate 20 for Project 124 on 10 Jan 2010. Then everything will be transferred to Projects and Projects Expediture will be updated with the receiving Transactions.
    Now what if, the stock is being issued in the reverse order than it was received. Like I enter Miscellaneous issue for Project 124 first, then as per FIFO rules system will pick Issue rate of 10 because it was received first......Due to this, dont you think its wrong from the system's point of view. Infact it should pick issue rate of 20 because it was received at 20.....
    One more thing, While doing Miscellaneous Transaction with Projects enabled, do the Locator Project Number and Source Project Number needs to be same. If No then whats the control that stock received for one project should be issued against that project only.
    Your thoughts on this scenario.
    Zeeshan

  • Is it possible to access task flow parameter in EOImpl.create() method?

    Hi,
    Is it possible to access task flow parameter in EOImpl.create() method? If yes, please let me know how to access.
    FYI..I am having CreateInsert<xxx> activity in the task flow, which I believe calls EOImpl.create() method internally. While creating the entity, I want assign a default value based on task flow parameter.
    Thanks

    One way to pass task flow parameters to the model is during the task flow initialization. For this purpose you can create a prepare() method in your Application Module and call it from the task flow. By setting this method as the default in your task flow, it will be called each time the task flow starts. You can pass to the prepare() method any task flow parameters you wish as function arguments. In the prepare() method, save the task flow parameter values in EO or VO transient variables. These variables will be then accessible in the create() methods.

  • Error when launching GP UWL tasks from consumer portal

    In our federated portal network we have configured the universal worklist in the consumer portal to display guided procedure tasks from a producer portal - both portals are NW 7.0 SP14.
    All GP tasks from the producer portal are displayed in the consumer portal without issue.
    When we attempt to launch one of the GP tasks in the consumer portal we recieve the following error - Could not retrieve process instance: contact your system administrator.
    If we launch the GP tasks in the producer portal there are no issues.
    Has anyone experienced a similar situation?

    I worked through this issue with SAP support.
    For the ItemType with name="uwl.task.gp.XXX", where XXX is the system alias of the remote GP system.
    Changed attribute from defaultAction="launchGP" to defaultAction="editItem" because the name of the Action described for this itemType is "editItem".
    The action handler that is used is "UrlLauncher" (handler="UrlLauncher") but this handler works only with attribute launchInNewWindow="yes". So in all actions with attribute handler="UrlLauncher" change the attribute launchInNewWindow from "no" to launchInNewWindow="yes".
    Uploaded new uwl.gp.config.xml with high priority.

  • Assign account from Service Request when creating a New Task

    When creating a new task from within a Service Request the SR # is defaulted we would also like to default the account associated with the SR on to the Task. How can you do this?

    This is not working in WF.
    Refer this thread
    Re: Contact record not pupulated when Task created using Workflow.

  • How do I 'remove' a dimension from a cube when creating a crosstab?

    I have a CUBE with 9 dimensions and one measure, This is based of a fact table that has a Materialized View with just 4 dimensions.
    In JDeveloper I used the wizard to create a new crosstab using just the four dimensions that exist in the MV (removing the others).
    ....eventually the page was generated but it takes minutes....
    Q. Is there a way to 'DROP' a dimension from JDeveloper crosstab when you query a CUBE?
    [It looks like Oracle is internally using all 9 dimensions when some are "Hidden"  or not required!]
    The only solution I have found is to create an extra CUBE using just the 4 dimensions (this works within couple of seconds)! But I will end up with 6 CUBES holding different dimensions combination, this feels wrong?
    Q2. Is it bad practice to have multiple CUBES all based on one fact table, just to improve performace?
    I hope you can help.
    Steve

    i think this question is more for the technical teams at the olap forum ;)
    nevertheless: if you have a cube defined with 9 dimensions,all of them are necessary for retrieving the data, "hiding" some of them is possible by the means of "hidden dimensions"
    nevertheless you have to specify which dimension, value gets substitued for those dimensions: usually it is a TOTAL level.
    otherwise your results may be misleading or wrong, so specifying a dimension value for those hidden dimensions is the only choice to be consistent with the OLAP data model
    btw: you can easily use a materialized view in this environment as well, when using the concept of a TOTAL dimension value
    regards,
    thomas

  • How to derive the notification id from APEXP WF when creating Expanse report in 11i

    Hi,
    I am new to WF, I need to derive the notification id when creating AP Expanse report, I can achieve this by creating trigger on WF_NOTIFICATIONS table, but I need to derive this by creating custom procedure and that procedure need to be called from WF node. Here I am not getting when this notification id getting creating into WF_NOTIFICATION table.
    I have created custom procedure as below and calling this procedure from WF node.
    PROCEDURE insert_notif_details( p_item_type    IN VARCHAR2,
                                    p_item_key    IN VARCHAR2,
                                    p_actid        IN NUMBER,
                                    p_funmode    IN VARCHAR2,
                                    p_result     OUT NOCOPY VARCHAR2) IS
    BEGIN
            lv_report_header_id := p_item_key;
            l_notificationID    := wf_engine.context_nid;
            BEGIN
                     WHILE (l_notificationID IS NULL)
                     LOOP
                        DBMS_LOCK.sleep(1);
                        BEGIN
                         SELECT notification_id
                           INTO l_notificationID
                           FROM apps.wf_notifications
                          WHERE item_key = TO_CHAR(lv_report_header_id)
                            AND notification_id =(SELECT MAX(notification_id)
                                                    FROM apps.wf_notifications
                                                   WHERE item_key = TO_CHAR(lv_report_header_id));
                        EXCEPTION
                          WHEN no_data_found THEN
                               l_notificationID := NULL;
                               l_error_message := SQLERRM;
                          WHEN others THEN
                               l_notificationID := NULL;
                               l_error_message := SQLERRM;
                       END;
                     END LOOP;
            END;

    Hi,
    I'm not sure I'm reading your requirements correctly - do you want the process to move on as soon as anyone responds to it, or move on once everyone has responded to it?
    In the first case, it sounds like what you really need is a notification activity, which requires a response, sent to the role (or create an adhoc role which is assigned to everyone assigned to role 1 and role 2). As soon as one person responds to it, the notification is closed and the process moves on.
    In the second case, you should do the same but expand the roles. You will then need to write a post notification function to tally the votes and determine when to move on - have a look at the standard voting activity for an example of how to do it.
    HTH,
    Matt
    WorkflowFAQ.com - the ONLY independent resource for Oracle Workflow development
    Alpha review chapters from my book "Developing With Oracle Workflow" are available via my website http://www.workflowfaq.com
    Have you read the blog at http://thoughts.workflowfaq.com ?
    WorkflowFAQ support forum: http://forum.workflowfaq.com

  • Strange messages from SAP GTS when creating purchase orders (POs)

    Hello gurus,
    we use SAP GTS to check against sanctioned party lists (SPLs) only. We already transferred all our master data to GTS and our partners were checked okay. Now we just activated the document check in our test system. The system produces two different messages we do not quite understand:
    1. When creating a purchase order with an item without material master, the system gives the message:
    Legal Control: Custs Prod. Mast. Required
    Material
    Obviously GTS tries to find a matching material master, which naturally fails. My question is: Can I disable this check somewhere? In our case it is not important what the material is, we just want to check if our vendor is on some SPL.
    2. In some POs there is the message
    Legal Control: Partn. Function Mapping not Maintained
    Partner Function: DA
    I think I understand what the system is trying to say, but fact is, only one partner function is used in that order (VN). We do not even have a partner function u201CDAu201D in our ERPu2026
    At least in the first case, the PO is not checked against the SPL by SAP GTS, which means we would not detect if we ordered from someone on the SPL. This is not acceptable.
    Any ideas on any of those messages?
    Thanks
    Alicia

    Hello again,
    I found the solution myself:
    1. see Re: Goods receipts into GTS are blocked
    2. was a known problem solved by a patch (check OSS).
    Thanks anyway
    Alicia

  • Is it possible to take headshots from several photos to create a new photo

    Is it possible to take headshots from several photos and combine them to create a new photo?

    Photoshop Elements for Mac has a feature just for that. It also can do other "substitutions":
    However, here are some other candidates to consider:
    Some Image Editors That Support layers:
    Photoshop Elements 11 for Mac - $79
    GraphicConverter - $40
    Rainbow Painter - $30
    Imagerie - $38
    Acorn - $50
    Pixelmator - $60
    Seashore - Free
    GIMP for Mac - Free

  • Is there any way to prevent my SSIS Tasks from reformatting themselves when I want to change the Name

    So all my tasks are nicely laid out in my SSIS Package. Now I want to go add a blurb to the Name to make it a little more descriptive. When I do that, Microsoft Visual Studio just automatically re-sizes the task so the entire description, name fits. When
    I make it the right size, my scripting name is wrapping and that's the way I want it to look within my Package. Is there any way to stop Microsoft Visual Studio from automagically adjusting the size of my task when I click on the Name to edit?
    Thanks for your review and am hopeful for a reply.

    There is no way. The designer canvas received improvements in SSIS ver 2012, but this specific aspect remain unchanged.
    What I do I simply use the Format -> Autolayout -> Diagram or you can also/instead Ctrl-A to select all and choose "make same size"
    Arthur
    MyBlog
    Twitter

  • Is it possible to see transcript from analyzed clips when working in multiclip view?

    I have a 2 camera interview and a transcript and would like to use the to use the speech analysis feature in the multiclip window to edit the 2 clips together.
    Macbook Pro 2.3 ghz i7
    8gbRAM
    OSX 10.9.1

    Premiere Pro doesn't have multiclips, it has multicam sequences.  This is important because the speech metadata is attached to a clip, not to a sequence.
    So the answer is no.

  • Can't login to Azure from Visual Studio when creating new app.

    Hi,
    I already tried this at two different computers.
    Install VS 2013
    Get VS Update 2
    Get VS Web Essentials
    Get Azure SDK 2.3
    Launch VS, Log-in with MSDN acc.
    File-New Project - ASP.NET Web Application (pick MVC + Web API)
    Use "Create remote resource - Web Site"
    OK
    Get asked for Azure login again (sigh..)..I log in.
    Get error message: "Unable to create remote resource. 'One or more errors occured'" .. really? eh.. :D
    Ok, so now i try the Manage Subscriptions link to check the azure account.
    Nothing is there.so I guess I need to sign in again because my previous login got forgotten
    I log inagain.
    Get dialog with "The task argument contains no tasks. Parameter name: tasks"
    Ok, no Azure for me I guess.
    btw: I then logged into web Azure portal and noticed I am over the spending limit now, so my subscription was disabled, but if this is the case why I can't login to Azure from VS, then just tell me. Skip those unrelated (for me) error messages.
    Screenshot: 
    https://www.dropbox.com/s/06olj5icdn9brbo/Screenshot%202014-04-12%2013.23.00.png

    Hi,
    Based on your description, it seems that your azure subscription was over the spending limit, about this account issue, I suggest you contact with azure support, it's the best choice for you. Please contact support team by creating a support ticket at
    http://www.windowsazure.com/en-us/support/contact/
    Or if that doesn't work because you don't have an active subscription you will need to contact general customer support to have them create a support ticket for you
    http://support.microsoft.com/gp/customer-service-phone-numbers?wa=wsignin1.0
    About this incorrect error message, I suggest you submit this feedback at:
    http://feedback.azure.com/forums/34192--general-feedback
    Best Regards
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Photo loss from a project when creating a smart album

    Running Aperture 3.4.3 on iMac with OS X 10.7.5. Photos stored on internal drive. After creating two smart albums based on a date range, one with keywords and one with ratings, some, but not all, of the photos that appeared in the smart albums disappeared from the original projects (each project contains photos from a single day). One of the original projects still notes 454 photos under its thumbnail, but when opened only displays 308 photos. The project path of the photos in the smart album still references the correct project. I tried deleting the smart album but the photos did not immediately reappear in the correct project so I undid the delete. I tried closing and reopening Aperture. I tried system restart. No luck. Reading the Aperture help/manual suggests that the photos should remain in the original project.

    First: Make sure the Browser Filter is set to "Showing All" (or "Unrated or Better") when the Project is selected.

  • Error Message: "Excel cannot complete this task with available resources" when creating pivot table with Excel 2013

    Hi, 
    One of our users encountered this problem with Excel 2013 while creating pivot tables, particularly with large files. We tried to modify Virtual Memory
    of the pc but error still persist. Why does this happen and how can we resolve this? Thanks.
    Another error message encountered by the user, this time when opening large files. The files she tried to open are working fine in 2010. But when opened in 2013, it prompted : "There
    isn't enough memory to complete this action. Try using less data or closing other applications."

    Hi,
    In regarding of the issue, please provide us more information to assist you better.
    Did your user using the Excel 2013 and Excel 2010 with same PC? If not, please let me know the both of the 2 PCs' hardware list/Windows operation system info.
    Did you using Excel 2013 32bit version and Excel 2010 64bit version?
    General speaking, this issue usually occurs with Office 2013 32 bit version. It has a limitation of 2Gb of memory that can be used by its process. And the 64-bit Excel can handle larger workbooks.
    Thus, if your user using 32bit Excel, I recommend try 64bit Excel instead.
    Here is a similar issue, we also could try it:
    http://answers.microsoft.com/en-us/office/forum/office_2007-excel/excel-cannot-complete-the-task-with-available/d31b1822-ebde-4c9b-8d11-e54bb652847d
    If you have any update, please feel free let us know.
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Connection Pool Name Missing from Drop Down when Creating a New Datasource

    Hi All,
    I'm running Weblogic Server 8.1. I've successfully created a connection pool for DB2 using the Non-XA JDBC driver from IBM (Version 7.1). When I attempt to create a datasource for this pool and un-check the "Honor Global Transactions" checkbox, the connection pool is missing from the dropdown on the next page of the wizard. If I check the checkbox, the connection pool appears in the list.
    I experience this behavior on one instance of Weblogic Server, but not on another (I can see the pool whether or not the check box is checked).
    Is there some setting on the connection pool that could cause this behavior?
    Any help would be appreciated.
    Thanks,
    Steve

    Steven Grant wrote:
    Hi All,
    I'm running Weblogic Server 8.1. I've successfully created a connection pool for DB2 using the Non-XA JDBC driver from IBM (Version 7.1). When I attempt to create a datasource for this pool and un-check the "Honor Global Transactions" checkbox, the connection pool is missing from the dropdown on the next page of the wizard. If I check the checkbox, the connection pool appears in the list.
    I experience this behavior on one instance of Weblogic Server, but not on another (I can see the pool whether or not the check box is checked).
    Is there some setting on the connection pool that could cause this behavior?
    Any help would be appreciated.
    Thanks,
    SteveI can't reproduce this on 8.1sp5...
    I would have you compare the JDBCConnectionPool entry
    between the two instances.

Maybe you are looking for