A single page, two buttons SUBMIT.

In a first time, I had only one region on this page, and there is a submit for this region (or page) button. There is already a corresponding PROCESS to the "submit" button. Later, I added another region, and I would also like to add a button to send this new region. But how do I add a new process for the new region? My understanding, a single page cannot have a single PROCESS of SUBMIT, right?

N ° you call the stored procedure in an anonymous pl/sql block. Something like

Begin
procedure1 (arg1 => arg1_value) ;
end;

CITY

Tags: Database

Similar Questions

  • Two updated reports on a single Page

    I have 2 put reports to date on a single page and two updating procedures (one for each report)
    Each procedure is related to a different button and calls another procedure in the database

    My question is how to tell the procedure page, which report to look?

    Gus

    Gus C wrote:
    I changed my company and the new company uses tabular forms

    I'm on the right track

    So if the report 1 I use number 1-20, for example, apex_item.hidden(4,geokey)
    and report 2, I use the numbering 21-40, for example, apex_item.hidden(22,f.siid).

    Yes.

    The problem I see, is that the two reports produce a checksum using APEX_ITEM. MD5_CHECKSUM I think you
    refer to the update as apex_application.g_fcs procedure.
    How can I handle this?

    Use apex_item.md5_hidden instead, by specifying an array of different form for each report element.

    (Maybe you should ask someone in the new society on their preferred this approach if it is a common practice it...?)

  • How to divide scanned a 'double page' two pages 'single '?

    I read Community Forums of discussion of this date of the 2009 and 2011, but I wonder if a solution may have been added to Acrobat for the five years that have elapsed since the 2011 community discussions I read?  Ive downloaded the latest Acrobat Pro DC, and I use a PC with Windows 10 I scanned the stories of magazines and books to my computer in the form of PDF files. Books and magazines onto the tray of the scanner so that each test and each page of the PDF contains two pages (one double page) of the book/magazine. Is there an automated/simple process that will split each page scanned in two, so that the PDF contains now correctly sequenced images of a page each page in the book? (The 'perl' suggested solution in 2011 is beyond my expertise in it.) Thanks in advance if anyone can suggest a method that a person may not use computer savvy. I have over 200 pages, each parsed as a double page, I want to divide it into single pages, I have to then 400 correctly paged pages. I need to change these 400 pages and print them as a book-length document. -Wier has.

    • Duplicate the document
    • in a version mougenot left edges
    • in the other version cropping the right side
    • merge the two documents cropped
  • Is it possible to have several buttons send grouped with different fields in the subforms on a single page?

    Hello world

    I have a form with two sections. Each section is a subform (the green boxes represent subforms in the screenshot) and each subform contains three required fields and a release button (the button submit to an e-mail address). The problem is that I can't seem to keep them separate. If I fill in the fields required in Subform1 and then click on the button 'Submit to regional HR', he took over the fields required in the subform 2. Is there a way to 'point' or 'group' these fields to each Submit button in their respective subforms?

    I can not be understanding the appropriate function or expects subform correctly. I learned designer of the life cycle on my own and with the help of this forum. Thank you very much for your help. -Chris

    submit_different_subforms_question.png

    I'm an amateur, but I decided to start helping as much as possible on these forums.

    I had a similar problem in the past and found a solution. I can't say with certainty that it is the best solution, but since each button has only 3 mandatory fields, it's a workable solution.

    So this is complicated but also somewhat simple solution that works. Please keep in mind my script experience is limited.

    For the first submit button allow the script to remain in its natural state. Make sure that your email presentation is correct. You will create a second button which will be a standard button. Change the text to be the same as the text for the first submit button. Within this button, the click event, puts a script like this.

    (

    If

    Required.Field.1.rawValue == null or

    Required.FIeld.2.rawValue == null or

    Required.FIeld.3.rawValue is nothing

    then

    xfa.host.messageBox = ("If you please fill all required fields")

    on the other

    Submit.Button.execEvent ("mouseUp")

    endif

    Repeat this step for the second button on the subform.

    now do the real hidden submit button and place the second button in its place. He will check the required fields have entered values and if they entered it will be then press the button to send real otherwise it will put in place the error message. This method requires that the mandatory fields are not marked as required by the value tab. They must be optional, if not built in scripts will interfere with the written order. This is a work around, but I found that it allows better control of the required fields. You can add a floating asterisk or perhaps a border coloured fields so that users are aware of what fields are mandatory.

    I really hope this helps. I know this can be confusing, but I understand that sometimes it can be difficult to get a response, so if I can be useful, I'll try.

  • I have two docs pdf I used Acrobat to convert word documents.  How can I extract a single page of a doc to be inserted into the other doc?

    I have two docs pdf that I converted into Word using Acrobat Pro documents.  How to extract a single page of the first RFSO and insert it into the second doc?  When I "select all" he seized the entire document.  I need to take pages, other pages and change some of the text.

    HI djlarp,

    Try to triple - click the text you want to select - it can sometimes be difficult to select text in a document converted. If this does not work, it could be that the PDF document is created from a scanned document and OCR is not enabled when you converted the document. (However, OCR is activated by default when converting via ExportPDF site.)

    If you are unable to select text by triple-click, let us know. I'd be happy to look more closely at your files.

    Best,

    Sara

  • two buttons with single function

    I want to create two buttons for single function and a single button for a function. For example, I click on button1, the display shows "clicked1".

    If I clicked on button2, the display shows "clicked2". If I click on button1, and then click button2, it will show that "the two buttons are clicked. However, it does not work in two buttons with single function. What is the problem? Here's the code.

    import flash.display.MovieClip;

    import flash.events.MouseEvent;

    var button1:MovieClip = new Button1();

    Button1.x = 200;

    Button1.y = 200;

    addChild (button1);

    var button2:MovieClip = new Button2();

    Button2.x = 300;

    Button2.y = 250;

    addChild (button2);

    Button1.addEventListener (MouseEvent.CLICK, onClick);

    Button2.addEventListener (MouseEvent.CLICK, onClick2);

    var isClicked:Boolean;

    var isClicked1:Boolean;

    function onClick(evt:MouseEvent):void {}

    isClicked = true;

    trace ("clicked1");

    }

    function onClick2(evt:MouseEvent):void {}

    isClicked1 = true;

    trace ("clicked2");

    }

    If (isClicked & & isClicked1) {}

    trace ("two buttons are clicked");

    }

    Copy the following code

    If (isClicked & isClicked1) {}

    trace ("two buttons are clicked");

    }

    should run WHEN you click on your buttons.  That is to say, place it in a function and call that function when you click on your buttons and after that your Boolean values are updated.  (probably then want to reset these Boolean values in the called function).

  • A single document, two page layouts?

    Hello, I have a document formatted for export to epub. I would also to export as pdf, but need to change the layout of formatting, etc to do. I need to create a second file for the pdf layout? I want to avoid the two documents that I should update the other whenever I have make changes to one. Basically, I want to make a single document with two layouts, so I can export to epub or pdf with each update.

    I don't think it will work for EPUB.

    You can configure two layouts for the EPUB and PDF:

    You would have two master pages, two series of paragraph styles, etc.

    The problem is to export. If you export PDFS, you can choose a range of pages. You can choose, in this example, to export "PDF:1 - 11" to export those pages.

    However, the EPUB export dialog box, has no option to export a range of pages. It's all or nothing. It exported everything on these two sets of pages into a single stream.

  • Disabling a button "submit" after the first click on a custom page

    Hi guys,.

    I have a requirement where I need to add a button "submit" ("email") to a custom page, once the button is clicked to send a notification by email, it should be disabled for the next time that the user not send the email for the second time.
    Adding a button is OK, turn it off

    Pls help me if anyone has ideas/thoughts.
    Appreciate your help.


    Thanks in advance,
    Suman

    Hello

    Your condition can not be filled with blockoneverySubmit API because it would block if it is between the transaction once the event is over, you can click on it again. Better at the event click redirect it to the same page and make this option off or use PPR (better solution).

    Kind regards
    Out Sharma

  • How to get the two pagenumbers to work on a single page

    You know the solution to put in page numbers, if you want to both on a single page?

    For example: on the left of a spread page I put in: 12-13 (pagenr 12 works, but nr 13 becomes 12 also)

    I don't want a pagenr. on page 13

    Nancy

    Anne-Marie Concepcion's InDesign Secret written this technique.

    http://InDesignSecrets.com/PreviousNext-page-number-on-same-page.php

    I never did it myself, however.

  • Is it possible to set actions on the button "submit" a Quiz question?

    Is it possible to set actions on the button "submit" a Quiz question? I want to advance to the next slide or continue when they get the question right, or come at the end of the tent, they are allowed. I would like to eliminate the Next continue/button. Why does take two actions to come out of the slide? I use 8 Captivate.

    Not possible, or you you screw up the functionality of the quiz slide. Submit button is the most important object of each slide of the default questionnaire.

    I suspect that you are not on 9 Captivate but on an earlier version? Perhaps reading this article:

    Question Question slides in Captivate - Captivate blog

    You don't need the next to all button if you do not allow the review. If you allow the review, you cannot uncheck, because otherwise the user will be pasted on slides during the review. You can drag the next button under the light of the button (see article). The Send button will trigger actions Success/Last attempt, that you can use to your advantage.

    If you want to limit the submission of a single click process, you will find a scenario in the same article

  • A single form: two supports

    I want to give the user a choice of two displaying the information in the form and goes to another page or display of information, and going to a completely different page. Therfore two submit button on the form. The information required on the form are minimal, because most of the data has been compiled and is in hidden form fields.

    Any ideas?

    TIA Andrew Gilbert

    On July 18, 2006 to macromedia.dreamweaver, tollesbury wrote:

    > I want to give the user a choice of two displaying information
    > under the form and goes to another page or display information and
    > go to a completely different page. Therfore two button to submit the
    > the same shape. The information required on the form are minimal
    > as most of the data has been compiled and is hidden
    > the form fields.

    This, as far as I know, is impossible. You could do, is just
    above the submit button, a set of drop-down list or radio button call him.
    say, 'Destination' and offer to your choice.



    Go to another Page


    Go to a completely different Page



    --
    Joe Makowiec
    http://Makowiec.NET/
    E-mail: http://makowiec.net/email.php

  • Synchronization of the configuration shows two buttons

    I have correctly set up Firefox Sync and used Firefox for a while successfully Sync in the PC Windows standard user on 3 computers accounts. However, when I tried to sync the administrative account on a computer, I was unable to. Since then, whenever I'm doing a tools/configuration synchronization, or Tools/Options/synchronization on all my computers, only two buttons to the top: "Create a new account" and "I have an account". There is no button 'Manage account', not related to Unlink this computer from Sync, nothing. I tried all kinds of things and I looked a long time for help on this problem and have not found something to help. If I delete my account just to start and complete synchronization, it will work, or could I be causing other problems by doing this? Any other suggestions? Thank you.

    What do you see in the list of menu drop-down menu button Firefox?

    Is - this set up sync or synchronize now?

    If you have 'Set up sync' then you seem to have lost the configuration of the synchronization and you will have to redo the set up Sync.

    If this is not possible, then try to delete (or rename) the armor in the Firefox profile folder file and reset synchronization preferences on the topic: config page.

    You can use this button to go to the Firefox profile folder:

    • Help > troubleshooting information > profile directory: see file (Linux: open the directory;) Mac: View in the Finder)

    You can open the topic: config page through the address bar and to search for the prefs that begin with services.sync and reset set user prefs ("BOLD") through the context menu on the default value.

    If it still fails, then you can try a new profile.

    Create a new profile as a test to see if your profile is the source of the problems.

    See "create a profile":

    If the new profile works then you can transfer files from a profile in the new profile, but be careful not to copy files corrupted to avoid transporting on the problem.

  • How can I have two buttons for 'new tab' in version 4?

    In version 3.x, there is a removable button on the toolbar for 'new tab' plus a button '+' at the end of the address of the open tab I could click to create a new tab.
    In version 4, I can have the removable button, but I do not see how to add the button at the end of the address of the open tab. I can move the single button at the end of the address window, but I can't have two buttons.
    Is it still possible?

    You must drag the button new tab (+) of the tabs to another toolbar toolbar to make the second button to appear.

    "Firefox > Options > toolbars" or "view > toolbars > customize.

  • Firefox is not fully load site Barclaycard of authentication. It load regarding the demand for certain letters in my password but does not load the button 'Submit', so I can't continue with my purchase and I switch to IE8 browser to buy whatever it is ov

    Firefox is not fully load site Barclaycard of authentication. It load regarding the demand for certain letters in my password but does not load the button 'Submit', so I can't continue with my purchase and I switch to IE8 browser to buy anything on the internet. Clues?

    This has happened

    A few times a week

    Is a few weeks ago

    Your UserAgent string in Firefox is totally messed up by another program that you have installed and Barclays does not know you use Firefox 3.6.6 - it is probably similar to IE 6.0 on this site.
    http://en.Wikipedia.org/wiki/USER_AGENT

    type of topic: config in the URL bar and press ENTER.
    If you see the warning, you can confirm that you want to access this page.
    Filter = general.useragent.
    Preferences are "BOLD", a line at a time, and then select reset, right click
    Then restart Firefox

  • Printing of multiple numbers of document/picture on a single page

    I have a separate document for each week of the year, each document has a worksheet in it. I would like to print the worksheets in each document, but want to put more than one of them on a page. Is this possible? So far, I can only print each individual worksheet... Thanks for the tips!

    Hi pmgw,

    I don't know any way to print a table of two separate documents on a single page in a single step. There are several ways to do this using multiple steps.

    1. You can configure individual documents so that the tables you want to place on the printed page even alternate position on their leaves, 1 week at the top, 2 bottom, week 3 on top, etc.
      Two consecutive weeks can then be printed on a single page by printing the first, reinserting the page into the printer using the same orientation *, then print the second.
    2. Open the documents numbers during the two weeks that you want to print.
      In the second, select the table to print. Copy.
      Switch to the first. Click on an empty space on the map. Dough.
      Drag the table glued in position. Print.
      (optional) Select the pasted table and press DELETE.
    3. Open a document of 'Blank canvas' pages.
      Open documents from figures for the two weeks that you want to print.
      Copy and paste the table of each document numbers in the Pages of the document.
      Print.

    Notes:

    Second printing works - Orientation: the best way to ensure that the document is oriented the same for the two rounds is to place a light pencil mark near the center of the edge of the paper closest to you when it is in the tray. After the first run, replace the paper in the tray with the pencil mark in the same position. U

    Table selection: to select an entire table, you can place the mouse pointer on an outer border of the table. When the pointer icon changes to a line crossed by a two-headed arrow, click to select the entire table. Or click the table icon in the sidebar (Numbers ' 09). None of these methods to select a table to move or copy.

    Or (once) click any cell in the table, and then press command + A to select all. Use this method to copy the contents of the table. When glued, the result is the same as copy and paste by using the first two methods.

    The use of the Pages: the advantage of paste tables into Pages is an easier control of the appearance of the printed page. If you do this often, I would say adding guides to layout of the document Pages indicating where to place both calendars, and then deleting the calendars (leaving the guides) and save the document as a template.

    Kind regards

    Barry

Maybe you are looking for