Ad-Hoc Workflow

Hi friends,
What is ad-hoc work-flow in ccBPM.

Hi,
Ad-hoc workflow:
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/56fe9390-0201-0010-1e9a-945bd95af8b0
http://help.sap.com/saphelp_nw04/helpdata/en/f4/9f9138d380f50fe10000009b38f8cf/frameset.htm
Regards,
Subhasha

Similar Messages

  • Can we create an Ad Hoc workflow from a GP task listed in UWL?

    Dear All,
    Can we create an Ad Hoc Work flow from tasks which are generated using Guided procedures? If UWL does not provide this information can we some how implement the concept of Ad Hoc work flow from each step? The advantage is that when a person gets a task in his plate, he can create an Ad Hoc Workflow to take care of the request within their respective department for reviews and sub reviews.
    Thank You,
    Mansoor.

    Hi Mansoor,
    In sub task, even itu2019s linked with main task you donu2019t have a link or any UI to interact with main process. For this reason, itu2019s not possible.
    There are standard process roles like Overseer or Owner and custom roles, that is who will interact with each action/block. Assuming you have a manager and a team that will interact with a step in your process, you may define the manager as Overseer and the team group as processor of this step. In this case, you donu2019t have a specific forward feature, but you will treat that defining a group as processor and everyone inside this group may complete the task. The manager, as overseer, can track the process without need "hands on" with that.
    Best Regards,
    Pedro Nunes

  • Ad Hoc Workflow Routing

    Has anyone developed an Ad Hoc workflow in Content Services using BPEL?
    I am doing this using the User Request action to initiate the workflow. I'm also using the Ad Hoc design pattern in BPEL. This works well.
    My problem is, I am not sure how to specify the person who should be the first assignee. Is there a way to use an optional attribute or something that would be a username?

    Looking in to the source code a bit deeper - it turns out that there is (currently) an undocumented way to dynamically add a responder to a request item.
    You can send an escelation message (IFS_ECM_ESCALATION_RESPONSE) back on IFS_BPEL_IN with a username supplied in the (IFS_ECM_WORKFLOW_RESPONDER) parameter - which will get added to the request if not already present.
    The user thus can see full details of the request item. What I have not fully tested yet is whether the user has read access to any saved definitions found in the REQUEST_DEFINITIONS section when dealing with FdkConstants.CREATE_DOCUMENT_REQUEST_TYPE request types.
    Anyway, the following code is from the BPEL processes that I'll be soon releasing after running Oracle BPEL's schemac tool on CONTENT_IFSQUEUEMESSAGE.xsd to generate Java helper classes ...
    import com.oracle.xmlns.xdb.CONTENT.IFSQUEUEMESSAGE;
    import com.oracle.xmlns.xdb.CONTENT.IFSQUEUEMESSAGEFactory;
    import com.oracle.xmlns.xdb.CONTENT.IFSQUEUEMESSAGEPARAMETER;
    import com.oracle.xmlns.xdb.CONTENT.IFSQUEUEMESSAGEPARAMETERFactory;
    import com.oracle.xmlns.xdb.CONTENT.PARAMETERS;
    import com.oracle.xmlns.xdb.CONTENT.PARAMETERSFactory;
    import com.oracle.xmlns.xdb.CONTENT.IIFSQUEUEMESSAGE;
    import com.oracle.xmlns.xdb.CONTENT.IIFSQUEUEMESSAGEPARAMETER;
    import com.oracle.xmlns.xdb.CONTENT.IPARAMETERS;
      public static final String WF_MESSAGETYPE_ESCALATION =
        "IFS_ECM_ESCALATION_RESPONSE";
      public static final String WF_PARAM_PROCESSID =
        "IFS_ECM_WORKFLOW_PROCESSID";
      public static final String WF_PARAM_RESPONDER =
        "IFS_ECM_WORKFLOW_RESPONDER";
      // returning this message allows addition of new responder on the REQUEST item
      public static IFSQUEUEMESSAGE getWorkflowEscalationMessage(
        long processid, String user
        throws Exception
        IFSQUEUEMESSAGE msg = IFSQUEUEMESSAGEFactory.createFacade();
        msg.setMESSAGETYPE(WF_MESSAGETYPE_ESCALATION);
        PARAMETERS parameters = PARAMETERSFactory.createFacade();
        IFSQUEUEMESSAGEPARAMETER param1 =
          IFSQUEUEMESSAGEPARAMETERFactory.createFacade();
        param1.setNAME(WF_PARAM_PROCESSID);
        param1.setVALUE(String.valueOf(processid));
        param1.setDATATYPE("STRING");
        parameters.addPARAMETERLIST_ITEM(param1);
        IFSQUEUEMESSAGEPARAMETER param2 =
          IFSQUEUEMESSAGEPARAMETERFactory.createFacade();
        param2.setNAME(WF_PARAM_RESPONDER);
        param2.setVALUE(user);
        param2.setDATATYPE("STRING");
        parameters.addPARAMETERLIST_ITEM(param2);
        msg.setPARAMETERLIST(parameters);
        return msg;
      }If you want to test from PL/SQL, you can do so with something like the following :-
    /* Enqueue to IFS_BPEL_IN: */
    DECLARE
       enqueue_options     dbms_aq.enqueue_options_t;
       message_properties  dbms_aq.message_properties_t;
       message_handle      RAW(16);
       -- recipients          DBMS_AQ.aq$_recipient_list_t;
       queueMsg            IFSQUEUEMESSAGE;
    BEGIN
    --  -- Indicates that a Workflow is successfully completed.
    --  IFSQUEUEMESSAGE.initialize('IFS_ECM_WORKFLOW_MSG_COMPLETE',queueMsg);
    --  queueMsg.AddParameterToList('IFS_ECM_WORKFLOW_PROCESSID','48944','STRING');
    --  -- Response - True if request is approved, False otherwise
    --  queueMsg.AddParameterToList('IFS_ECM_WORKFLOW_RESPONSE','TRUE','STRING');
    --  -- Indicates that a time out has occurred in the Workflow 
    --  IFSQUEUEMESSAGE.initialize('IFS_ECM_WORKFLOW_MSG_EXPIRED',queueMsg);
    --  queueMsg.AddParameterToList('IFS_ECM_WORKFLOW_PROCESSID','48944','STRING');
    --  -- Indicates that a responder has not responded to the request in the specified time limit.
    --  IFSQUEUEMESSAGE.initialize('IFS_ECM_ESCALATION_RESPONSE',queueMsg);
    --  queueMsg.AddParameterToList('IFS_ECM_WORKFLOW_PROCESSID','48944','STRING');
    --  queueMsg.AddParameterToList('IFS_ECM_WORKFLOW_RESPONDER','RICH','STRING');
      dbms_aq.enqueue(queue_name      => 'IFS_BPEL_IN',          
                      enqueue_options => enqueue_options,      
                      message_properties   => message_properties,    
                      payload              => queueMsg,              
                      msgid                => message_handle);
       COMMIT;
    END;
    /In terms of dates, I expect in the new few weeks. By the way, these workflows are built based on the Content DB development kit. Though you should be able to manually backport these in to the old Content Services workflow framework if you wanted.
    cheers
    Matt.

  • Ad Hoc Workflow  with SAP EP6

    Hi,
    I have to configure Ad Hoc workflow with EP6. How can I configure it? Any document will help me.
    Is Universal Worklist cofiguration is also required for Ad Hoc Workflow?
    Regards,
    Manish

    try this link
    http://help.sap.com/saphelp_nw04/helpdata/en/8f/fb5464e3382f4482833a28af8896a3/frameset.htm
    Click on Administration guide, basic configuration, this will start to walk you though the configuration of collaboration.  Ad hoc work flow is a part of the Universal Worklist.  The Universal Worklist is the aggregation of your R3 workflow tasks plus your Ad Hoc workflow tasks.

  • How to delete ad hoc workflow tasks in UWL centrally?

    Hi,
    While we were testing UWL function of Enterprise Portal in Netweaver 7.0, number of users created ad hoc workflow tasks in UWL.  We have recently decided to use Universal Worklist for Inbox-based workflow only (WebFlowConnector) and not to use it for ad hoc workflow (AdHocWorkflowConnector).
    Instead of asking all users to go in to UWL and delete all their ad hoc workflow tasks, I (as a System Administrator) like to delete all ad hoc workflow tasks myself, centrally.  Is this possible?  Does anyone know how to delete all ad hoc workflow tasks centrally?
    Thank you.
    Joon,

    Hi Joon,
    I think it will be really difficult to achieve what you want as each task is related to a particular user.
    I am not sure @ a Sysadmin can accessing other users' tasks.
    You can try looking for some way by using UWL apis.
    I think you can get all your user's adhoc tasks in an ItemCollection object by using append method of Itemcollection Interface and then see that deleting this object may achieve give u desired reults.
    Also try having a look at the IUWLItemManager interface.
    You will find these interfaces in com.sap.netweaver.bc.uwl
    See [here|https://help.sap.com/javadocs/NW04S/current/uw/index.html]
    I hope it helps.
    Regards,
    Sumit

  • PO Approval workflow change

    Hi,
    i`m new to EBS. Please tell me the steps for following changes in the PO Approval workflow
    1.Any new PO that gets processed / approved in the system needs to auto run the PO Print program (to generate the PDF copy of the PO) with the email function switched on.
    2.PO Print program needs to be modified to auto email docuclass ([email protected]) always ( even if email option is switched off) and email both buyer and PM ( if email option is on). Email subject should contain PO# and revision#.
    Thanks,

    Hi,
    We are using an extended classic workflow . The workflow which has been customized to have 8 step of approvers at the max.
    The agents are being identified based on the cost center assignment, for which the approvers have been maintained in a seperate HRMS system.( The cost center is linked to an org unit in HRMS where we derive the approvers).
    There are some approvers that come into play depending on special criterias like EB attribute of the user.
    Now the problem comes where there is an ad-hoc approval workflow also added to it which enables the user to add approvers manually but there is some problem in the agent transfer there. The step identified by the systm during runtime is not defined in the ad - hoc workflow also and hence the step shows no agent and it returns to the user who added the approver.
    Kindly help as to what is the reason for the same and what can be done to rectify this.
    With Regards,
    Rajesh

  • Ad-Hock WorkFlow Configuration

    Hello,
    I am new to UWL. I dont have any backend system. I want to get hands-on experience with UWL. Could you please provide some links, or documents on how to configure the Ad-hoc workflow.
    I have the document to configure the backend systems(R/3 or ECC).
    I watnt to configure the Ad-Hoc. I would appreciate if somebody can help. Thanks.
    /Sunita.

    Follow the link
    http://help.sap.com/saphelp_erp2005/helpdata/en/f6/263359f8c14ef98384ae7a2becd156/frameset.htm
    Adhoc workflow can be configured using wizards.
    reward points if useful.
    Richard A

  • Workflow Content in EP

    Hi Experts,
    Can you please tell me how the Workflow Content in EP can be used?
    Any kind of help will be highly appreciated.
    Thanks & Regards,
    Shobhit

    hi shobhit,
    refer these links.hope its useful to u........
    Workflow in Portal (not necessarily integrated with the R/3),
    Problem Ad-hoc workflow in EP,
    Workflow in the Enterprise Portal,
    Workflow in Portal (not necessarily integrated with the R/3),
    Workflow on EP,
    /thread/50168 [original link is broken]
    regards
    bhargava
    pts r welcome

  • UWL, Ad-hoc items not showing up

    I recently configured our EP dev system to expose an R/3 workflow inbox through the Universal Worklist.  This functionality appears to work as spec'd.  However, locally created ad-hoc workflow items are not appearing in the UWL.  While I did not test ad-hoc items before adding the  R/3 system to the UWL, I have seen ad-hoc items appear in the UWL (on another EP server).
    When I configured the UWL, I used a system group definition, which at this point contains a single R/3 system.  It's expected that we'll have more R/3 systems added to this group in the future.
    One other item: this instance of EP was constructed using the simple installer, which installs EP+KM with the expectation of communicating with R/3 system - I'm wondering if this installer set some option which as a side effect prevents us from seeing the ad-hoc workflow items.
    Anyone have any suggestions?

    In the UWL Systems Configuration, just add another "AdHocWorkflowConnector" entry and specify the same configuration group you have used for the R/3 System.

  • Urgent ! AD hoc task routing.

    In our bussiness senario a human task need to use ad hoc workflow.
    Recipient number and recipients id identified as hoc.
    Assigned recipient decide next step assignee names..
    This continue until task complete.
    is it suitable to use Oracle BPEL for this reason?
    is there any one use this seneraio. How ?
    Can we do it declaratively using bpel using bpel diagram or we can use code inside JSP pages.?
    Thanks.

    repost

  • Question - Workflow Migration

    In Km migration...What does this mean :
    "Initialize templates and object types for Ad Hoc Workflow"
    Does the workflow migrate also? when we finish the Migration?
    Where is the palce that olds information on all the workflows that exists in the portal?
    thanks
    G

    Hi everybody,
    As far as i understand, workflows,feedbacks, personal notes, versions, are not passed from EP5 to EP6 when using ICE. Does anybody know where this settings are stored? Whenever it is a Filesystem Rep or DB Rep?.
    For the subscription i found 3 tables in EP5 DB:
    wcm_sub_subscriptions
    wcm_sub_recipients
    wcm_sub_resources
    For the workflows i found 2 tables:
    wcm_aib_assigned
    wcm_aib_itens
    For the others i couldn't find anything in the WCM.
    Does anybody have an ideia where i can find this information? It's very urgent.
    Best Regards
    Virginia Silva

  • Reg Workflow templates

    Hi all,
    I ceated an ad hoc workflow with multiple steps.I see this workflow in WorkFlow templates.
    I want to create a new workflow with exctly the same steps. Can I use the existing Workflow template.
    I am not sure as to How can we use the functionality of WorkFlow Templates.
    Please help.
    Thanks,
    Vivek
    PS - Will definitely reward points

    This is the link http://help.sap.com/saphelp_erp2005/helpdata/en/a1/172437130e0d09e10000009b38f839/content.htm
    It is no small task you have to ramp up and understand it first. So i send you the main link about SAP Business Work.
    Please click on the arrow icon to get to the tree view.
    Henry Moseti

  • UWL Help - How can i create my own task within the Enterprise Portal

    Dear all,
    I am currently working with UWL .
    I have tried the customization and those stuffs associated with UWL , and it is working properly.
    My current issue is , how can create my own task within the Portal ( not using Ad Hoc  Workflow , which is present in Portal) ?.
    If i can create my own task within portal by API or using another method , then How can i add that task link within the drop down box that is present in the Collaboration launch pad and Mytask Workset.?
    Is there any API regarding  UWL (which is useful for creation of custom tasks in Portal using Developer Studio by means of Portal Application Creation) ?
    How can i add that custom task in the drop down ?.
    I have tried the customization of existing UWL.
    I shall be grateful to those who can help me to solve this issue with links regarding the  solution of my problem's.
    with regards
    Kishor Gopinathan

    Hi Kishore,
    I am trying to do the same thing. When i am creating Collaboration Task, it has standard templates in the dropdown like "Single Step" and "Multi-Step" etc., If i want to create my own Custom Task Template and display in that dropdown, how can i do that? Your help is really appreciated.
    Thanks
    Vijay

  • Webinar: Unified Business Process Management

    <b>SAP NetWeaver Know-How Network Webinar: 
    Unified Business Process Management
    Wednesday 28 July 2004
    11 a.m. EDT</b>
    On Wednesday 28 July, George Yu hosts the webinar titled <b>Unified Business Process Management</b> as part of the ongoing SAP NetWeaver Know-How Network Webinar Series.
    Here’s how George describes his webinar presentation:
    “In the famous SAP NetWeaver refrigerator, we have seen two Business Process Management (BPM) execution products: the Ad-hoc Workflow for People Integration and Cross-Component BPM for Process Integration. In addition, we have business process monitoring in SAP Solution Manager and business process modeling in ARIS for SAP NetWeaver (just released). SAP has a plan to form a BPM lifecycle including modeling, model-based configuration, execution and monitoring, with a shared repository and a consistent appearance.  This is our Unified BPM. We will give a detailed discussion on this subject in the coming Webinar on July 28, 2004.”
    SDN invites you to post your questions to the presenter prior to the webinar and continue the online discussion afterward.
    <b>How to Participate</b>
    (Please go to the SDN Events page to see the article and download the PDF presentation)
    Dial-in Information:
    Date: Wednesday 28 July 2004
    Time: 11 a.m. EDT
    Within the U.S., call: +1.888.428.4473
    Outside the U.S., call: +1.651.291.0618
    Password: NetWeaver04
    WebEx Information:
    Topic: SAP NetWeaver Know-How Network
    Date: Wednesday 28 July 2004
    Time: 11 a.m. EDT
    Meeting Number: 742391500
    Meeting Password: netweaver04 (lowercase)
    WebEx Link: sap.webex.com
    Replay Information:
    A recorded replay of this call will be available for approximately three months after the webinar. Access this recording by dialing the appropriate number and using the replay access code 720151.
    Toll-free: +1.800.475.6701
    International: +1.320.365.3844
    <b>About the SAP NetWeaver Know-How Webinar Series</b>
    The SAP NetWeaver Know-How Webinar Series is driven by the SAP NetWeaver Regional Implementation Group (RIG), part of the SAP Development organization. The mission of the SAP NetWeaver RIG is to enable customers, employees, and partners to successfully implement the SAP NetWeaver solution. This SAP RIG has expertise in BI, EP, XI, and WebAS. They contribute their implementation expertise to the SDN implementation forums as well as to the SAP NetWeaver Know-How Webinar Series.
    <b>Disclaimer</b>
    SDN is not responsible for any changes to the webinar schedule. The webinar schedule may be changed or cancelled without prior notice.

    Sasmit wrote:
    can any1 please reply to this questionWell I couldn;t reply sensibly so i didnt .....
    Patience is a virtue
    Virtue Makes a saint
    Saints are a football team
    Who think Pompey ain't.
    Brandye is probably best suited to answer this ..... and it is currently the weekend......
    So please make the hard working Brandye have the weekend for her enjoyment!
    (Of course she may be on vacations for all I know and you will have a 2 week wait!)
    In practice this will come live 10 to 13 weeks after the beta ( I think 13 or just over is more common ...) ... could be a little later due to it being the holiday season for most people.

  • Adding nodes at runtime...

    Is there any way for adding workflow step dinamically at runtime.
    I want to ask that oracle workflow have ad-hoc workflow capabililities or not ?
    Thank You...

    Workflow supports having multiple versions of the same workflow running at the same time, ad-hoc workflow capabililities can be accomplised by having certain activities perform additional processing can be by making changes to the underlying business logic (such as calling a different sub workflow), adding of function activites to a running workflow is not available currently.
    Is there any way for adding workflow step dinamically at runtime.
    I want to ask that oracle workflow have ad-hoc workflow capabililities or not ?
    Thank You...

Maybe you are looking for