Passing variables with page redirect

I have a cfform. After it is filled out and submitted, the
action page generates a random reference_no and puts the data into
a database. I then do a cflocation url and pass the reference_no to
another page. This page takes the reference_no and does a cfquery
again to get all the information just entered and displays it on
the form. A javascript popup/alert message then tells the user the
form was submitted with the reference_no and to print the form. I
was advised to do it this way so that the form cannot be
resubmitted again. Everything works fine the way I have it.
Now here is what I would like to do. After the form is
displayed with the popup, I would like to pause 3-5 seconds and
then redirect that page to another page that is identical (minus
the javascript popup message) with the cfdoucment tag because I
want them to print the form in pdf format. The problem I am having
is when I do another cflocation url at the end of the display page
and pass the referendce_no, to go to the pdf page, it works but it
never stops at the display page to display the javascript popup
message. So I tried to use the meta tag refresh rediredct set at 3
seconds and pass the reference_no. The display page with the
javascript message works then the page is redirected but the
reference_no is never passed and the pdf form comes up but without
anything to display. I guess you cannot pass variables in a meta
tag since that is not cf ?
How can I go from the page with the javascript popup to the
page with cfdocuement pdf format ?
Thanks

You would have to craft the url of the popup page to pass the
reference_no. I'm going to assume that you're using the "Post"
method on your form, which means you have to pass the reference_no
form value as a url/GET value.
<cflocation
url="somesite.com/popup.cfm?reference_no="#form.reference_no#">
and then on the popup.cfm page, consume the url.reference_no
again as part of the url in the meta refresh
<cfoutput>
<meta http-equiv="refresh"
content="10;url=http://somesite..com/pdfDisplay.cfm?reference_no=#url.reference_no#"
/>
</cfoutput>
If you're just trying to prevent double submission, you could
just lock the
form from double submission clientside. In the method below,
it actually hides the form. There are other options such as
displaying an inline IFRAME which would simulate a popup and would
remain until the page was refreshed from the form submission. I
would also consider this old school. You might want to check out
other options as far as Web 2.0 using AJAX and frameworks such as
JQuery.
<script language="javascript">
function formSubmit(){
if (document.myForm.isSubmitted.value != "no"){
return false;
}else{
document.myForm.isSubmitted.value = "yes";
document.getElementById('submitdiv').style.display =
"block";
document.getElementById('formdiv').style.display = "none";
document.myForm.submit();
</script>
<div id="submitdiv" style="display:none">
Your Form has been submitted.
</div>
<div id="formdiv" style="display:block">
<form method="post" name="myForm" id="myForm"
action="HandleSubmission.cfm">
<input type="text" name="isSubmitted" value="no">
<input type="button" name="manSubmit" value="submit"
onclick="formSubmit();">
</form>
</div>

Similar Messages

  • The function javascript:doSubmit not passing variables between pages

    Hi,
    I have an report that has a link to another page, and I'm trying to pass 2 variables. If I use a target URL as such the variables do not get passed, but if I use a page target and explicitly add the item name and values it works fine. Here is the call I'm using to javascript:doSubmit:
    javascript:doSubmit('f?p=&APP_ID.:32:&SESSION.::&DEBUG.:32, CIR:P32_PROJ_ID,P32_DID:#AWARD_NUMBER#,#ID_PROVIDED#');
    Does anyone have any insights?
    Thanks,
    Joe

    You can't use doSubmit to pass variables; it will only submit your page with the request you passed in.  All normal page processing and branching will be followed..  Why are you using doSubmit?  Just put the URL in the URL field.
    f?p=&APP_ID.:32:&SESSION.::&DEBUG.:32, CIR:P32_PROJ_ID,P32_DID:#AWARD_NUMBER#,#ID_PROVIDED#

  • Passing Variable with a URL

    Hi,
    I’m trying to pass variables first - from a non-secure
    web site to a secure (on another server) form. I have that figured
    out, but when I go to submit the form, the variables I passed to
    the form, are not showing up on my return e-mail from the form.
    Here is the code for the FORM ACTION & Reurn Template -

    What do you see in the URL scope when you CFDUMP the page?
    (Hint: this problem is about scoping variables.)

  • READURL Call on Macintosh, won't pass variables with spaces???

    Here is my code and the problem. I am trying to passing a
    tablename and a classname with READURL and the PHP script takes the
    info and returns to me my classid. This works wonderfully on the
    PC, but on the MAC, when I click on a classname with a space I get
    back a empty string as my return value.....here is my code from AW
    and PHP......If you can help I would readlly appreciate it.

    http doesn't like spaces in URLs.
    This clicking on a classname -- is that happening on a web
    page, or in AW?
    Either way, you should urlencode the link. Replace any spaces
    in the URL
    with + signs, either manually on a web page, or by using the
    replace
    function in AW [replace("", "+", string)]. Then, in your PHP
    script, you can
    change the $_classname assignment to include urldecode:
    $_classname = urldecode($_GET["classname"]);
    This should return it to the multi-word format.
    Paul Swanson
    Portland, Oregon, USA
    "bradsteele" <[email protected]> wrote in
    message
    news:[email protected]...
    > Here is my code and the problem. I am trying to passing
    a tablename and a
    > classname with READURL and the PHP script takes the info
    and returns to me
    my
    > classid. This works wonderfully on the PC, but on the
    MAC, when I click
    on a
    > classname with a space I get back a empty string as my
    return
    value.....here is
    > my code from AW and PHP......If you can help I would
    readlly appreciate
    it.
    >
    >
    >
    > getClassID.php code ....
    >
    > <?PHP
    >
    > // MAKE THE SCRIPT NON_CACHEABLE
    > header("Expires: Mon, 26 Jul 1990 05:00:00 GMT");
    > header("Last-Modified: " . gmdate("D, d M Y H:i:s",
    time() + 300) . "
    GMT");
    > header("Cache-Control: no-cache, must-revalidate");
    > header("Pragma: no-cache");
    >
    > // SET VARIABLES
    > $_table = $_GET["table"] . "_classes";
    > $_classname = $_GET["classname"];
    >
    > // LOGIN TO THE DATABASE
    > mysql_connect("localhost", "user", "user") or
    die("Cannot connect to
    DB!");
    > mysql_select_db("trek") or die("Cannot select DB!");
    >
    > // GET CLASS ID
    > $sql = "SELECT classid FROM `$_table` where classname =
    '$_classname'";
    > $r = mysql_query($sql);
    >
    > // IF MORE THAN 1 ROW, THEN PRINT FALSE (ERROR)
    >
    > while ($row = mysql_fetch_assoc($r)) {
    > $query = $row['classid']; }
    > print $query;
    > ?>
    >
    >
    > AUTHORWARE 7.02 CODE BELOW:
    >
    > -- Get the Class ID
    > if NetConnected then
    > www_action := "?action=getData"
    > www_query :="&table=" ^ tablePrefix ^
    "&classname=" ^
    LowerCase(ClassName)
    > www_URLString := NetLocation ^ "getClassID.php" ^
    www_action ^
    www_query
    > www_ClassID := ReadURL(www_URLString, 10)
    > end if
    >

  • Passing variables with cfhttp

    I need to pass a dynamic variable using cfhttp. 
    This code:
    <cfhttp method="get" url="#cgi.server_name#/page.cfm?pageid=#pageid#" resolveurl="Yes">
    <cfoutput>
        #cfhttp.FileContent#
    </cfoutput>
    Returns the error:
    The 3 parameter of the Mid function, which is now -8, must be a non-negative integer.
    This code returns the same error.
    <cfhttp method="post" url="#cgi.server_name#/page.cfm" resolveurl="Yes">
        <cfhttpparam type="Formfield"
            value="#pageid#"
            name="pageid">
    </CFHTTP>
    <cfoutput>
        #cfhttp.FileContent#
    </cfoutput>
    Any assistance would be appreciated.

    You don't say what line in your code is throwing the error...???  Try putting a
         <CFDUMP var="#cgi#">
    before the first line and a
         <CFDUMP var="#cfhttp#">
    after the CFHTTP call.  That will help you to understand if there is something wrong with the CGI var you are trying to pass as part of the URL, and will also show you whether the CFHTTP gets executed and what the return status is. Let us know how that works out and we can help you with further debugging.
    good luck!
    reed

  • DW CS5, Sending contact form results to email with page redirection using php script

    I am currently building a site from scratch with Dreamweaver, with the intent of replacing my current website layout that was designed using Intuit's website builder. My dreamweaver site is not online, but i have setup a local test server on my computer, using XAMPP, and i have an apache server with a MySQL database and a mercury mailserver running. I mention that in case it makes a difference in your answers. If necessary, I can include those settings, but that may be asking too much.
    I have an html contact form for users to schedule service appointments. I need the resulting actioned php file to do the following after submit is clicked: verify certain fields have been entered; prevent spammers or verify human visitors; send the form results to a (hidden from public view of any kind) email address; redirect user to a confirmation page, or an error page.
    I found the following code but being less than a newbie im not sure what needs to be changed, or if its even the right script i should be using:
    5 <?php
    6 $email = $_POST['email'];
    7 $mailto = '[email protected]';
    8 $mailsubj = 'You Have a Service Request';
    9 $url = '/MyLandingPage.html';
    10 $req = '0';
    11 $mailbody = "Results from form:\r\n";
    12 $space = ' ';
    13 $line = '
    14 ';
    15 foreach ($_POST as $key => $value)
    16 {
    17 if ($req == '1')
    18 {
    19 if ($value == '')
    20 {echo "$key is empty";die;}
    21 }
    22 $j = strlen($key);
    23 if ($j >= 20)
    24 {echo "Name of form element $key cannot be longer than 20 characters";die;}
    25 $j = 20 - $j;
    26 for ($i = 1; $i <= $j; $i++)
    27 {$space .= ' ';}
    28 $value = str_replace('\r\n', "$line", $value);
    29 $conc = "{$key}:$space{$value}$line";
    30 $text .= $conc;
    31 $space = ' ';
    32 }
    33 mail($emailadd, $subject, $text, 'From: '.$emailadd.'');
    34 echo '<META HTTP-EQUIV=Refresh CONTENT="0; URL='.$url.'">';
    35 ?>
    Can anyone please illuminate me on what I need?
    Thank You in advance

    Take a read here, this might enlighten you a little.
    http://www.paulgdesigns.com/learncontactform.php
    You are doing this with your local testing server, is it set up to email?
    Gary

  • Problem with page redirection

    Hi,
    I have a navigation rule defined like below :-
    <navigation-rule>
        <from-view-id>/pages/inputname.jsp</from-view-id>
        <navigation-case>
          <from-outcome>sayHello</from-outcome>
          <to-view-id>/pages/greeting.jsp</to-view-id>
        </navigation-case>
    </navigation-rule> The re-direction works, but the link in the address bar does not get updated to "greeting.jsp". Due to this, if we perform, lets say, refresh on the same page, it results in the data to be submitted again.
    We tried explicitly using <redirect/> to avoid this, but this did not work since the session information is lost and the corresponding response messages are lost.
    Is there any other way to get the link updated?
    Thanks.

    It is not a redirect, JSF forwards by default to maintain the current request scope. If you want to redirect you have to force it:
    <navigation-rule>
        <from-view-id>/pages/inputname.jsp</from-view-id>
        <navigation-case>
          <from-outcome>sayHello</from-outcome>
          <to-view-id>/pages/greeting.jsp</to-view-id>
          <redirect/>
        </navigation-case>
    </navigation-rule>

  • Passing variable with function in AS3

    This is a function on the first frame of a .fla updated to AS3 from an old AS2 file:
    function initialize() {
    MovieClip(root).stage_target_mc.max_messages = 600;
    When the function is called it should set "max_messages" to 600 in AS3, right?
    Thanks

    Only if the function is called.  If this is going to be a set value that applies any time, then you don't need that line in a function, and if it's on the main timeline, you don't need the root reference.

  • Passing variables and reloading pages

    I have a page in our application that is spawned into a new window. The url is used to pass the variable, the page needs to be constantly reloaded to pick up new data.
    I have two problems:
    1.
    Currenlty I pass the pkid back on reload by:
    try{
    this.getExternalContext().redirect("./"+"viewrunsheetneww.jsp"+"?rs_no="+rs_no);
    }catch (Exception f){
    This works fine, except when there is a validation error, it bypasses this code.
    2.
    I could use the sessionbean (and do) but the user could have multiple windows open and the session variable will conflict.
    I have seen a lot of people suggest session bean variables, doesn't anyone else see this as a problem.
    could i set a request variable on page construction, then it will be there on reload? Are there any decent examples of all the varible passing options (in one place).?
    Thanks
    Jonathan

    Hi, Jonathan,
    I've read about "processScope" in "ADF Faces" that may answer your requirements. I've only just started to investigate this but have been having trouble getting the ADF component download from oracle. Probably you'll have more luck with it. Check out the is link >>
    http://www.oracle.com/technology/products/jdev/htdocs/partners/addins/exchange/jsf/doc/devguide/communicatingBetweenPages.html
    Cheers,

  • How to use a jdbc query result to redirect to a variable html page

    uh, my problem is that i'm making a servlet which should redirect to a variable html page based on jdbc query (I'm really sorry if this is not the correct forum to post it, but since it's jdbc i thought it was).
    Anyway, the problem is that when a string say, "mystring" is equal to the value in a column, say "column1" of the database then page should redirect to "mystring.html".
    Is this possible, if so then how?
    and if not then is there any other way to solve my problem?
    please, help!!
    thanks in advance.

    uh, since i've already asked man, please gimme an answer if you know, it'll be appreciated.
    OK, HERE'RE THE DETAILS:(as you requested them)
    i have an html page where there's a textfield say "t1", the value of that text field is sent to the servlet which compares the value of the field with the value in Database, say "db1" in column say "column1".
    if there's a value in the column matching the value inputted in the textfield, then i need the servlet to redirect to an html page of the same name as inputted in the textfield. Hope that helps you understand.....
    thanks in advance.......

  • Need Help With Combining Two Variables For A Redirect

    Hello-
    <br />
    <br />In a different part of my site (built with ADDT) I have this script that creates a variable by combining two session variables, and then the new variable is submitted into a mysqul database table using a hidden form field:
    <br />
    <br />
    <form>
    <input type="hidden" name="exerreference" id="exerreference" value="<?php echo $_SESSION['kt_login_user']; ?><?php echo $_SESSION['kt_exer_reference']; ?> <br />" />
    <br />
    <br />There is also this part of the script in the header script:
    <br />
    <br />$ins_exer1-&gt;addColumn("exerreference", "STRING_TYPE", "POST", "exerreference");
    <br />
    <br />What I am trying to do now on another page is combine a session variable "kt_login_user" with a piece of dynamic text "AA" so that I can compare it to the field "exerreference" that was inserted into the database using the above script. If the two variables match, the idea is to have a redirect to another page.
    <br />
    <br />So in a hypothetical example, if the value of the session variable "kt_login_user " is "bestperson," and static text is "AA" then I need to create the variable bestpersonAA (because this is how the variables exist in the exerreference recordset). This variable bestpersonAA then needs to be compared to the recordset value exerreference and if they match, the page redirects to ../previous/portalpre.php. If the two variables do not match, then there is no redirect.
    <br />
    <br />Here is what I have so far:
    <br />
    <br />if (isset($_SESSION['kt_login_user']))
    <br />{
    <br />if ($_SESSION['kt_login_user'.'AA'] = $row_Recordsetexer1['exerreference'])
    <br />{
    <br /> header ("Location: ../previous/portalpre.php");
    <br />}
    <br />}
    <br />
    <br />The script doesn't work yet - it's redirecting regardless of if the two varibles match. Any ideas on the correct syntax to get this working correctly?
    <br />
    <br />Thanks
    <br />Dale</form>

    Hi Dale,
    if ($_SESSION['kt_login_user'.'AA'] = $row_Recordsetexer1['exerreference'])
    for checking whether two variables match, you´ll need the == comparison operator:
    if ($_SESSION['kt_login_user'.'AA'] == $row_Recordsetexer1['exerreference'])
    Cheers,
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • Apex 3.1 doesn't like passing variables to a different page than you're on

    My application was working fine in 3.0, but when we upgraded it, this feature stopped working and I'm not really sure why this is the case. I looked at the security and there's no security features turned on that would seem to prevent this.
    I'm trying to pass a variable into a field on page 101, but the URL didn't previously specify the URL - this is the actual URL that was used and worked previously:
    http://clients.intellireal.com/pls/apexp/f?p=103::::::P101_COMPANYID:85
    As you can see, I'm not passing in the page number, so there seems to be some sort of security feature that's not allowing the hidden field on page 101 (P101_COMPANYID) to get set to 85 like I believe it should. If I use the following URL, it works:
    http://clients.intellireal.com/pls/apexp/f?p=103:101:::::P101_COMPANYID:85
    The difference you'll notice if you try this is that the logo will change from IntelliReal to IntelliRealAdvisor depending on what the company id is set to. If you try any other page number (i.e. 306, which is a valid page), it doesn't work either.
    I also noticed that the home link seems to have more importance than it used to. The page that users go to in our application depends on who logs in. So we had to change the home link to 101 for the application to function properly.
    This is the first time that an upgrade of Apex has caused my existing code to break - now I'm a bit worried about my other code!
    Any thoughts on how I can get this URL to work would be greatly appreciated:
    http://clients.intellireal.com/pls/apexp/f?p=103::::::P101_COMPANYID:85
    Thanks!
    Brad

    Brad,
    Thanks for all that information. You are correct that the behavior changed from 3.0 to 3.1 and it looks like we broke something and that was not our intention. We may be able to repair it in the 3.1.1 patch.
    In the meantime, try this:
    1. As the initial request use:
    .../f?p=103:::P101_COMPANY_ID:85
    2. In the authentication scheme, set the Session Not Valid Page attribute to -No Page Selected- and set the Session Not Valid URL to:
    .../f?p=&APP_ID.:101:&SESSION.:::&APP_ARGS.
    3. Edit page 101 and change its security attribute to Page Is Public
    4. Don't try to make sense of how many colons are in the URLs, above. It makes no sense.
    Scott

  • OBIEE 11g How to pass variable from one prompt to another prompt in dashboard page.

      How to pass variable from one prompt to another prompt in dashboard page.
    I have two prompt in dashboard page as below.
    Reporttype
    prompt: values(Accounting, Operational) Note: values stored as
    presentation variable and they are not coming from table.
    Date prompt values (Account_date, Operation_date)
    Note:values are coming from dim_date table.  
    Now the task is When user select First
    Prompt value  “Accounting” Then in the
    second prompt should display only Accounting_dates , if user select “operational”
    and it should display only operation_dates in second prompt.
    In order to solve this issue I made the
    first prompt “Reporttype” values(Accounting, Operational) as presentation
    values (custom specific values) and default presentation value is accounting.
    In second prompt Date are coming from
    dim_date table and I selected Sql results as shown below.
    SELECT case when '@{Reporttype}'='Accounting'
    then "Dates (Receipts)"."Acct Year"
    else "Dates (Receipts)"."Ops
    Year"  End  FROM "Receipts"
    Issue: Presentation variable value is not
    changing in sql when user select “operation” and second prompt always shows
    acct year in second prompt.
    For testing pupose I kept this presentation
    variable in text object of dashboard and values are changing there, but not in
    second prompt sql.
    Please suggest the solution.

    You will want to use the MoveClipLoader class (using its loadClip() and addListener() methods) rather than loadMovie so that you can wait for the file to load before you try to access anything in it.  You can create an empty movieclip to load the swf into, and in that way the loaded file can be targeted using the empty movieclip instance name.

  • How to pass variables to Skin applied with skinClass?

    Hi all,
    I'm experimenting with new skin for a SkinnableContainer, and I would like to pass variables to that skin to dynamically change some elements.
    This is how I would like it to work, but it doesn't. Is there a way to make it work? (Or something similar... like defining new stylesheet-elements in the skin.)
    <s:SkinnableContainer skinClass="skins.SkinnableContainerBackground" gradient1="0xFFF000" gradient2="0x000FFF>
    <s:RichText id="rt1" width="400" height="200"  />
    </s:SkinnableContainer>
    Skin:
    <s:Skin xmlns:s="library://ns.adobe.com/flex/spark"
            xmlns:fx="http://ns.adobe.com/mxml/2009"
            xmlns:d="http://ns.adobe.com/fxg/2008/dt"
            xmlns:ai="http://ns.adobe.com/ai/2008"
            height="100%"
            width="590">
        <s:layout>
            <s:BasicLayout/>
        </s:layout>
        <s:states>
            <s:State name="normal"/>
            <s:State name="disabled"/>
        </s:states>
        <fx:Metadata>[HostComponent("spark.components.SkinnableContainer")]</fx:Metadata>
        <fx:Script>
            <![CDATA[
                [Bindable] public var gradient1:uint;
                [Bindable] public var gradient2:uint;
            ]]>
        </fx:Script>
        <s:Group top="0"
                 bottom="0"
                 left="-11"
                 right="0">
            <s:Group x="15"
                     top="0"
                     bottom="0"
                     id="kaft">
                <!--            <s:filters>
                     <s:DropShadowFilter alpha="0.4"
                     blurX="6"
                     blurY="6"
                     distance="4.24264"
                     quality="3" />
                     </s:filters>
                -->
                <s:Rect width="586"
                        ai:knockout="0"
                        d:userLabel="kaft"
                        top="0"
                        bottom="0">
                    <s:fill>
                        <s:LinearGradient y="82.3125"
                                          scaleX="585.975"
                                          rotation="-0">
                            <s:GradientEntry color="{gradient1}"
                                             ratio="0.466667"/>
                            <s:GradientEntry color="{gradient2}"
                                             ratio="1"/>
                        </s:LinearGradient>
                    </s:fill>
                </s:Rect>
            </s:Group>
        </s:Group>
        <s:Group id="contentGroup"
                 left="20"
                 right="20"
                 top="10"
                 bottom="20">
            <s:layout>
                <s:BasicLayout/>
            </s:layout>
        </s:Group>
    </s:Skin>

    ou can also define custom CSS styles:
    MySkinnableContainer.as
        [Style(name="gradientA", type="uint", format="Color", inherit="no")]
        [Style(name="gradientB", type="uint", format="Color", inherit="no")]
        public class MySkinnableContainer extends SkinnableContainer
            public function MySkinnableContainer()
                super();
    MySkinnableContainerSkin.mxml
    <s:SparkSkin xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/halo"
                 xmlns:s="library://ns.adobe.com/flex/spark">
        <fx:Metadata>
            <![CDATA[
            [HostComponent("MySkinnableContainer")]
            ]]>
        </fx:Metadata>
        <s:states>
            <s:State name="normal" />
            <s:State name="disabled" />
        </s:states>
        <s:Group bottom="0" left="-11" right="0" top="0">
            <s:Group id="kaft" x="15" bottom="0" top="0">
                <s:Rect width="586" bottom="0" top="0">
                    <s:fill>
                        <s:LinearGradient y="82.3125" scaleX="585.975" rotation="-0">
                            <s:GradientEntry color="{getStyle('gradientA')}" ratio="0.466667" />
                            <s:GradientEntry color="{getStyle('gradientB')}" ratio="1" />
                        </s:LinearGradient>
                    </s:fill>
                </s:Rect>
            </s:Group>
        </s:Group>
        <s:Group id="contentGroup" bottom="20" left="20" right="20" top="10" />
    </s:SparkSkin>
    styles.css
    @namespace local "*";
    local|MySkinnableContainer {
        gradientA: #FF0000;
        gradientB: #000FFF;
        skinClass: ClassReference("MySkinnableContainerSkin");   
    main app:
        <fx:Style source="styles.css" />
        <local:MySkinnableContainer width="590" height="100%">
            <s:RichText id="rt1" width="400" height="200" color="#000000" text="test" />
        </local:MySkinnableContainer>

  • How to pass parameter through URL to bounded task flow with page fragment

    I want to pass parameter to Bounded Task Flow With Page Fragment trough URL
    as I start this taks flow with router and according to this Param I will rout the user.
    I added input param to taks flow named direction and make the task flow called URL invoke url-invoke-allowed
      <input-parameter-definition id="__41">
          <name id="__42">direction</name>
          <value>#{pageFlowScope.direction}</value>
          <class>java.lang.String</class>
        </input-parameter-definition>but I don't know how to add this to the JSPX that I will add the bounded task flow Inside.
    and How to pass this from URL

    Hi,
    url-invoke-allowed is only required if the task flow itself is directly accessible from a browser (which is not the case at all if the task flow uses page fragments). To pass input parameters to a task flow that is embedded in a region and that has input parameters, you define the input parameters on the taskFlow Id that is created in the PageDef file of the containing page. To learn ADF task flows, have a look at the videos below. They also contain a sample for passing parameters to a region
    http://download.oracle.com/otn_hosted_doc/jdeveloper/11gdemos/taskflow-overview-p1/taskflow-overview-p1.html
    http://download.oracle.com/otn_hosted_doc/jdeveloper/11gdemos/taskflow-overview-p2/taskflow-overview-p2.html
    Frank

Maybe you are looking for

  • Game center id log ins

    We have multiple users on iphone and ipads that log in to game centre. I want to log in to my own account but keep picking up my daughters account. I have loged out and set up a seperate account, logged back in but continue to pick up the standard ac

  • Transferring from my old mac book pro to my new macbook pro

    So I want to transfer my itunes account with my library and playlists from my old macbook pro to my new one. Help??? thanks in advance.

  • Being charged when no services provided

    I have moved from my old flat in March and applied for a home-moving service online. During the moving and 3 weeks after I moved to my new flat, I couldn't use any services, especially broadband, because of the delay of the engineering work. I think

  • BAPI_INSPOPER_RECORDRESULTS, Record Insp Lot Results

    I posted the following message back in June.  I did not have alot of success with it and dropped it for a while.  I have picked it up again and am still struggling with the exact same thing. Can anyone help?  If anyone has successfully used this BAPI

  • HT5132 How do I get rid of the 'MobileMe discontinued' alert for Aperture

    I get this alert each time I start up Aperture. (Aperture 3.2.4). I tried every button to respond to Apple's notice but it appears to be an permanent advertisement. Deleting MobileMe preferences but no effect. The window continues to pop up at every