How can I navigate to a new page when after-submit process running proc

I have a long running procedure and would like to provide the users with an animated gif to indicate progress that updates a description line to indicate the current step in the process.
Currently I have a couple pages in this application in which a stored procedure in a package is called which performs a long-running process which updates progress in a table. These processes have a single parameter argument. In these cases I call the procedure via the Job Scheduler as part of my After-Submit process and the page navigation jumps to another page which shows a graphical representation of % complete based on the progress updates in the table and refreshes itself every 5 seconds until the job is complete. This works fine.
I am now running into an issue where I have a more complex set of processes, with a number of parameters. To resolve this I used the same process as above, however, I first check to see if the process exists in the Job Scheduler, if not I create it. I then set all of the parameters and tell the job scheduler to execute the procedure. This should work similar to the process I am running on the other pages, however, in this page where I have multiple parameters and send an execute command rather than an execute immediate on job creation, the system runs the entire job prior to running the page branch, as a result the end user is stuck on a hanging page with no user feedback for two minutes after pressing submit.
I am looking for how to call the procedure and have the branch execute so a progress screen can be viewed. I am not committed to the use of the job scheduler if there is a better way.
Any help is greatly appreciated.

The process involves
(1) a detail table filled with phone usage data, approximately 175,000 records per month.
(2) a table that stores what various combinations of codes in the detail table translate to for types of calls or data transmissions
(3) a summary table for the months calls and billing
(4) the E-Business Suite.
(5) A GTT for temporary crossreference storage
(6) A GTT for reporting data
I have a parameter page where the user selects what data they are looking for and then submits it to generate the report.
The generation of data is a four step process.
(A) Retrieve the Code Combination ID's for the phone usage specified in the parameters from the summary billing table(1) into a GTT(5)
(B) Query the department and Account Code Block Details from E-Business Suite(3) (using dblink) for the CCID's in step one and add to the GTT(5)
(C) Run a query which uses the detail table(1), a function against the crossref table(2), and the crossreference GTT(5) to create the output in the report GTT(6)
(D) An ApEx page process that counts the output and returns to a page without Export to Excel for over 65000 records or with Export for under.
The parameter page is an ApEx page with some text fields, a couple date fields, and some checkboxes. An after submit process calls a packaged procedure which calls separate procedures for (A), (B), and (C), the page then branches to a page that shows an animated gif and current step of the process {this is what is not working right now}. Once the task completes this page branches as per (D) to a page that shows all the contents of the GTT report(6).
The process works successfully with the exception that instead of going to a page to show the process the system simply hangs on the parameter page after the submit is pressed until the processing is done and then goes to the processing page just long enough to branch to the report page.
I am beginning to think that I should alter the design to not use the GTT, but include the username as a field in the output table with a binary index on it for speed so that I can use the job scheduler to run a separate session and hence enable the processing page. The processing page is important as the query can take anywhere from 2 minutes to 2 hours to generate the report depending upon the parameters.

