Is it possible to bypass stages defined in Concurrent Request Set

Hi,
I have a concurrent request stages where there are multiple stages defined(corresponds same concurrent program with different parameter values) and this request is called from backend.
The way the stages are presently defined is on success,error & warning it will go to the next stage (e.g stage1 -> stage 2 -> stage3).
Now I have a requirement where based upon some condition, I would receive parameter values for stages. E.g I would received parameter for stage 1 to run and stage 3 to run and no parameter for stage2. In this case what I want is in the request set, stage 1 program will run and then stage 3 program will run bypassing the stage2 program as no parameter value received for stage 2 program.
Will there be any change required in the way the the link stages are defined or if there is any other way to accomplish the same.
Ultimate aim is that all the required stages(1,2,3......and so on w) will be defined but based upon the parameter value availability, corresponding stages will run like 1 then 3 then 5 and request set should complete.
I am assuming that its possible so I a trying for some workaround within PLSQL itself. Appreciate if any one can throw some light on this if clearing only the link stages could be a solution.
Regards,
Ad

What version of the DB are you running?
Here is a PL/SQL example: http://www.oracle-base.com/articles/misc/xml-over-http.php
You could also do it in Java: http://www.oracle.com/technetwork/developer-tools/jdev/dbcalloutws-howto-084195.html
HTH,
--Johnnie                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Similar Messages

  • Is it possible to bypass "Old Version of Java Requested" error message?

    At my organization, we have a number of applications which request an older version of Java, but work just fine in the latest version of Java 7. This prompt coming up confuses our users, and I'd like to disable it administratively. Is this possible?

    Did you try the Undo button at the top of the document? If you tried that and had no success, I'm afraid that the sheet is gone. There is no trash can from which you can remove files on the iPad.

  • Approval on sales stages defined in sales opportunity

    Hi Experts,
    Is is possible to  configure approvals on various sales stages defined in the sales opportunity?
    Please suggest some solution or workaround.Can it be customized?
    Thanks in advance
    Regards,
    Kanishka Tyagi

    Hi Kanishka.....
    Please execute this SP.....
    If @object_type='101' and @transaction_type IN ('A','U')
    BEGIN
    If Exists (Select T0.Num from OOST T0
    Where T0.StepId is not null
    And T0.Num = @list_of_cols_val_tab_del)
    BEGIN
    Select @error = -1,
    @error_message = 'You can not enter Sales Stage'
    End
    End
    Hope this will help you......
    If you want it for a particular User then add one more condition for user signature.....
    Regards,
    Rahul

  • Is it possible to create user defined control in labview

    in .net we can create user defined contol in which i can put more then one control and,, can use it as single control when needed,, but,, how this possible in labview,,
    actually in my program i have a tab control and,, in that tab control there are 8 pages,, now there are 5 different kind option selection for each page lets say "a" "b" "c" "d" "e",,,,,.,. so,, when i select "a" configuration for tabpage 1 should show.. "a"(control collection)  on tabpage1....and,, same should b possible for all 8 pages............................. this can possible if its possible to create user defined contorl in labview
    while in .net its very easy task i m confused here,..,.
    i put these controls in another 5 different  VI,,,, and tried to call in subpanel but,, i dont find the solution,,,
    Attachments:
    tabcontrol.vi ‏1 KB

    Hi,
    I've tried to open you attachment but LabVIEW tells me it's not a vi... could you check it and repost please ?
    I'm not really sure of what you need but you CAN customize you control in LabVIEW, it is not hard, you just have to know how it works
    Sometimes being good at another programation language confuse you more than it helps because you try to do as you are used to... the difficulty it to "translate" functions from a language to another.
    I do know how frustrating it can be when you think "Damned, it would take me only 5 minutes to do that with language a and after 10 hours with language b it is still not working "
    You have to get in LabVIEW way of thinking, I wish you good luck !
    A quick exemple... this might not do exactly what you need but it may help you anyway.
    When my feet touch the ground each morning the devil thinks "bloody hell... He's up again!"
    Attachments:
    exemple.vi ‏55 KB

  • Is it possible to have user defined field in pick and pack manager

    HI,
    I would like to know whether it is possible to have user defined field in pick and pack manager row level.
    Manage user defined field there is only provision for <b>pick list</b> and not for <b>Pick and pack</b>.
    Regards
    Krishna

    The Pick and Pack Manger doesn't relate to any specific table (nothing saved to the database), so it does not make any sense having a userdefiend field on it. I would guess that you could add a column and bind it to a userdatasource (not a SAP database field), but if this make any sense depends on what you are trying to achive...

  • Is it possible to create user defined metrics in Grid Control 10.2.0.1 ?

    Hi,
    Is it possible to create user defined metrics(my SQL statement) in Grid Control 10.2.0.1
    (not 10.2.0.3) Linux/AIX ?
    Łukasz

    I am not sure if I am correct, but for reasons best known to them, Oracle replaced rather than add.
    Even if you want to do a smart search using the part# (e.g B16242-03) in oracle.com, you get a whole list of results, but when you click on them, you get http://www.oracle.com/errors/404.html
    I found this copy http://www.oracle.polcreate.pl/em.102/b16242/toc.htm

  • Is there a way to trace an IPOD even if it is Jailbroken.... how is it possible to bypass the ICloud Lost feature in the device? third time my 64 gb iPod touch gets stolen.

    Is there a way to trace an IPOD even if it is Jailbroken.... how is it possible to bypass the ICloud Lost feature in the device? third time my 64 gb iPod touch gets stolen.

    If it is off or not connected to wi-fi, then you cannot track it.

  • Is it possible to bypass JAAS authentication and use Authorisation alone?

    I have to implement jsp level security (by checking roles) for my JSF application.
    Authentications in my appln are done by a different servers. I don't want to disturb that.
    I have to implement authorisation alone using JAAS.
    Is it possible to bypass JAAS authentication and use Authorisation alone?
    I am using custom login module( implements DatabaseLoginModule) for authorisation.
    Moreover, after logging in, when a user tries to access a secured jsp page, he should NOT be redirected to login page again. Rather the role checks should be done using existing user credentials stored somewhere. How to invoke the custom DataBaseLoginModule without taking user to login screen?
    Any help would be great.
    Thanks,
    Adhil.J

    I have to implement jsp level security (by checking roles) for my JSF application.
    Authentications in my appln are done by a different servers. I don't want to disturb that.
    I have to implement authorisation alone using JAAS.
    Is it possible to bypass JAAS authentication and use Authorisation alone?
    I am using custom login module( implements DatabaseLoginModule) for authorisation.
    Moreover, after logging in, when a user tries to access a secured jsp page, he should NOT be redirected to login page again. Rather the role checks should be done using existing user credentials stored somewhere. How to invoke the custom DataBaseLoginModule without taking user to login screen?
    Any help would be great.
    Thanks,
    Adhil.J

  • Is it possible to bypass the Reports Launch Form

     

    The question is not if it is possible to bypass the Launch Form, but
    1. is it possible to pass parameters (arguments) to fill out the parameters from another form.
    2. Assuming the answer to Q1 is Yes, is it possible to automatically launch the report if all parameters has been filled in?
    +ken                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Is it possible to add a firewall Filter or Rule Set to the Extreme Router (802.11n)

    Is it possible to add a firewall Filter or Rule Set to the setting for the Extreme Router (802.11n) like the following:
    "ALLOW TCP/UDP IN/OUT to 208.67.222.222 or 208.67.220.220 on Port 53"  and
    "BLOCK TCP/UDP IN/OUT all IP addresses on Port 53"
    The goal of this is to create a firewall rule to only allow DNS (TCP/UDP) to OpenDNS' servers and restrict all other DNS traffic to any other IPs.
    Or, alternatively is there a way to configure same applied to the Network preferences on IMAC OS X?
    Thanks and much appreciation to anyone who has any clue about this.

    Sorry, I think you've got it backwards.
    The concern is NOT that the child can make changes to our hardware/AEBS, or even our network software on my IMAC - nothing's been changed.
    BUT, he changed the dns settings on his OWN device (ie chromebook) to google public server, accessed the AE using our home wifi network BUT bypassed our dns settings. Capeesh?
    See: http://www.pocketables.com/2013/03/how-to-use-change-the-dns-settings-on-your-ch romebook-and-use-googles.html

  • Renaming Set Code and Stage Code for a refresh set in Concurrent Manager

    Hi,
    We're using Oracle Applications 11.5.10.2 on a 10.2.0.4 Database:
    Would anyone know how to rename the Set Code for the Refresh Set and Stage Code for the Stage for a Refresh Set in Concurrent Manager? I’ve seen it done in the two Report Sets but when I try to so it in the Report Set I’m creating, those fields are grayed out. How do I get around that?
    Thanks!

    950950 wrote:
    Hello folks.
    There is a request set that has three stages. I've got to remove the final stage but I don't seem to be able to do this.
    I'm logged in with a System Administrator role and I believe we're on 11.5.10.2.
    I'll keep poking around but I'm hoping one of you gurus has the information at the tip of your fingers, or could at least point me in the right direction.
    Thanks,
    GeorgeWhat is the error you get?
    Please make sure you remove the link stages for this particulare stage (from "Link Stages" window) before you delete it from the "Define Stages" window.
    Thanks,
    Hussein

  • Is it possible to Call ODI Scenario from eBS Concurrent request

    Hi Experts
    We have a concurrent request running on oracle eBS system. Is it possible to Invoke the ODI Scenario (on a different server) by submitting a concurrent request. Mostly the concurrent program will be a PL/SQL
    Thanks in advance.

    hey,
    yeah its possible..
    Check this.
    /people/vanita.thareja2/blog/2006/05/23/bpm-sending-message-asynchronously-and-getting-the-response-from-synchronous-system-using-abap-proxies
    These replies too..
    Proxy in BPM
    BPM file to ABAP proxy
    Thanks,
    Vijaya.
    Edited by: Vijaya Lakshmi Palla on Jun 4, 2008 5:32 AM

  • How is it possible that a target has two deltas requests with the exact sam

    HI,
    How is it possible that a target has two deltas requests with the exact same records?

    Hi Mohammed,
    There are couple of reason behind it.
    main reason is
    take one scenario we have DSO as source and cube as target.
    Now DSO contains only 1 request, which i have loaded to cube by using delta.
    after that i have deleted DSO content by using right click on it and delete data.
    (hope u know that it will not delete request from target automatically)
    now once again i have loaded same request from datasource to DSO
    and then loaded delta again from DSO to cube.
    In this case for 1 single request in DSO you can see 2 request in cube with same data.
    Regards,
    Ashish

  • Is it possible to use a webservice in concurrent programme

    Hi All,
    Is it possible to use a webservice/website in concurrent request?.
    Thx,
    Sandeep.

    What version of the DB are you running?
    Here is a PL/SQL example: http://www.oracle-base.com/articles/misc/xml-over-http.php
    You could also do it in Java: http://www.oracle.com/technetwork/developer-tools/jdev/dbcalloutws-howto-084195.html
    HTH,
    --Johnnie                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Check Periodic Alert as a Stage in Request Set

    Deleted...
    Edited by: user1175547 on Aug 22, 2010 3:07 PM

    1) Add a new request stage to the request set.
    2) Add a custom conc. program to the request stage. The custom program finds the request set id of the current request by selecing parent request id from fnd_concurrent_request. Then you get the start time of that parent request.
    3) You can probably get the end time the same way. If not, the start time of the custom request can be treated as the end time of the earlier request stage.
    Hope this helps,
    Sandeep Gandhi

Maybe you are looking for

  • Keyboard Not Showing on Z10

    Can any of you wizzards help! The keyboard just does not show up at all. Iv'e read a few posts as my other Z10 did this so EE sent me a new handset. Now my new handset is doing the same... 1. Ive tried soft re-boots and also pulled the battery out wh

  • Itunes - Music Sync

    My iphone doesn't want to sync with the music on my itunes. Please help

  • CR 2013 chart dialog boxes not open

    Hello I have a Crystal Reports 2013 SP2 version 14.1.2.1121 for report design. I Can create new chart and chart expert opens, but if i try to open chart options dialog never exists. Load Template... nothing. Format Backgroud... nothing. Series Option

  • Flash shutting down when i test

    Im working on a flash file whenever I test it to see how it looks, flash shuts down after i close the flash player i just viewed the test file in. any solutions? Im in mac OS 10.47

  • JSP vs. standard desktop java application

    I'm designing an application to examine and analyse stock trading data and I'm trying to choose between writing a standard java application and writing a jsp. I was wondering if someone could help me get an idea of the disadvantages and advantages of