One single page, two SUBMIT buttons.

At first I had only one region on this page, and there is a submit button for this region (or page?). There is already a PROCESS corresponding to this submit button. Later I added another region, and I also want to add a submit button for this new region. But how can I add a new process for the new region? Based on my understanding, one single page can only have one SUBMIT PROCESS, right?

I mean, I cannot invoke the procedure here directly, right?
For example, I have a stored procedure in DB, which starts with:
1 CREATE or REPLACE PROCEDURE procedure1
2 (arg1 IN VARCHAR2)
3 IS
4 declaration1;
5 BEGIN
6 stmt1;
7 END;When I want to use it here in the page process, I have to remove the first 3 lines, am I right?

Similar Messages

  • Can we have two submit buttons in one form

    please someone help me. my problem is i want two submit button in one form.one to insert data and other to search data .how can i do this.

    hi!
    it is possible but impragmatic to supply a single form with 2 submit buttons.
    albeit, rather that use submit button you may just do the following (alternatively):
    a. put a default action url to your form's action attribute;
    b. replace all your submit button with just button (form element) and put a unique id on each;
    c. then put a function name (javascript) on its onClick attribute;
    d. in your javascript function, you may now reference your button through their id's and using an if-then statement, assign the proper url that will serve as the new action for your form;
    e. on the last line of your function, execute the line formname.submit()doods72
    http://www.ingenium.com.ph

  • Two submit button?

    Hei I got a qn. Currently I am doing a jsp web programming. I have a form which allows user to provide input on the group number and also the group description. I know how to do if I use 1 submit button. But currently I have to have two submit button. one of them called save and continue. 2ND BUTTON is for save and add another.
    summary:
    -1 form under add.jsp
    -2 textbox
    -Group number
    -Group description
    -2 submit button
    - save and continue
    - save and add another
    -2 destination
    the form will forward the user to validate.jsp(to validate user inputs) validate.jsp will forward either to addGroup.jsp on success and add.jsp on failure of validation
    after forward to addGroup.jsp in the page the values will be added into the database.and user being forwarded to viewGroup.jsp.
    destination after clicking save and continue should be viewGroup.jsp
    destination after clicking save and add another should be add.jsp after successful additing value in database

    i've tried that b4 thou. what happen to my program is that the value is swapped by the button. i click save and complete it execute what save and add should do. when i click save and add it returns error as null value sent..
    the request.getParameter(buttonName) placed in my validate.jsp right.. Cos my program currently in school thus i can't verify with u today. Can only get to u tomorrow. Hope you could still visit here cos i might still need ur help.
    I am actually weak at this and confused...
    i know that sent value via url then request from the other page. what i dont understand is the checking part. If u do have the syntax can u help me...

  • Two submit buttons or more going to diffrent e-mails

    Hello!
    This question was from ndjustin20 and was answered on October 7, 2009 by pgueret below, however I an not javascript (i am assuming it was used) savvy and cannot figure out how it is done. Does anyone have the text used?
    I am trying to create (many) submit buttons to different e-mails.
    Hello Everyone!
    I'm trying to have two separate buttons inside my  form that simply email my pdf to two different addresses.  For some  reason though the first button I create and enter an email address for  takes presedence over all the rest of the buttons I create.  So I create  button1 with email address [email protected] then i create another button2  and say that has an email address of [email protected] well what is happening  is no matter what i put in button2's properties or inside the XML it  still puts [email protected] in the to line of the email.  I am using the button object and changing  it to a submit with the PDF option selected from the drop down.  I have  been able to do this in the past but since i have upgraded to Lifecycle  8.2 I can no longer get it to work right.  Any help is appreciated.  I  don't know how to code in lifecyle but I do understand the principles of  programming so if it is something that i need to do "under the hood" so  to speak then please give me that option also.
    I am also receiving this  warning:
    "This  document has accessed more than one site and may be trying to share  data among different locations.  This could be a privacy concern.  Are  you sure you want to continue?"
    I have attached the form for further review.
    J

    Hello pguerett,
    I read the advice you gave to ndjustin20 and I was wondering if you could help me out with the same issue with having two submit buttons going to two different email addresses. I try following along with what you were saying, but was getting confused on how you were going about to fix the warning i am receiving about “"This document has accessed more than one site and may be trying to share data among different locations.  This could be a privacy concern.  Are you sure you want to continue?”.
    I’m new to adobe’s discussion board and new to LiveCycle Designer and I’m not too diverse in java scripting. I used the “Email submit button” option in the library palette to add the buttons to my form for whoever is filling out the form to e-mail them back to one of the two email addresses.
    I am attaching the form for your review. Anything you can help me with on this will be greatly appreciated. Thanks!
    Rene

  • How to print multiple identical-copies in one single page?

    Hi all,
    I need to print several copies of the same image in one single page. I've tried the following:
    - selecting the layout 4-pages in one.
    - printing 4 copies.
    However, this produce 4 physical pages, with the miniaturized image.
    No way to get 4 copies of the same image in the same page.
    Very thanks in advance,
    Jonatan

    jonatanc, welcome to Apple Discussions.
    Is the "image" you wish to print a picture image like a .jpg?
    I do this many times when I want to print 4 images on letter size photo paper. I use Photoshop Elements, but you could probably use most any graphic application.
    I do a Select All & Copy of the image. Then open a new file with a letter size. I then paste the image on the page 4 times & move the image towards the 4 corners of the page. Then print.
     Cheers, Tom

  • How to tell the difference bewteen two submit buttons

    Hi,
    I want to build a jsp page, which executes a method from a bean, dependingly on which submit-button has been pushed. To explain it, i've included some code.
    -------------BasicConfig.jsp-------------------------
    <form method="post" action="Default.jsp"><br>
    <input TYPE="SUBMIT" NAME="BasicConfigurationDefault" VALUE="Default">
    </form>
    -------------ServerOptions.jsp----------------------
    <form method="post" action="Default.jsp"><br>
    <input TYPE="SUBMIT" NAME="ServerOptionsDefault" VALUE="Default">
    </form>
    These two submit to the same default.jsp page but the buttons have different names. Now i want the default.jsp page to recognize, from where the request came, by looking at the names, and forward them to the appropriate page. How can i do this? I tried using request.getparameters, but i can't figure it out in which parameter the name are from the submit buttons.
    thanks in advance,
    Hugo Hendriks

    -------------BasicConfig.jsp-------------------------
    <form method="post" action="Default.jsp"><br>
    <input TYPE="SUBMIT"
    SUBMIT" NAME="BasicConfigurationDefault"
    VALUE="Default">
    </form>
    -------------ServerOptions.jsp----------------------
    <form method="post" action="Default.jsp"><br>
    <input TYPE="SUBMIT"
    SUBMIT" NAME="ServerOptionsDefault" VALUE="Default">
    </form>In the first case you will receive a parameter called "BasicConfigurationDefault" with the value "Default" and in the second case, a parameter called "ServerOptionsDefault".
    I didn't try this with a POST method but with a GET method... I hope they do the same.
    If it's not working, just call a JavaScript function when you click on the buttons and set a value to an hidden field.

  • To combine a multiple jsp pages in a one single page

    hi all,
    my problem statement is, i have 5 tabbed panes i,e each in a jsp page i need to put all those information into one single jsp page...while submiting the data. so how can i do about this using jsp.
    regards
    geetha

    The use of frames is highly discouraged (as is the use of scriptlets). So don't even think about it.
    You can just include a JSP page in each tab using jsp:include. You can hide/show the tabs using CSS/JS and/or a request parameter.

  • How to save ONE single page of pdf document?

    I have a 115 page pdf document that I can open in Adobe Reader. I want to email just ONE page of this file to someone. How do I save just that one page from the file (as opposed to sending the entire pdf document)?
    I know, lame question. Thanks for any help!
    Angela

    If you're on a mac forget about Acrobat on Lion (maybe even Snow Leopard and Leopard too). I ran into this issue on Lion so here I am....
    you have to go through the routine of "printing to",, With Acrobat go to the printer preferences panel > select pdf, select save as pdf... only to find you cannot and get some even more riduclous and useless pop up telling you to chose file save as.... which only lets you save the entire document! Utter
    waste of time and space...and not what you are after.
    Solution... Open the pdf with Preview, then Cmd + P will bring up the same dialog box mentioned above with pdf down bottom left... First enter the page number into the pages option's From dialog... eg From 40 to 40 (= page 40 only) then hit the pdf bitton and dave as,,, Works perfectly with Preview but no chance with Acrobat!!!! I am starting to get the feeling that this product is fast becoming redundant as it seemingly is not up to basic operations such as printing or saving off a single page anymore. Plenty of freeware solutions are now available on the net - some of which I am quite sure would handle this... but since preview is installed on mac by default.... why not?
    After all this have a good think abou whether you will or even need to Upgrade Acrobat the next time round. It seems the more 'advanced' Adobe get the more useless certain products are becoming.... Don't know if it's just me...
    UPDATED Sept 11
    Seems there is a way to print a single page with Acrobat X.. but not at all as straightforward as mentioned above...
    You need to go View>Tools> Extract, then select the page you want and save it as a seperate pdf. Then open the new pdf and print that... Wonderfully intuitive on Adobe' s part....

  • Display success message in same page when submit button is clicked

    I have a jsp page, where i use a form to submit data into my database.when submit button is clicked, i am able to display "Data entered Successfully" in a different page. But i want to display the message in the same jsp page.
    what do i do?
    PS :- i have tried a javascript message box, but that is not working properly. I need this solved urgently.
    Thanks

    Hi Deeptha,
    What is APEX version your using and is it your select list with submit option ?
    Regards,
    Ajay Periwal

  • Export to PDF is not printing all the columns in one single page.

    Hi,
    I have a report, I am exporting the report to PDF, but ALL the columns are not printing in a single page, It is getting printed 2 or more pages.
    I am okay if I have a horizontal scroll bar or if the test size is reduced. Please see the recording and let me know whether it is possible.

    Sorry sir, It is a slip of the tongue, I corrected my response already.
    So it is defenitely possible to make ALL the columns appear in the same page in PDF regardless of how much width the report occupies?
    If yes, can I see a horizontal scroll bar or the text will be shrinked to fit the page?

  • Adding WebDynpro and VC iviews to one single page

    Hi All
    I want to integrate Visual Composer iviews and WebDynpro iviews into single page.SO I do it??
    Please suggest me right way.

    Hi,
    When you deploy a VC model it automatically creates an iView for you.
    After you deploy a Web Dynpro application you can create a Web Dynpro iView using the iView template wizard. See <a href="http://help.sap.com/saphelp_nw70/helpdata/en/91/0d653f0c9fa075e10000000a114084/frameset.htm">here</a> for detailed process.
    Once created both iViews you can simply delta-link them to a page you create. See <a href="http://help.sap.com/saphelp_nw70/helpdata/en/db/b8df3d48b05d5ae10000000a11405a/frameset.htm">here</a> how to create a portal page.
    Hope it helps,
    Roy

  • How to print two delivery challans in one single page

    Hi Experts,
    Here we have a requirement that,
    The user wants the two Delivery challan outputs in one page.
    and also for some documents he requires header and for some documents he doesn't require,
    for this what condition should require.
    Any idea regarding this...
    Thanks in adv
    Thushara

    do 2 times
    perform write_form.
    end do.
    for header u can give condtion in form.
    use if condition in the editor...
    this will help u...
    Reward IF....... <= IF what? Points removed... read [the rules|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement]!
    Regards
    Anbu
    Edited by: Julius Bussche on Jul 17, 2008 7:01 PM

  • One error message by submit button on long form

    I've done this before, but I don't remember what I did. I
    have a very long form with some spry validation. I want to make it
    so when the user goes to click submit at the bottom of the form,
    they get ONE error message for all text field validation failures.
    I do not want to display an additional error message for EVERY
    field I have. I just want to display one message saying something
    like "You are missing fields" and they can scroll up to find out
    which ones. Is this possible?

    @Arnout
    Sorry I pasted the wrong url. I meant the example
    http://labs.adobe.com/technologies/spry/samples/validationwidgets/TextfieldValidationSampl e.html
    at the bottom of the page.It should be changed a litte bit to this:
    <form id="form9" name="form9" method="get"
    action="TextfieldValidationSample.html">
    <table border="0">
    <tr>
    <td>Integer:</td>
    <td style="width: 600px;">
    <span id="int_min_max2">
    <input type="text" name="textfield9" id="textfield9"
    />(Between 100 and 999)
    </span>
    </td>
    </tr>
    <tr>
    <td>Errors:</td>
    <td style="width: 600px;">
    <span id="additionalErrorZone">
    <span class="textfieldRequiredMsg">You have an
    error!</span>
    <span class="textfieldInvalidFormatMsg">You have an
    error!</span>
    <span class="textfieldMinValueMsg">You have an
    error!</span>
    <span class="textfieldMaxValueMsg">You have an
    error!</span>
    </span>
    </td>
    </tr>
    <tr>
    <td> </td>
    <td>
    <input type="submit" name="submit9" id="submit9"
    value="Submit" />
    </td>
    </tr>
    </table>
    </form>
    <script type="text/javascript">
    <!--
    var InvalidZones = new
    Spry.Widget.ValidationTextField("int_min_max2", "integer",
    {minValue:100, maxValue:999, useCharacterMasking:false,
    validateOn:["blur", "change"], additionalError:
    'additionalErrorZone'});
    //-->
    </script>

  • Two submit buttons in a form

    Hello,
    I'm designing a process where a certain step contain a form with required fields. This particular step has 2 actions.
    Is it possible to have 1 action performing the validations as usual - i.e. required fields - and the other action simply submitting the form without validation?
    At,

    this can be done by implementing a if else condition
    if(frm1.but1.value=="xx") {
    frm1.action='page.jsp';
    frm1.submit();
    } else if(frm1.but2.value=='xxx') {
    frm1.action='page2.jsp';
    frm1.submit();
    -venkat

  • Master detail detail in one single page

    Hello,
    Building a page showing a master/detail relationship is straightforward.
    Now I need to build a page showing a master/detail/detail relationship ? How do i do this ?
    Thanks for your help,
    Seb.

    Did you get the solution?

Maybe you are looking for

  • How can I find the servlet class name from inside a ServletFilter?

    Ive implemented a servlet filter, but need to discover the class name of any servlet class that gets executed. Ive dug through the spec and cant seem to find any path to do this. Seems the methods needed to do this have been deprecated. (for security

  • Poor Elite3D OpenGL performance in Solaris 10

    I'm running an old Ultra10 with an Elite3D-m3. Since I installed Solaris 10, I've had a very slow desktop and awful performance in 3D applications. This tells me that there's something wrong between the video card and OpenGL, like it's in software gr

  • UCS Chassis I/O problems

    :                         Anyone  else having Cisco UCS 6140/5108 chassis problems that cause the fans to  act up  and the I/O card to have power and temp alarms ver1.3.0 even  when the environmental conditions are OK?

  • No binaries found for Verification issue in MPR Code Signing Test case

    Hi, We are trying to certify our WebSite Application as Gold Certified and to become Gold Certified Partner. We have run a MPR Test and while verifying the Code Signing test case, it shows that "No binaries found for verification". But the test case

  • Error while upgrading to OS 3.0 GM seed

    Hi, I wanted to upgrade to the OS 3.0 GM seed. I opened Xcode, opened Organizer and choose the new OS file. Suddenly while starting to restore it gave an error: Connected to device, path does not exist. It now only gives that error. My iPhone only sh