Similar Messages

  • On my mac when i click on pages, a new document doesn't open instantly  but a window with my files open and then  have to click on the left bottom new document in order to open one. How can i have directly a new document when i click on pages icon

    On my mac when i click on pages, a new document doesn't open instantly  but a window with my files open and then  have to click on the left bottom < new document> in order to open one. How can i have directly a new document when i click on pages icon

    How to open an existing Pages document?
    Click Pages icon in the Dock to launch Pages.
    When Pages is open, click File menu in the  Pages menu bar.
    Select “Open”.
    When the select document  dialog box opens up, highlight/select the document and click “Open”
    at the bottom right corner of the dialog box.
    s
    https://support.apple.com/kb/PH15304?locale=en_US

  • How can i move to a new page in smartform?

    hi friends
    i hav a smartform with two pages.
    the fist page contains the Main window and 3 Secondary windows.
    in the 1st page i'm displaying some line items and in the main window i gave the command to
    go to Page 2.
    the 2nd page contains only one Secondary Window.
    in that i want to display a table with many line items.
    if it contains only 20 line items its works fine; becoz of the window size.
    how can i move to a new page if it contains more line items?

    Hi,
    You need to create main Window on second page also.
    And in Form Attributes..there is an option for Next page.
    So there you mention the next page name.
    This will solve the problem.
    Thanks.
    Swati.

  • How can I navigate to the specified page?

    h5. I'm a novice in JavaServer Faces.
    today i meet a problem that i can not navigate to the specified page in my application.
    the version of the jsf API is : jsf-1.1_02-b08
    my web.xml is configed as following:
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app id="WebApp_ID" version="2.4"
    xmlns="[http://java.sun.com/xml/ns/j2ee]" xmlns:xsi="[http://www.w3.org/2001/XMLSchema-instance]"
    xsi:schemaLocation="[http://java.sun.com/xml/ns/j2ee] [http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd]">
    <display-name>JavaServerFaces</display-name>
    <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>/faces/*</url-pattern>
    </servlet-mapping>
    <welcome-file-list>
    <welcome-file>faces/Charpter1/HelloWorld.jsp</welcome-file>
    </welcome-file-list>
    </web-app>
    my faces-config.xml is configed as following:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE faces-config PUBLIC
    "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
    "[http://java.sun.com/dtd/web-facesconfig_1_1.dtd]">
    <faces-config>
    <managed-bean>
    <managed-bean-name>
    helloBean
    </managed-bean-name>
    <managed-bean-class>org.jia.hello.HelloBean</managed-bean-class>
    <managed-bean-scope>session</managed-bean-scope>
    </managed-bean>
    <navigation-rule>
    <from-view-id>Charpter1/HelloWorld.jsp</from-view-id>
    <navigation-case>
    <from-outcome>success</from-outcome>
    <to-view-id>Charpter1/GoodBye.jsp</to-view-id>
    </navigation-case>
    </navigation-rule>
    </faces-config>
    my HelloWorld.jsp is like this:
    <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "[http://www.w3.org/TR/html4/loose.dtd]">
    <%@ taglib uri="[http://java.sun.com/jsf/core]" prefix="f"%>
    <%@ taglib uri="[http://java.sun.com/jsf/html]" prefix="h"%>
    <f:view>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>JSF In Action - Hello, World!</title>
    </head>
    <body>
    <h:form id="welcomeForm">
    <h:outputText id="test" value="Welcome to JavaServer Faces!"
    style="font-family: Arial, sans-serif; font-size:24; color:green" />
    <p><h:message id="errors" for="helloInput" style="color:red" /></p>
    <p><h:outputLabel for="helloInput">
    <h:outputText id="helloInputLabel" value="Enter number of controls to display:" />
    </h:outputLabel>
    <h:inputText id="helloInput" value="#{helloBean.numControls}"
    required="true">
    <f:validateLongRange minimum="1" maximum="500" />
    </h:inputText></p>
    <p><h:panelGrid id="controlPanel"
    binding="#{helloBean.controlPanel}" columns="20" border="1"
    cellspacing="0" /></p>
    <h:commandButton id="redisplayCommand" type="submit" value="Redisplay"
    actionListener="#{helloBean.addControls}" />
    <h:commandButton id="goodByeCommand" type="submit" value="GoodBye"
    action="#{helloBean.goodBye}" immediate="true"/>
    </h:form>
    </body>
    </html>
    </f:view>
    the content of the HelloBean.java is as following:
    package org.jia.hello;
    import java.util.List;
    import javax.faces.application.Application;
    import javax.faces.component.html.HtmlOutputText;
    import javax.faces.component.html.HtmlPanelGrid;
    import javax.faces.context.FacesContext;
    import javax.faces.event.ActionEvent;
    h5. public class HelloBean {
    private int numControls;
    private HtmlPanelGrid controlPanel;
    h5. public int getNumControls() {
    return numControls;
    h5. public void setNumControls(int numControls) {
    this.numControls = numControls;
    h5. public HtmlPanelGrid getControlPanel() {
    return controlPanel;
    h5. public void setControlPanel(HtmlPanelGrid controlPanel) {
    this.controlPanel = controlPanel;
    h5. public void addControls(ActionEvent actionEvent) {
    Application application = FacesContext.getCurrentInstance()
    .getApplication();
    List children = controlPanel.getChildren();
    children.clear();
    for (int i = 0; i < numControls; i++) {
    HtmlOutputText output = (HtmlOutputText) application
    .createComponent(HtmlOutputText.COMPONENT_TYPE);
    output.setValue(" " + i + " ");
    output.setStyle("color: blue");
    children.add(output);
    public String goodBye() {
    return "success";
    h5.
    when I run the application, HelloWorld.jsp can be displayed correctly, but when i click the "GoodBye" button in the HelloWorld.jsp, the page can not skip from current page to GoodBye.jsp, I noted that, the URL in my browser is: [http://localhost:8080/JavaServerFaces/faces/Charpter1/HelloWorld.jsp;jsessionid=D7F83C0F448E5B5AAD5897BEB5667A67]
    Then I try to replace the "GoodBye" button's action with "success" directly, but the problem is still occured.
    I could not know how this problem is caused, could you help me?

    BalusC wrote:
    zhangzhexin wrote:
    today i meet a problem that i can not navigate to the specified page in my application.This can have several causes: a validation or conversion error has occurred, or the navigation case doesn't match.please note that my "GoodBye" button use the property "immediate" and set "true" to it.
    the version of the jsf API is : jsf-1.1_02-b08
    This is over 3 years old. It would be smart to upgrade to the most recent version. Get it here: [http://javaserverfaces.dev.java.net].
    I think the problem of navigation does not have a relationship with the current jsf API version I used.
    [lot of unformatted code]Please use code tags to post your code. They will be nicely formatted and better readable. Press the CODE button to get them.I have used the code tag to format my code.
    I could not know how this problem is caused, could you help me? Add <h:messages/> to the page to get notified of any missing validation or conversion errors. Verify using the JSF manual/tutorial if the navigation case is correct.In HelloWorld.jsp, I have used the <h:mesage/> and when I click the GoodBye button, the HelloWorld is refreshed only, there are not any error messages or validation messages displaied on the HelloWorld.jsp page.
    I will repaste my code with code tag,
    My web.xml is configed as following:
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app id="WebApp_ID" version="2.4"
         xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
         <display-name>JavaServerFaces</display-name>
         <servlet>
              <servlet-name>Faces Servlet</servlet-name>
              <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
              <load-on-startup>1</load-on-startup>
         </servlet>
         <servlet-mapping>
              <servlet-name>Faces Servlet</servlet-name>
              <url-pattern>/faces/*</url-pattern>
         </servlet-mapping>
         <welcome-file-list>
              <welcome-file>faces/Charpter1/HelloWorld.jsp</welcome-file>
         </welcome-file-list>
    </web-app>My faces-config.xml is configed as following:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE faces-config PUBLIC
        "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
        "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
    <faces-config>
         <managed-bean>
              <managed-bean-name>
                   helloBean
              </managed-bean-name>
              <managed-bean-class>org.jia.hello.HelloBean</managed-bean-class>
              <managed-bean-scope>session</managed-bean-scope>
         </managed-bean>
         <navigation-rule>
              <from-view-id>/HelloWorld.jsp</from-view-id>
              <navigation-case>
                   <from-outcome>success</from-outcome>
                   <to-view-id>Charpter1/GoodBye.jsp</to-view-id>
              </navigation-case>
         </navigation-rule>
    </faces-config>and my HelloWorld.jsp is as following:
    <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
         pageEncoding="ISO-8859-1"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <script language="javascript">
         function init(){
              document.getElementById("welcomeForm:helloInput").value = "";
    </script>
    <f:view>
         <html>
         <head>
         <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
         <title>JSF In Action - Hello, World!</title>
         </head>
         <body onload="javascirpt:init();">
         <h:form id="welcomeForm">
              <h:outputText id="test" value="Welcome to JavaServer Faces!"
                   style="font-family: Arial, sans-serif; font-size:24; color:green" />
              <p><h:message id="errors" for="helloInput" style="color:red" /></p>
              <p><h:outputLabel for="helloInput">
                   <h:outputText id="helloInputLabel" value="Enter number of controls to display:" />
              </h:outputLabel>
              <h:inputText id="helloInput" value="#{helloBean.numControls}"
                   required="true">
                   <f:validateLongRange minimum="1" maximum="500" />
              </h:inputText></p>
              <p><h:panelGrid id="controlPanel"
                   binding="#{helloBean.controlPanel}" columns="20" border="1"
                   cellspacing="0" /></p>
              <h:commandButton id="redisplayCommand" type="submit" value="Redisplay"
                   actionListener="#{helloBean.addControls}" />
              <h:commandButton id="goodByeCommand" type="submit" value="GoodBye"
                   action="success" immediate="true"/>
         </h:form>
         </body>
         </html>
    </f:view>my managed bean's content is like this:
    package org.jia.hello;
    import java.util.List;
    import javax.faces.application.Application;
    import javax.faces.component.html.HtmlOutputText;
    import javax.faces.component.html.HtmlPanelGrid;
    import javax.faces.context.FacesContext;
    import javax.faces.event.ActionEvent;
    public class HelloBean {
         private int numControls;
         private HtmlPanelGrid controlPanel;
         public int getNumControls() {
              return numControls;
         public void setNumControls(int numControls) {
              this.numControls = numControls;
         public HtmlPanelGrid getControlPanel() {
              return controlPanel;
         public void setControlPanel(HtmlPanelGrid controlPanel) {
              this.controlPanel = controlPanel;
         public void addControls(ActionEvent actionEvent) {
              Application application = FacesContext.getCurrentInstance()
                        .getApplication();
              List children = controlPanel.getChildren();
              children.clear();
              for (int i = 0; i < numControls; i++) {
                   HtmlOutputText output = (HtmlOutputText) application
                             .createComponent(HtmlOutputText.COMPONENT_TYPE);
                   output.setValue(" " + i + " ");
                   output.setStyle("color: blue");
                   children.add(output);
    }I use the Tomcat 5.5.27 as the web container.
    I can't understand why the page can not be navigated to the GoodBye.jsp when I click GoodBye button on the HelloWorld.jsp.
    I really need your help. thanks.

  • How can i set my own default page when i enter my url

    whenever i key in my url, the index.html appears... how can i set my own default page instead?? thank u

    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
    "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
    <web-app>
    <welcome-fiile-list>
    <welcome-file>over.jsp</welcome-file>
    </welcome-file-list>
    </web-app>
    please see the above.
    i have saved my jsp files in the root dir of webapps. in c:/tomcat/webapps/root/web_inf/web.xml , the content of this web.xml is as shown above.... but it still dont work .... how i can i rectify this problem.
    really thanks a lot

  • How can I re-download the new pages.  App Center won't let me.  Says it is installed.

    I have messed up Pages 5 and now all I have on my Mac is the old pages 4.?  When I go to the App Center it tells me that the new Pages is installed.  But I have corrupted it somehow and need to download it again.  How do I do that when the App Store tells me it is already installed?

    Dah veed,
    I tried this but when I go to the purschases page, Pages in greyed out and still says "installed."  Any other suggestons?
    I can't find anywhere where another copy of Pages is installed.

  • How can I recover from the new Pages

    Does anyone know how I can recover a Pages file which has become locked into the new Pages program? I never edited it with the new Pages, but now I'm told I must have the new Pages to open it. I even tried opening it with the new Pages and converting it to PDF with the plan to copy and paste it into Pages '09, but i lost control of line spacing, etc. (It is a 4-column file of data on one page (in the '09 version, that is). Appreciate any help.

    Jay,
    Surely you did edit the file with Pages 5.2, or you wouldn't be having this problem. It's an easy mistake to make since both versions have exactly the same filename and extension. They are just stored in different folders. 5.2 is in Applications and 4.3 is in Applications/iWork '09.
    Use TimeMachine to locate a clean backup file.
    Jerry

  • How can I mail merge in new Pages 5.2 and send it by Mail?

         How can I merge mail in the new Pages version 5.2  and send it by Mail?
         It seems that there is not  a mail merger available anymore for Pages. Although it is a powerfull mecanism to send a bunch of letters by Mail, Apple has  downgraded themselves by excluding this feature from this app.  What is the solution to this problem?
         Should i seek a Microsoft program to resolve this issue, because the new version of pages simply will not cut it without these necessary features.

    If you have the previous version of Number and Pages you can still use those applications to perform a mail merge.  Neither the previous version nor the latest version support mass emailing.  There are other applications that can do that.
    Using my favorite search engine I was able to identify several services that can perform a mass email campaign:
    I used the search term: "mass email service"

  • How can i redirect to another JSP page automatically after some event

    I am developing a Tic-Tac-Toe game which can be played between two players who are on two different machines.
    When the first player comes to the Welcome page he will redirected to a Waiting Page when he clicks on the 'Start' button.
    When the second player comes to the Welcome page he will be redirected directly to the Game page, on clicking the 'Start' button.
    So how can i redirect the first player to the Game page after the second player is available for the game.
    And if i want to manage multiple instances of my game how can i do that//
    I am using JSP, javascript and MySQL for developing my project, and I am new to all these tools, but i would still like to carry on with all these only

    This is a bit of a challenge because of the nature of the web. Generally the web is "pull only" meaning that the browser has to initiate any interactions - the server can't push data to the browser if it wasn't asked to.
    The easiest way to solve this is using AJAX via JavaScript to periodically poll the server for any status changes. There are other ways (the Comet protocol is one) but they start to get a bit difficult and are still a bit new and not completely supported in a standards way. And to be honest they are still basically polling though in a more efficient way.
    Are you using a JavaScript framework? Most of the JavaScript frameworks that I've used have built in support for polling in the background. You'd have to have the JSP/servlet side be able to handle these polling requests from the browser and, when another person joins the game, the server indicates that and sends that back to the browser.
    As far as multiple instances I would have the server automatically pair up users as needed. So when the first player arrives he has to wait for another player. When the second player arrives a new game is created for those two players. Now a third player arrives and waits until a fourth player shows up. When player 4 joins another separate game is created. Presumably the conversation between the browser and the server will need to include a "game number" or other unique number so that the server can keep track of the games.

  • How to populate data in a new page when user place mouse on table cell

    Hi friends,
    i am working on OAF. I have one table with data coming from the backend. In a table some cells repersents wiht "P" or "C", till that Ok. but when user place mouse pointer over the cell, data should be populated in addtion text( babul text) or new page should be opened and it will show the related information about perticular cell.
    in my R&D. i created one OACellformateBean and attached messageStyled Text. MessageStyled text have property like " setMouseOver(MulInode, string)". i am really not aware what are the areguments i need to pass to this method ?. what is MultiInode.
    Pls help me in this reagard?. i am really in trouble ?????

    Thanks a lot. Tapash Ray, atleast should it possiable to open a new window when user click cell. could you please suggest some toher way similar to this , which we can get the data to diplay in a new window.

  • How do I post to a new page when the 1st page is full?

    How do you create a bul. board where the posts go on a 2nd
    page when the first page is filled ...and 3rd page when 2nd is
    full, etc ... Maybe I can stick a wordcount in a while loop before
    the CFOutPUT Tag? Is there such a variable that holds a word count
    or better still, a line count?
    thnx a billion, please, please help!

    Check out this code-Use a cfc which will be the same for you
    and then change my query for yours in the .cfm HTHs:
    functions.cfc:
    <cfcomponent output="yes">
    <!--- Next x record function --->
    <cffunction name="nextXpage" access="public"
    returntype="struct" hint="Next x page function" output="No">
    <cfargument name="recordcount" required="Yes" default="0"
    type="numeric" hint="The total numbers of records / values">
    <cfargument name="page" required="Yes" type="numeric"
    default="0" hint="The page number that you are currently on. (for
    example URL.page)">
    <cfargument name="maxrows" required="No" type="numeric"
    default="10" hint="The maximum records / values to be displayed per
    page">
    <!--- Define the return structure --->
    <cfset var nextXpage = structNew()>
    <!--- Calculate how much page are available according to
    the maxrows displayed --->
    <cfset nextXpage.pagecount =
    CEILING(arguments.recordcount / arguments.maxrows)>
    <!--- Set the maximum rows to be displayed --->
    <cfset nextXpage.maxrows = arguments.maxrows>
    <!--- Set the currentpage --->
    <cfset nextXpage.currentpage = arguments.page>
    <!--- Set the currentpage --->
    <cfset nextXpage.recordcount = arguments.recordcount>
    <!--- Set the startrow value --->
    <cfif arguments.page eq 1>
    <cfset nextXpage.startrow = 1>
    <cfelse>
    <cfset nextXpage.startrow = (arguments.page *
    arguments.maxrows) - (arguments.maxrows -1)>
    </cfif>
    <!--- Define the previous and next values. --->
    <!--- Next values --->
    <cfif arguments.page neq nextXpage.pagecount>
    <cfset nextXpage.next = true>
    <cfset nextXpage.nextpage = arguments.page + 1>
    <cfelse>
    <cfset nextXpage.next = false>
    <cfset nextXpage.nextpage = 1>
    </cfif>
    <!--- Previous values --->
    <cfif arguments.page eq 1>
    <cfset nextXpage.previous = false>
    <cfset nextXpage.previouspage = 1>
    <cfelse>
    <cfset nextXpage.previous = true>
    <cfset nextXpage.previouspage = arguments.page - 1>
    </cfif>
    <!--- Return the structure --->
    <cfreturn nextXpage>
    </cffunction>
    </cfcomponent>
    Then on your output page where you have the info:
    .cfm page:
    <cfquery name="qrysales"
    datasource="davanzo_villa.admindb" >
    SELECT DISTINCT
    clientinfo.Id, clientinfo.RemoteAddress, clientinfo.visit,
    clientinfo.country
    FROM clientinfo
    order by clientinfo.Id
    </cfquery>
    <!--- display hit counter --->
    <cfquery name="GetHits">
    SELECT * FROM hit_counter
    </cfquery>
    <cfparam name="URL.page" default="1">
    <!--- Determine the navigation parameters --->
    <cfset functions =
    createobject("component","functions")>
    <cfset nav =
    functions.nextXpage(qrysales.recordcount,URL.page,15)>
    <table width="792">
    <h4>Total Hits: <CFOUTPUT
    query="GetHits">#hit_count#</cfoutput></h4>
    <h4>Total Unique Visitors:
    <cfoutput>#qrySales.RecordCount#</cfoutput></h4>
    </table>
    <table width="792">
    <tr><td>
    <cfoutput>Unique Visitors: #nav.recordcount# (page
    #nav.currentpage# of #nav.pagecount#)
    <cfif nav.previous>
    <a
    href="hitcount.cfm?page=#nav.previouspage#">Previous</a>
    <cfelse>
    Previous
    </cfif>
    <cfif nav.next>
    <a
    href="hitcount.cfm?page=#nav.nextpage#">Next</a>
    <cfelse>
    Next
    </cfif>
    <ul>
    <cfloop From = "1" To = "#nav.pagecount#" index =
    "pagenumber">
    <cfoutput>
    <a
    href="hitcount.cfm?page=#pagenumber#">#pagenumber#</a></cfoutput>
    </cfloop>
    </ul>
    </cfoutput>
    </td></tr>
    </table>
    <table width="792">
    <tr>
    <td>Date</td>
    <td>Visitor Number</td>
    <td>Visitor`s IP Address</td>
    <td>Visitor`s Country</td>
    <td>Path Taken</td>
    </tr>
    <cfoutput query="qrysales" startrow="#nav.startrow#"
    maxrows="#nav.maxrows#">
    <tr>
    <td>#qrySales.visit#</td>
    <td>#qrySales.id#</td>
    <td>#qrySales.RemoteAddress#</td>
    <td><cfif qrysales.country neq ""><a
    href="country.cfm?Remote_Addr=#qrysales.RemoteAddress#">#qrySales.country#</a><cfelse><a
    href="country.cfm?Remote_Addr=#qrysales.RemoteAddress#">Find
    country</a></cfif></td>
    <td><a href="hitpathdetails.cfm?id=#id#">See path
    taken</a></td>
    </tr>
    </cfoutput>
    </table>

  • How can I add an extra in pages when creating a newsletter?

    Hi,
    I'm working on a newsletter in Pages via the newsletter template (I'm working in 5.2) it won't however let me add an extra page, I just have the two that are in the original template.
    Any ideas?
    Thanks.

    Hi Chl0w,
    In layout mode (again, Pages 5.x) you can use Insert (Page) from the menu bar or toolbar.
    Pages Help for Mac, Add, delete, and rearrange pages
    Add a page
    In a page layout document: Click Insert   in the toolbar, then choose Page.
    The new page appears at the end of the document.
    In a word-processing document: Add a page break. You can also add a section that begins on a new page.
    Take care,
    Nubz

  • How can main vi detect whether sub-vi closes after opening and running it by user?

    Hi I learned more using the call by reference node function.
    From what I know is that, after opening and running subvi by means of method nodes.
    So after running it, "call by reference" node stays active and there is no flow of data coming out of it till it is closed.
    However what if I do not want to use this "call by reference" node as I have multiple sub-vis to choose. So how does the main program detect that any one of sub-vi is closed by user?
     regards,
    Clement

    Hi Clement,
    first: you may run the vi with the option "wait until completion" set to false, the call-by-reference node will return promptly.
    2nd:
    There are many options to signal the completion of the subvi to the main vi: globals (easiest, but may lead to race conditions), LV2-style global, queues. You can even check the status of the subvi (running or not) via vi server.
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • How can I avoid using the new Pages

    For now I have chosen to forgo using the latest versions of Pages & Numbers and prefer thier predecessors. However the newer versions are  opened by default when downloading/clicking on DOC & XLS as well as .PAGES & .NUMBERS files. I know how to use the "Open With" command but I'd rather  avoid those extra steps. Can I either re-name or hide/move the new versions of these programs so they won't launch inadvertantly. I suppose I could delete them altogether and reacquire them later on. (Eventually I'll come around to using them but not now.)
    Best advice?
    Thank you.

    Bury the new apps 2 folders down.
    Peter

  • How can I set a default web-page when opening new tab?

    Every time I open a new tab the page is empty and I have to go to bookmarks or write URL-address to open a web-page.

    Install the following Add-ons:
    *'''''New TabURL''''': https://addons.mozilla.org/en-US/firefox/addon/newtaburl/
    *after install, set the options. ''Add-ons > Extensions > New TabURL > Options''
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

Maybe you are looking for

  • DBCO: Connection from sap R/3 oracle to SQL

    Hi, I am trying to carry out a connection with SQL through SAP, I carried out it based on the notes: 738371, 323151 and 178949, where my <b>CONNECTION</b> is:  DB Connection SQL_DESARROLLO DBMS                 MSS User name fiSBS password Conn. info

  • Time capsule hard drive starts/stops every 5 min: problem?

    Every five minutes, whether or not a time machine backup is due, my 1 TB time capsule hard drive starts, spools up, then stops (I used a stopwatch to time the interval).  Is this a problem?  Never happened when unit was new (late 2010), or before Lio

  • WLC 5508 , AP client dhcp address different from WLAN interface VLAN subnet?

    Hope the title makes sense, here's my situation: I have multiple businesses on 1 WLC 5508, there's a LAG to my core switch with seperate interfaces for each, broken up by vlans. My question is: if i have a WLAN setup to use interface "Company A" whic

  • Getting Dynamic Text To Act Like Static Text

    Hi, need help. I currently have 7 text/symbols that each move to the right when a button beneath expands in a mouseover.event. Working fine. With one exception: I need to set the text value of that text dynamically using loadVars (the text is dates t

  • How can I insert transitions between clips?

    I finished editing my seperate clips and now want to insert transitions between the clips, but that menu option is grayed out, so is the Movie Properties menu. What do I do?