How to process a page without displaying?

I have a 1 page that collects the data and then the data is passed to the page 2, that treats and returns the results to page 1. How can I run 2 page without displaying or having a manual release (that is to say, click on the submit button)?
Thank you

Hello

Or, you could put the process in an application process and use Ajax to run it and return some results are needed in Page 1.

If you don't want to use a Page 2, you can get "Autosubmit" page by adding a new region HTML in the display point 'before foot"on the page. The Source of the region for this would be something like:

<script type="text/javascript">
doSubmit("P2_SUBMIT");
</script>

This would require that you have a button (called P2_SUBMIT, or whatever you want) to the Page 2 which is a submit and a branch back to Page 1, triggered by the present. The doSubmit() would be called as soon as it is rendered by the browser, so the page would be submitted immediately - so ensure that it is at the bottom of the page for all elements on the page you need, as well as the button, have been made. You should also consider hiding everything on the page so that the user does not see them - their, all they would see would be Page 1 refreshing. I have used this method in older versions of the Apex and it worked pretty well.

Andy

Tags: Database

Similar Questions

  • How to save the item without displaying the page

    Hello

    I have the need to save the item without displaying the page.

    thanx

    In your view of yyy Table object create an attribute for BusinessGroupId you like to save it in your table of yyy VO.

    Now when you click on the button save capture this ViewObject and assign to this attribute VO running. I guess that yyytableVO is based EO.

    Extract

    Controller PFR Code
    
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    pageContext.getParameter("Save") != null)
    {
      OAViewObject vo = (OAViewObject)am.findViewObject("yyyTableVO");
      if (vo != null)
      {
         vo.getCurrentRow.setAttribute("BusinessGroupId", value);//value is what you have capture from pageContext.getparameter
    
       }
    
    }
    

    Thank you
    -Anil

  • How do you replace pages without ruining the document tags.

    I was wondering if someone could help me with the replacement of pages in a pdf file combined without removing the tags. Thanks in advance

    Hey stephanief62147876,

    There is a wire double and has already responded.

    Check here: how it replaces pages without ruining the tags?

    Kind regards

    Ana Maria

  • run a page without display

    All,

    is it possible to run a page in the background without showing this page apex 4.2? I want to execute a process page but don't not to view this page?

    Thank you.

    Finally, I did this by copying the collection on the pages the two first and 3rd can change the train to move from page 1 to 3.

  • How to choose the page to display

    I used templates to create the site. When I look in the browser, so I don't see that model the main display page. I want to fix this problem and put the correct file in the order, so it can display correctly in the browser.

    @

    You must create your template pages.

    ALT-Web Design & Publishing: working with templates in Dreamweaver (.dwt files)

    1. Go to file > new page > model.
    2. Select the desired model.
    3. Press the button create.
    4. SaveAs index.html
    5. Repeat for other pages of the site.
  • How do you replace pages without ruining the tags?

    Hello

    I was wondering if someone could help me with the replacement of pages in a pdf file combined without removing the tags. Thank you in advance.

    Replacement of pages cannot preserve the old file tags. Tags are nested in the page and not separable from him. Often you can insert Tags pages into a document (and delete the other pages), but it seems to invite the problems and document corruption. Tags identify after any flow that is not purely paged. Better to work very hard to avoid the scenario.

  • How to make a call without displaying message on OS 10.3?

    Who should not have been listed yet.  Sorry for the confusion, I'll have this page updated accordingly.

  • [JS CS5] Place the PDF pages without displaying alerts

    Hello

    I created a script to place several PDF pages in a document.

    First of all, I need to get the length of PDF pages with a dedicated function.

    Sometimes when you place a PDF page I get an error: PDF import alert: the following fonts are missing...

    Since I use this function just to get the length of PDF pages, is it possible to kill or keep these non visible alert automatically windows?

    Thank you.

    Hi Radelli,

    Will need you this line:

    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.neverInteract;

    THX

    csm_phil

  • When starting, how can I get Firefox to display recent web pages and research

    Until recently, Firefox has always screen images of my most popular sites recently used. Now, I have somewhat changed my preferences so the screen is empty without images. How to restore the display feature?

    You must use a colon and not one point between the two words: Subject: config.

    topic: is a Protocol, as seen by this colon that is used to access the integrated pages.

    The same goes for the topic: newtab page that displays thumbnails.

  • Process of page does not work when column for APEX_ITEM. HIDDEN is not displayed

    I created a region of report based on an SQl query. In the query that I have three columns that should be in a table, but 2 of the 3 columns should not be visible on the report. Therefore, I don't have to Show checked for them in column of the report region attributes.

    In my tests, if I do not display the columns that are in the tables in the report and run the process of page to insert records into a table, I get the error "no data found". Conversely, if I show columns, my insert is successful.

    That's how work bays? Or is there something that I did not properly.

    Here is the query for the report:
    SELECT APEX_ITEM. ASSISTED BY CHECKBOX (1, ROWNUM, "CHECKED");
    APEX_ITEM. Hidden(2,C.PARTY_ID) ID-this is the column I want to hide.
    APEX_ITEM. Hidden(3,C.PARTY_TYPE_CODE) PTYP-this is the column I want to hide.
    C.PARTY_TYPE_CODE,
    S.PERSON_ID,
    S.PERSON_FIRST_NAME AS THE NAME,
    C.PARTY_CASE_ID

    OF THE CASE. C PARTY
    JOIN INTERNAL DN. PERSON S
    ON C.PARTY_ID = S.PERSON_ID

    WHERE C.PARTY_CASE_ID =: P18_CDBCASE_ID
    AND C.PARTY_SEQ_NO =: P18_SEQ


    Thank you
    Keisha

    Published by: user4579720 on 16 Sep, 2009 14:30

    Keisha,

    If you uncheck the "Show" option, then the HTML corresponding to this element is not rendered on the page. Thus, when you try to inspect this element through APEX_APPLICATION. G_F02, it does not exist.

    A trick I use when I want to have hidden items on the page, but does not make them take all space, is to concatenate them to the items that will be visible.

    Using your query for example, I would like to re - write like this:

    SELECT APEX_ITEM.CHECKBOX(1,ROWNUM,'CHECKED')ATTENDED,
    APEX_ITEM.HIDDEN(2,C.PARTY_ID)
      || APEX_ITEM.HIDDEN(3,C.PARTY_TYPE_CODE)
      || C.PARTY_TYPE_CODE PARTY_TYPE_CODE,
    S.PERSON_ID,
    S.PERSON_FIRST_NAME AS NAME,
    C.PARTY_CASE_ID
    
    FROM CASE.PARTY C
    INNER JOIN DN.PERSON S
    ON C.PARTY_ID = S.PERSON_ID
    
    WHERE C.PARTY_CASE_ID = :P18_CDBCASE_ID
    AND C.PARTY_SEQ_NO = :P18_SEQ
    

    Thus, the second report APEX column will contain the HTML code for the PARTY_ID & PARTY_TYPE_CODE hidden items, as well as the value of PARTY_TYPE_CODE. When you submit the page, you should not have problems.

    Thank you

    -Scott-

    http://sumnertechnologies.com/
    http://spendolini.blogspot.com/

  • How can I go to the top of a Web page without scrolling?  On a PC, I hit the 'Home' button

    How do the top of a Web page without scrolling?  On a PC, I hit the 'home' button

    If you are using Firefox, you could hit the 'Home' button

  • In the lower left corner it used to show the e-mail verification process, and it now displays an e-mail account. How to back emil prosedd info.

    In the lower left corner it used to show the e-mail verification process, and it now displays an e-mail account. How can I get information about the e-mail return process.

    The add on Adblock Plus is known to cause this problem. Disable this add if you have it and see if things go back to normal.

    If you do not have Adblock Plus, restart with all add ons disabled and see if someone else is at the origin of the problem.

  • How can I stop Firefox asking me over and over again (even on pages without Flash content) to install Flash? I don't want to not installed Flash and this stupid pop-up.

    Then, even when I load Web sites (like those that we here at my work have created) with very simple HTML and absolutely nothing Flash related, I always get a pop-up asking me to install flash (pop down from the URL bar on the left.) How can I stop this without disable all updates of plug-in?

    Also, why in the name of all that is good it wonder on Flash when I have no pages open with anything remotely Flash like on them?

    Thanks to anyone who can answer.

    my thought was that maybe an extension is inserting the flash code in each page visited...

  • Whenever I start Firefox, my home page is displayed, and then another tab of a page I looked at in the past. I don't know how to do stop loading up this extra page on start up. Suggestions? Thank you!

    Whenever I start Firefox, my home page is displayed, and then another tab of a page I looked at in the past. I don't know how to do stop to load to the top of this additional page at startup and can't seem to find information on how to disable this junk page. Any suggestions? Thank you!!

    Maybe you inadvertently set both pages to be your Homepage"(s)"?

    See How to set the home page

  • I got an iphone 4 to a friend in the Canada. I want to use it here in the Philippines as a regular iPad reserved for wifi, how can I use it without sim card? It does not pass the activation page. Help please?

    I got an iphone 4 to a friend in the Canada. I want to use it here in the Philippines as a regular iPad reserved for wifi, how can I use it without sim card? It does not pass the activation page. Help please?

    You can activate it without a SIM card. If it is locked, it takes a SIM card by the carrier, for it is locked. The SIM card should not be linked to an active line of service, but it must be present to activate it.

