Defining a graph based workflow

I want to generate a graph based workflow using the Flow construct. While BPEL designer lets me add the Flow element graphically, as far as I can see I have to manually add the <links> and <source> and <target> elements.
Is this correct, or have I missed something?

Ross,
The BPEL designer does not support links but the BPEL server does.
Edwin

Similar Messages

  • It is possible to generate the graphs based on policy that we set?

    As i found that the Cisco Service Control Application Reporter only have the template graphs like top ten bandwidth user, can we generate the graph based on the policy that we defined on the subscriber policies?

    The picture you see is simply a photograph of the original UltraSPARC T2 chip. You may be able to generate a layout of your own, but it will probably be different from ours.
    Sun released only the Source RTL (Register Transfer Level) code, and synthesis scripts for the processor. To generate a complete layout, you would need to:
    1. Synthesize all control blocks for the chip.
    2. Manually lay out all custom RAMs, and datapaths.
    3. Perform top-level floor-planning
    4. Do detailed place and route on control blocks
    5. Place & route the top-level chip.
    It's a lot of work and involves lots of expensive CAD tools.
    formalGuy

  • Order Graph Based on a different field

    I'm creating a bar graph to track our design work for a specific season.   I want the bar grapsh to have a sort order based on the taskID but display the Ttask Description on the chart.   Here is an example of the data.  RIght now the chart is based on the Task Description so the tasks are sorted in alphabetical order.   The result is the graph shows the tasks in the wrong sequence.
    I appreciate your help solving this issue.
    TaskID  Task Description
    10 Turn over item from Design
    20 Quote product item cost
    30 Order Design Sample
    40 Season Management Review

    Sorry for the delay in responding to your reply.  Let me give a little more background.  We design gift items for specific seasons.  A season may have 50 - 100 designs.  All designs have 7 tasks that management wants to track.  They want a bar chart that shows the description of the tasks on the x axis.   The bar chart shows how many jobs per task are not started, in progress or completed.  This is working as designed.  The only problem is the descriptions of the tasks are in alphabetical order, not the actual sequence in which they occur.    To get the proper sequence there is another field called TaskID.  When I use this field, then the number of the task is dsplayed on the graph, not the description.  
    So, the question is how can I show the bars of the graph based on the TaskID but display the desctription?  THanks for your help.

  • Time Based Workflow - how to make it work?

    Hello,
    Has anyone successfully built a Time Based Workflow? Could you share your examples?
    For me it does not work properly.
    I have tried to set up 2 workflows: on Opportunity Close Date and Account Contract Expiration Date.
    - Account Contract Expiration Date: I want an Account Owner to get an email notification exactly 6 months before the contract with his client expires. However - the email is triggered each time the record is modified - so I have seen in the workflow monitor that users on the date of contract expiration - 180 days will receive as many emails as many times they modified the record! Is there a way to avoid this situation?
    - Opportunity Close Date - I want to send an email to Opportunity Owner's Manager - 10 days after the opportunity was closed. However - there will be the same issue as above + the wait action is not working with a PRE function.
    Please let me know what you think and if you have already built a Time Based Workflow that works correctly.
    Edited by: MagdaR on May 18, 2010 1:57 AM

    Let's start with the workflow for Opty Close Date.
    There are a lot of ways to do this, so you'll need to evaluate which way is best for your case, but the basics are to check to ensure that the opty is closed for the first time, then set the flag. In order to accomodate for the opty being closed when it is created, you will have to consider a post default for the flag in addition to the workflow.
    In this case, you could create a workflow on Opty using the before modified record saved trigger event. In the Rule Condition, have the workflow check for a closed opty and if the status changed to closed during this modification. There are a number of options to validate this, including sales stage = Closed/Won or Lost, Closed Date is populated for the first time, Status is closed. In any case, just validate that the opty was closed for the first time using the PRE Function (i.e., PRE(Closed Date) is null and PRE(Closed Date)&lt;&gt;Closed Date). When your condition is met, set a flag that will trigger the event. You could also add a date that the wf conditions were met the first time, to ensure that you track when the rule was originally triggered.
    The next step is to have a workflow that unsets the flag if the conditions are not met. Set the order on this one to follow the rule above.
    The last rule is the wait/email rule and it uses the when modified record saved event. This rule triggers on the flag being checked, then waits to send the email.
    Test this and validate that it will work for your purposes. Based on this workflow, you should be able to create the other one, and I can help if you have any issues.
    Good Luck,
    Thom

  • Creating Graph based on runtime conditions

    Hi,
    Right now i am able to create Graphs based on Views. But my requirement is that, if i click on certain component, i should be able to crate another graph at runtime which will display information based on the Clicked Component of original graph.
    Any help will be appreciated.
    Thanks

    Hi,
    I think the options are
    - create a second graph and hide it at runtime
    - create the graph on the fly in a managed bean, wich is quite a bit of code to write, that is justified if the "generated" graph is different (e.g. different model data) for each master selection.
    The first approach should be doable by detecting the selected information on the master graph and the query the detail iterator accordingly + displaying it.
    The second approach is a deep dive into the graph model APIs because you will have to code this all manually. Note that we don't have documentation for this approach yet
    Frank

  • Setting the series color of a bi beans graph based on the data values

    How do I conditionally set the series color of a bi beans graph based on the data values?
    I am using the following code to get the data values and set the series color:
    Graph gr=(Graph)CmdrDashboardP1_pres1.getView();
    DataAccess da=gr.getGraphModel().getDataAccess();
    DataDirector dd=gr.getDataDirector();
    DataMap dm=dd.getDataMap();
    int re=dd.ROW_EDGE;
    int ce=dd.COLUMN_EDGE;
    Object val=da.getValue(re,ce,dm.DATA_TYPE);
    int seriesCount=da.getEdgeCurrentSlice(DataDirector.ROW_EDGE);
    if (val <=45.0)
    gr.getSeries().setColor(new Color(255,0,0),seriesCount);
    I get a NullPointerException from the line of code "Object val=da.getValue(re,ce,dm.DATA_TYPE)." I have tried the code with DATA_UNFORMATTED as well, but get the same exception. When I print the DataMap value of dm the results are [dataUnformatted, dataViewFormat, value, dataIsTotal, dataType].
    Also, I get the error "method <= (java.lang.Object,double) not found in class _CmdrDashboardP1" from the "if (val <=45.0)" code.
    Thanks for any assistance

    How do I conditionally set the series color of a bi beans graph based on the data values?
    I am using the following code to get the data values and set the series color:
    Graph gr=(Graph)CmdrDashboardP1_pres1.getView();
    DataAccess da=gr.getGraphModel().getDataAccess();
    DataDirector dd=gr.getDataDirector();
    DataMap dm=dd.getDataMap();
    int re=dd.ROW_EDGE;
    int ce=dd.COLUMN_EDGE;
    Object val=da.getValue(re,ce,dm.DATA_TYPE);
    int seriesCount=da.getEdgeCurrentSlice(DataDirector.ROW_EDGE);
    if (val <=45.0)
    gr.getSeries().setColor(new Color(255,0,0),seriesCount);
    I get a NullPointerException from the line of code "Object val=da.getValue(re,ce,dm.DATA_TYPE)." I have tried the code with DATA_UNFORMATTED as well, but get the same exception. When I print the DataMap value of dm the results are [dataUnformatted, dataViewFormat, value, dataIsTotal, dataType].
    Also, I get the error "method <= (java.lang.Object,double) not found in class _CmdrDashboardP1" from the "if (val <=45.0)" code.
    Thanks for any assistance

  • Business need to define credit limit based on material

    HI,
    Business need to define credit limit based on material,do we have option in SAP like this

    Hi,
    If you can consider the credit check deactivation at item category level, it is possible.  You can find a switch to deactivate credit check at VOV7.  If you can group such materials under Z item category, you can control those.
    But credit limit is not possible in standard.
    Regards,
    P Gomatheeswaran
    Edited by: Gomatheeswaran Palaniappan on Sep 22, 2011 12:21 PM

  • Create graph based on dynamic table data

    Hi experts ;
    i have JDeve Version 11.1.2.2.0 , i'm create dynamic table based on dynamic SQL query this query return by function in database by based on passing parameter .
    My question :-
    1- How create graph based on dynamic table and contral it at run time ?
    Thanks & Best Regards

    Hi Mostafa,
    You can retrieve the data from your sql query in a backing bean and pass it on to Graph using the setTabularData method.
    Here is the javadoc for the setTabulardata method:
    http://docs.oracle.com/cd/E16162_01/apirefs.1112/e17492/oracle/dss/dataView/CommonDataview.html#setTabularData%28java.util.List%29
    Hope this helps
    Katia

  • Hide/Show a graph based on button click .

    I have to show a graph based on the values selected in the shuttle . The graph should be drawn only when a button( "Show graph") is clicked . My question is
    1) If the set the button's action to submit, it resets and empties the selected values in the shuttle . How do I prevent that ?
    2) How do I make the graph appear and disappear based on the button click ( Like a toggle button ) ?
    3) As I can draw the graph only from the values selected in the shuttle , the query parsing fails . However , the graph displays when the shuttle get populated with selected values . Is there a way to get around that .
    Thanks for your help .

    There is nothing wrong with your code, so I'd look elsewhere for the problem. Is this a direct copy of what you have on your page?
    :P1_COMBO1 in ('Option 1', 'Option 2')
    And
    :P1_COMBO2 = 'Option Combo 2'And the page item values are exactly as you have in the quoted strings? You might run the page in debug and confirm the page item values are exact.
    Edited by: Bob37 on Dec 6, 2011 2:18 PM

  • How to define primary interaction based on hierarchy level

    I have a 3 level product dimension, such as brand, product type, and product. Now I want to define primary interaction based on the level. If click on brand or product type, it will be drill down. If click on product, it will be send master-detail. Since there is only one column for this dimension on the report when report is constructed, how can I apply different interaction based on the product level?
    Thanks

    iif you are trying to do a normal hierarchical drill down from brand down to product type down to product, and if they are defined so in your database, defining a normal hierarchy is suffice.
    iif you are trying to navigate to a different level in a hierarchy, do a pre-defined drill down.
    all the above options must be defiend in RPD.
    if your Q is not answered can you please elaborate further with the existing example.
    -bifacts
    http://www.obinotes.com

  • Time Based workflow not working

    Hi,
    I am facing issue in time based workflow. I designed a worflow with two actions. Wait action is the first action and second action is send email. For send email the from address is current user and TO is owner of the record. One thing I noticed is that its working fine when "I" triggered the workflow and assign owner as "me". Its not trigerring the mail when owner is somebody else. I can see the instance with the following error message in the workflow monitor. "The buscomp Service Request is no longer valid for workflow name ********. The workflow instance ******* has terminated."
    Edited by: user11100286 on Oct 1, 2010 4:33 PM

    Hi,
    I am facing issue in time based workflow. I designed a worflow with two actions. Wait action is the first action and second action is send email. For send email the from address is current user and TO is owner of the record. One thing I noticed is that its working fine when "I" triggered the workflow and assign owner as "me". Its not trigerring the mail when owner is somebody else. I can see the instance with the following error message in the workflow monitor. "The buscomp Service Request is no longer valid for workflow name ********. The workflow instance ******* has terminated."
    Edited by: user11100286 on Oct 1, 2010 4:33 PM

  • Web Dynpro based Workflow Inbox.

    Hi All.
    Can someone help me with this post.
    http://scn.sap.com/community/bpm/business-workflow/blog/2013/11/02/dear-sap-why-are-the-existing-webdynpro-based-workflow-inboxes-not-working-out-of-the-box
    I have posted my query at the end of this post long ago but no response from there.  copying it here as well.
    I implemented as you described for SWF_WORKPLACE. A new window is getting opened now to execute the work item but the work item id and the action = Execute is not there. Somewhere the binding is missing.
    Enclosed the current output and the link.
    Please help a little bit more :-)
    /sap/bc/gui/sap/its/webgui/?%7etransaction=SWNWIEX&P_WI_ID=000002426507&P_ACTION=EXECUTE&P_APPL=NOTIF&%7eOKCODE=ONLI&sap-client=010&sap-language=EN
    please help if someone have any idea.
    Thanks
    LS

    Hi All,
    The Problem in my case was only with the port number. with the correct port number it works.
    The Link given above is complete. Implement all the steps as explained there and it should work for you as well.
    BR,
    LS

  • Error in IAC based workflow through UWL

    Hi ITS Gurus,
    I was using WS20000081 leave request service in ITS 620 and SAP Inbox(BWSP) and it was working fine. Now we have upgraded the R/3 system to ECC 6.0 and published all the services to Integrated ITS 7.00 and the Kernel patch level is 55 and Basis support package is 7.
    a. I understand from a note 841785 that BWSP cannot be used in Integrated ITS. IS it true? is there any workaround to use BWSP in integrated ITS.
    b. I started trying it with UWL. In the UWL i can see the leave request task for approval. When i click the task, i can see the approval screen. When i click approve or reject, the screen does not close and the work item does not get completed and the workflow is strucked. I tested other workflows in UWL which are not ITS based, and they are working fine, only the Integrated ITS based workflows are not working in UWL. I dont know where the problem lies, whether at UWL or at Integrated ITS.
    Would appreciate your advice to solve the problem.
    Regards
    Sundar

    Hi Sundar,
    From my point of view this is definitely no ITS problem.
    Let me explain why.
    The IAC sbwp creates a frameset which controls the complete process chain of a workflow. This means there is application (programming) logic which controls the starting, executing and ending of a workitem.
    ITS provides the technique but not the programming logic.
    The UWL is an application which can start a workflow but doesn't take care of the result and that seems to be the problem. UWL should control the execution and ending of a workitem to update his list of workitems (according to user decisions).
    It was not the decision of the ITS team to stop support for IAC sbwp with Integrated ITS. You might adress a developemnt request on the relevant component (BC-BMT-WFM) to urge them to support bwsp with Integrated ITS as well.
    Thanks and regards,
    Dieter

  • Will custom process defined in a standard workflow get affected by Patch

    Hi,
    Kindly let me know in case I have some custom processes defined in my standard workflow(Extending a wrokflow), will it be overriden by Oracle patch application or not.
    Thanks,
    Nisha.

    Hi,
    It depends on the access and protection level in the patch file, and the level at which you made your customizations.
    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://www.workflowfaq.com/blog ?
    WorkflowFAQ support forum: http://forum.workflowfaq.com

  • Cannot find workflow WS14000109 in Define Conditions for Starting Workflows

    Hi All,
    I have a query regarding workflow in SRM 50. I am not able to find the WS14000109 workflow  in the SPRO setting ->Define Conditions for Starting Workflows.
    There is thread ->
    Activating workflow  with a similar issue, but it has not solved my problem.
    Regards
    Sam

    Hi,
      In the SPRO setting ->Define Conditions for Starting Workflows,in the selection criteria "BUSINESS OBJECT",select the BOR "BUS2121" (Shopping cart) and then see whether you can see the WF in the list.
    BR,
    Disha.
    Pls reward points for useful answers.

