Reports 6i keeps displaying old version of report output

Hi
I am using Forms and Reports 6i. Using web.show_document to diaplay the report.
Each time I run the report from the form it keeps displaying the same old information and the date on the report is always 20 Sep 2007. I have changed columns on the report, but the report still shows a report run on 20 Sep 2007 with the original columns.
However, I have run the same application from a different PC with the same log in id and password and the report works fine. Is there something like logs etc on my pc that needs to be cleared?
Thanks

I have noticed that when I run the report and the old version displays, I then go to Internet Explorer, click on Tools, then Internet Options and Delete Files, and run the report again, then the latest version displays.
Any help?????

Similar Messages

  • I recently upgraded to firefox 4, then switched back. when i went back to firefox 3.6, it said that this version would only be supported for a limited time. Is there any way to keep the old version?

    In 4, the tabs are on top of all of my bookmarks making them harder to access and there wasn't an arrow by the forward/back page buttons that pulled up a list of past pages. this new layout is not user friendly!

    There are solutions for those interface issues, but to address your question about keeping the old version, make sure your auto-update is set to ask you before updating you.
    Tools > Options > Advanced > Update mini-tab
    http://support.mozilla.com/en-US/kb/Updating%20Firefox#w_configuring-update-options

  • I have to keep an old version of Firefox for work but would like to download the current version to use personally. Is this possible?

    My work requires I use an old version of Firefox. This means I really can't use it for other things. I would like to install the new version but also keep the old version. Is that possible?

    Yes, you can download the newest version in a portable package so the newer version and the old version you need will keep their files separated from each other.
    http://portableapps.com/apps/internet/firefox_portable
    <!--Hi Moses!!!!!--> [https://support.mozilla.org/en-US/questions/1034886/edit/662278 moses]-->

  • I also want to keep my old version of PSE

    I recently purchased pse9, but I also want to keep my old version pse4.  How can I install my new version without losing my old version. Thanks

    Just install it. Nothing will happen to your old version.

  • JSF keeps displaying old values after Validation Phase fails

    Hi all,
    I would like to ask some help in understanding a particular behaviour that JSF shows when Validation Phase fails.
    I'm using:
    - Tomcat 7.0.2
    - JSF 1.2_12
    - RichFaces 3.3.3
    Problem description.
    I wrote a form with 4 input fields: an inputText and 3 selectOneMenu. The inputText is required while the selectOneMenus don't require any validation.
    Attached to the first selectOneMenu (row 32), is an a4j:support tag so that, whenever the change event is fired, the list of items of the second
    and the third selectOneMenu (row 44 and 58) are correctly filled (note that the mandatory of the inputText is ignored thanks to the ajaxSingle attribute).
    In particular, after loading the two lists of items, the actionListener forces the value of the second and the third selectOneMenu to null.
    This mechanism seems to work fine until I submit the whole form without filling the input text: as expected, JSF validation fails but if I change the value of
    the first selectOneMenu again (causing a new submit), the page keeps displaying the values specified before JSF validation failed for the second and the third
    selectOneMenu (note that the actionListener is still called and the values of the second and the third selectOneMenu are still forced to null).
    Since I'm using a simple PhaseListener, I noticed the following: before JSF validation fails, every time I change the value of the first selectOneMenu, JSF life
    cycle always calls the get method for the second and the third selectOneMenu during the Render Response Phase. In this way, JSF is able to "see" that
    those values have been set to null during the Invoke Application Phase.
    After validation fails, JSF stops calling those getters when I change the value of the first selectOneMenu.
    I hope my explanation was clear enough, thanks a lot for your help.
    Regards,
    Nico
    Web Page
    <?xml version='1.0' encoding='UTF-8' ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
                          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
          xmlns:f="http://java.sun.com/jsf/core"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:a4j="http://richfaces.org/a4j"
          xmlns:rich="http://richfaces.org/rich">
    <head>
      <title>Prove Rich</title>
    </head>
    <body>
      <h2>Prove Rich</h2>
      <f:view>
      <a4j:outputPanel ajaxRendered="true">
        <h:messages style="color:red" />
      </a4j:outputPanel>
      <h:form>
      <p>
         Input required: <h:inputText value="#{provaProbReplyBean.inputRequired}" required="true" />
      </p>
      <p>
           <h:outputText value="Scegli il canale:" />
           <h:selectOneMenu value="#{provaProbReplyBean.canale}">
            <f:selectItem itemLabel="--" itemValue="" />
            <f:selectItem itemLabel="Profamily" itemValue="Profamily" />
            <f:selectItem itemLabel="Captive" itemValue="Captive" />
            <a4j:support event="onchange" action="#{provaProbReplyBean.caricaProcBanche}"
                                  ajaxSingle="true" reRender="procedure, banche" />
         </h:selectOneMenu>
      </p>
      <p>
           <h:outputText value="Scegli la procedura:" />
           <h:selectOneMenu id="procedure" value="#{provaProbReplyBean.procedura}">
            <f:selectItem itemLabel="--" itemValue="" />
            <f:selectItems value="#{provaProbReplyBean.procedureList}" />
            <!-- immediately save the current value -->
            <a4j:support event="onchange" ajaxSingle="true" />
         </h:selectOneMenu>
      </p>
      <p>
           <h:outputText value="Scegli la banca:" />
           <h:selectOneMenu id="banche" value="#{provaProbReplyBean.banca}">
            <f:selectItem itemLabel="--" itemValue="" />
            <f:selectItems value="#{provaProbReplyBean.bancheList}" />
            <!-- immediately save the current value -->
            <a4j:support event="onchange" ajaxSingle="true" />
         </h:selectOneMenu>
      </p>
      <p><h:commandButton value="Submit" /></p>
      </h:form>
      </f:view>
    </body>
    </html>
    Bean
    public class ProvaProbReply {
         private String inputRequired;
         private String canale;
         private String procedura;
         private String banca;
         private Map<String, List<SelectItem>> canaliProc = new HashMap<String, List<SelectItem>>();
         private Map<String, List<SelectItem>> canaliBanche = new HashMap<String, List<SelectItem>>();
         private List<SelectItem> procedureList = new ArrayList<SelectItem>();
         private List<SelectItem> bancheList = new ArrayList<SelectItem>();
         public ProvaProbReply() {
              List<SelectItem> l = new ArrayList<SelectItem>();
              l.add(new SelectItem("Cessione del quinto"));
              l.add(new SelectItem("Credito al consumo"));
              l.add(new SelectItem("Mutui"));
              canaliProc.put("Profamily", l);
              l = new ArrayList<SelectItem>();
              l.add(new SelectItem("Credito al consumo"));
              canaliProc.put("Captive", l);
              l = new ArrayList<SelectItem>();
              canaliBanche.put("Profamily", l);
              l = new ArrayList<SelectItem>();
              l.add(new SelectItem("BDL"));
              l.add(new SelectItem("BM"));
              l.add(new SelectItem("BPM"));
              l.add(new SelectItem("CRA"));
              canaliBanche.put("Captive", l);
         public String getInputRequired() {
              return inputRequired;
         public void setInputRequired(String ir) {
              inputRequired = ir;
         public String getCanale() {
              return canale;
         public void setCanale(String c) {
              canale = c;
         public String getProcedura() {
              System.out.println("\ngetProcedura called\n");
              return procedura;
         public void setProcedura(String p) {
              procedura = p;
         public String getBanca() {
              System.out.println("\ngetBanca called\n");
              return banca;
         public void setBanca(String b) {
              banca = b;
         public List<SelectItem> getProcedureList() {
              return procedureList;
         public List<SelectItem> getBancheList() {
              return bancheList;
         public String caricaProcBanche() {
              System.out.println("\nListener called\n");
              procedureList.clear();
              bancheList.clear();
              if(canale != null && !canale.equals("")) {
                   procedureList.addAll(canaliProc.get(canale));
                   bancheList.addAll(canaliBanche.get(canale));
              System.out.println("BEFORE setting:\n");
              System.out.println("\nProcedura: "+procedura+"\n");
              System.out.println("Banca: "+banca+"\n");
              procedura = null;
              banca = null;
              System.out.println("\n\n\nAFTER setting:\n");
              System.out.println("\nProcedura: "+procedura+"\n");
              System.out.println("Banca: "+banca+"\n");
              return "";
    }Edited by: 869000 on 28-giu-2011 14.05

    I'm thinking this has to do with the fact that the UIComponents use the localValue after validation fails. This prevents the values from being overwritten when re-rendering the page, i.e. the inputs keep the value set by the user.
    The solution is to manipulate the components directly during the AJAX request when the first pull down is changed. Use the binding attribute to place them into your bean and clear the value directly. That way it will not matter that the expression is not evaluated.

  • How can I have the latest version FF8 installed AND keep my old version until I get used to FF8 ?

    I have also fopund that I have a Beta version FF 3.6 Beta 4
    I have no idea how this was installed, as I have not done it knowingly and consciously !!!
    It does not show up in ALL PROGRAMS from START.....
    But does appear in ADD/REMOVE PROGS via Control Panel....also in MY COMPUTER>Program files !!
    Both versions work...but my desktop short cut links to FF 3.6.24....and that is what I use all the time. (the Beta version must have been there for some time).....
    So this gave me the idea of maybe keeping my current version and also having a separate program FF8.... Until I get used to FF8...(see question https://support.mozilla.com/en-US/questions/897193#answer-277745)
    Maybe... 1. Install FF8 to a different location folder..say...Mozilla/Firefoxnew8
    2. Rename the existing FF version and create new desktop short cut.
    But the only problem I can see in these options is that when FF installs a new update automatically, on start up...... depending on which version I am using at the time...... I presume it will look for folder Mozilla/Firefox..... THEN WHAT WILL HAPPEN ??
    Your comments would be Most Welcome and appreciated.

    Do a custom install and install each version in its own program folder to use multiple Firefox versions.
    * https://support.mozilla.com/kb/Custom+installation+of+Firefox+on+Windows
    * https://support.mozilla.com/kb/Installing+a+previous+version+of+Firefox
    Create a new profile exclusively for each Firefox version.<br />
    Create a desktop shortcut with -P "profile" appended to the target to launch each Firefox version with its own profile.
    See these mozillaZine KB articles for information:
    * http://kb.mozillazine.org/Creating_a_new_Firefox_profile_on_Windows
    * http://kb.mozillazine.org/Shortcut_to_a_specific_profile
    * http://kb.mozillazine.org/Using_multiple_profiles_-_Firefox
    * http://kb.mozillazine.org/Opening_a_new_instance_of_Firefox_with_another_profile
    * http://kb.mozillazine.org/Testing_pre-release_versions
    <br />
    ''(in reply of a PM)''

  • How can I keep the old version of iMovie when I add the new version?

    In the past, when I new version of iMovie came out, I kept the old working version by puttting it inito a folder, and labeled it 'Old iMovie', or some such.  When I installed the new version, it didn't recognize that folder, and left the old version alone. That way, if there were bugs/problems with the new version, I could always revert to the "old" version, without probems.
    Would that still work?
    Thanks
    Hal
    PS:  How is the new version working? 

    You don't need to move anything around. Apple has anticipated that some people may prefer to use the old version along with the new one, so when you update to iMovie 10, a script runs that puts your iMovie 9 into a folder inside your Applications folder:
    /Applications/iMovie 9.0.9
    People are having a lot of problems with the new version. You can look through this forum to find out what they are, and see if there are workarounds.
    I updated to 10, updated all my Projects and Events, and began using it; but after about 10 days decided to go back to 9. I'll try 10 again when Apple releases an update to fix the problems and add back some of the features they stripped out.

  • I have an old MacBook laptop and it doesn't have enough memory for a new version of Firefox; why can't I keep the old version which works fine on this computer?

    I am running Firefox version 3.6.23 and I keep getting a message saying that I should upgrade, but I am working on an older MacBook laptop computer with 640 MB of memory and an 800 MHz Power PC G4 with Mac OS X version 10.4.11 and when I tried to upgrade, your message said that it couldn't happen. Please let me keep running the older version of Firefox because it works fine on my old laptop.

    The latest 9.0.x version is not compatible with your os.
    see :[http://www.mozilla.org/en-US/firefox/9.0.1/system-requirements/ Firefox 9 System Requirements]
    Firefox 4 versions and later do not run on a '''PowerPC Mac'''(like yours) and require '''at least OS X 10.5 and an Intel Mac'''.
    The latest supported version for your os is '''3.6.25''' (you have 3.6.23), your can download from here:
    http://www.mozilla.org/en-US/firefox/all-older.html
    see : [http://www.mozilla.org/en-US/firefox/3.6/system-requirements/ Firefox 3.6 System Requirements]
    [For older Macs that aren't supported in Firefox 4+ versions, if you like, try TenFourFox for PowerPC's running Mac 10.4.11 & 10.5.8]
    http://www.floodgap.com/software/tenfourfox/
    http://tenfourfox.blogspot.com/
    https://code.google.com/p/tenfourfox/wiki/PluginsNoLongerSupported
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • My ipod keeps displaying old backups name

    i made a backup for my cousins i pod 2g (i have a ipod 4g)  i made the back up for her about a year and a half ago and i bought my ipod about a week ago.  it has become annoying is there a registry cleaner i need or a back up delete"r or could it be a problem with my iTunes or Microsoft?

    Try opening up your multitasking tray by double-tapping your Home button, hold you finger on any icon until they start to jiggle and then kill all of the apps in there.
    Basic troubleshooting steps  
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 
    Got problems with your Apple iDevice-like iPhone, iPad or iPod touch? Try Troubleshooting 101
     In Memory of Steve Jobs 

  • I want to download Photoshop CS6. Should I first deinstall my old Version CS4 and parts of CS5?

    I want to download Photoshop CS6. Shold I first deinstall my old VErsion CS4 and parts of CS5 from my PC?

    You can keep your old versions along side CS6.  You might want to test CS6 before you uninstall anything else.
    Nancy O.

  • I want the old version of iPhoto back

    I have been a MacBook Air user. I use to love this and has purchased another one in 2012 (version 2012) -  OS X 10.9.4 (13E28). Can someone show my how to undo the latest update? Now I can no longer put captions and add frame style on my photos!  IS APPLE GOING BACKWARDS? THEY GIVE YOU ALL THE GOOD THINGS IN THE BEGINNING!!
    Why can't I keep the old version of iPhoto? I am so disappointed with Maverick in view of (iMovie - can't burn) and the iPhoto - it has taken away the fun in producing photos and movies. I AM NOW LOSING MY TRUST AND LOOKING AT MOVING TO SAMSUNG OR OTHER OUT THERE.

    Just wait.  When Yosemite comes out and includes the new Photos application we may get out keywords back.  At least I'm hoping so. 
    In the meantime you'll have to regress back to iPhoto 8.1.2 (09) and Mt. Lion.
    Or with iPhoto 9.5.1 an easy way to see which keywords are assigned to a photo is select that photo's thumbnail and type Command + K to bring up the Keyword pane for iPhoto.  All keywords shown in blue are those assigned to that photo:

  • I don't like the latest Firefox. Can I keep the old one without problems?

    At work I have v. 3.6.19 and it is asking me to upgrade to 5.0.1. I have a brand-new iMac at home and I installed the newest Firefox just a couple of months ago, so I probably have the 5.0.1. In any case, I don't like the new one's interface. Instead of having separate reload and stop buttons to the LEFT of the url window, there's a single reload/stop button (and it seems smaller than the old ones) attached to the RIGHT of the url window. Since I have a 27" screen on my new computer, it means I have to move the mouse WAY UP TO THE RIGHT to reload a screen, which is hard on my mousing hand. That may sound like nitpicking to you, but I'm finding it to be a problem. Also, the Home button seems to have disappeared. I just don't find the ease of use to be the same as with the one I still have at work. So I guess my question is twofold: 1) can I keep the old version at work and still upgrade the Flash (as it's asking me to do as well)?; and 2) can I put an older version on my iMac at home?
    I used to work in software (although not as an engineer), and in my opinion, newer does not always equal better. A case in point, it used to be easier to return to a previous page using the top toolbar, but as the versions change the function seems to be harder to use.

    Hey paulwisc,
    If you are just unhappy with the location of the Home button, you can move it to any toolbar location that you like. [https://support.mozilla.com/en-US/kb/how-do-i-customize-toolbars?s This article] will give you all the steps you need to customize the toolbar.
    Is that the only reason you want to roll back? If you have other reasons, you should consider [http://input.mozilla.com/en-US/feedback leaving feedback] for the developers so that they can continue to improve the product.
    If you still want to roll back to a previous version of Firefox, just take a look at the Knowledge Base article [[Installing a previous version of Firefox]].
    Hopefully this helps!

  • IWorks update did NOT deleted the old versions

    Hello folks,
    I did the iWork free upgrade using the Mac App Store, it removed the old icons from aplication's folder and launch pad.
    But I noticed that my Dock Icons were keept unchanged, and for my surprise they do launch the old version of the applications!
    And everytime I launch the old versions they alert me about the new version and ask me if I want to update, if I do, it tries to download
    the new version again!
    Besides alerting apple of this bug, I would like to remove the old versions, how should I proceed ?
    Thank you very much.

    The idea that keeping the old versions were a "feature" and not a bug crossed my mind too.. Specially after noticing all the iOS version compatibility warnnings showed after launching the new versions..
    And I must correct myself, the update did remove the old icons from LaunchPad, but not the iWork'09 folder inside applications, I just missed it cause I was looking for the icons and not a Folder.
    Thanks for your reply mende1.

  • Want to download old version

    After installing the newest version my computer starting shutting down uncommanded. reset it a few days back - virus scan software not initializing properly. came to this website - found out others are having problems with virus scan software and the new itunes. contacted mcafee - they have no idea what i am talking about, have no plans to update anything related to itunes. old itunes wont work either. HELP! i am getting married next week and am having a small reception at the house - i need to burn some cd's and i dont have time to troubleshoot - i just want the old version and re-install it - is there anywhere on this website that i can get the old version! i am so mad at myself that i did this!

    You can keep your old versions along side CS6.  You might want to test CS6 before you uninstall anything else.
    Nancy O.

  • Is there any way to keep the old maps app?

    I'd upgrade, but maps the way it is now works very well for me and is one of the things I use most on my iPhone. Is there any way to keep the old version of maps when upgrading?

    No - just don't upgrade until Google release there maps app.  I wish I could go back to yesterday and give myself this advice.

Maybe you are looking for

  • Excise Duties is not Calculating in Excise Invoice

    Hi Experts,            I am doing CIN configuration, i did all configuration settings, I did classify condition types also, but i am not getting Excise duties is not calculating in to Excise INVOICE, please help me with solution Thanks SESHU

  • How to build a query dynamically....

    hi...i want to build a query dynamically. i don't want to build query by using string buffer. i want to create it directly by using sql query itself. my situation is like this....i have four drop down list in a page. The user can search the things ba

  • Finding a logical name for PXI5112 modules to be used in niScope_Init

    I need to dynamically allocate the number of PXI5112 modules on several PCs in a C++ program. After going through great length using VISA calls to obtain the VISA logical name ( PXI3::11::INSTR, etc.), I found out that niScope_Init is expecting an IV

  • How will I block/restrict the user to change the payment term in FBL5N?

    Hi All, How will I block/restrict the user to change the payment term in FBL5N???? I have tried on following objects: F_BKPF_BLA F_BKPF_BUK F_BKPF_GSB F_BKPF_KOA F_IT_ALV F_KNA1_BED F_KNA1_BUK F_LFA1_BUK S_ALV_LAYO But, not succeeded. =>Actually user

  • Pen tool probleempje illustrator / problem illustrator pen tool

    Als ik de pen tool selecteer dan verschijnt er meteen kruisje naast. Ik weet nu dat dat "nieuw pad" pen tool optie is. Maar hoe zet ik dat weer uit? When I select the pen tool I get the pen with a little star next to it. I know now that that is the "