Maybe you are looking for

  • HP pavilion dv6-7045ez: impossible to start SSD

    Hello, I changed my old HDD to SSD (Kingston hyperX fury 240 GB, controller SandForce® SF-2281). I tried to install windows 7, windows 10 and debian, but I still have the same problem, during installation reboot to complete, it is impossible to boot

  • HP Officejet Pro 8600: scanning

    I'm scanning a package which some pages are double-sided and some pages are simple face.  So I am scanning double-sided.  Is there a way to set the scan to PDF and eliminate blank pages?

  • Need help to resolve Outlook express problem error number: 0x800C0133.

    When I open my Outlook Express mailbox, "I see the message: error number: 0x800C0133. I can send messages, but cannot receive any. The other problem is the message when you use Outlook Express, which keeps popping up all the time: "to free up space,

  • DNS no longer works on LAN__

    I have xp with two NICs were used for Internet and one for the lan.  They use a modem and share the internet connection.  Things have worked well for the past 7 years. However, this week it started having a problem of not being able to go to the inte

  • Is it possible to reinstall Vista OEM on the HP laptop after using the Norton Ghost software?

    Hello I'm in a bit of trouble. Please help me. In 2007, I bought a HP laptop which of course came with a preinstalled Windows Vista. My friend did a back-up for me using Norton Ghost. Now I do not use Ghost. I would like to re - install Windows Vista