Maybe you are looking for

  • Problem in reading a resource file form JAR

    Problem in finding a resource file from the jar..... I have my code in the following directory structure rootDir -      libDir -           XMLEntities.res      modelDir -           File1           File2           File3 Step1 - I create a jar file wit

  • 1. could I connect an external USB3 drive to my macbook pro (15" MID 2010)?

    Trying to connect I can't see it. 2. Question: Is it mirroring possible with apple TV on MacBook pro 15" MID 2010?. Playing a movie with VLC can I send it to TV? Could you please give me an advise?

  • Sequence monitor OK.....Program monitor not OK?

    A imported jpeg file looks OK in the source monitor, but is messed up in the program monitor: horizontally striped, each stripe offset several pixels to the right of the one above it. The following link shows an example: http://cid-a48e00d4dc98bfc2.s

  • Export as MP3

    I have forgotten how to create an MP3. How do I export as an MP3? Thanks

  • Premiere Pro CC échec de l'exportation

    Bonjour, Je monte les séquences d'un court-métrage que j'ai à réaliser sur Premiere Pro CC mais l'exportation ne fonctionne pas.. Mes fichiers vidéos sont en MTS 1080p, les fichiers audio en AIF, AIFF, MP3 ou en WAV. Quand je souhaite exporter (Fichi