Discoverer 10.1.2 does not refresh new added column

Hello,
I need help to add a new item to EUL Business Area folder for a new added column in the database table.
When I refresh the folder in the BA EUL, the result shows no difference between the folder and the underlying table in the database; however, when I quey the table in the database, a new column is there. The refresh of the folder in the Discoverer Admin tool cannot find the newly added column. Weird!! The first time saw this problem.
Could someone shine some light on it? Would be really appreciate it!
Ping

I have a slightly different problem and can't solve it! When I refresh the EUL, the result shows the differences between the folder and the underlying tables in the database. However, it does not refresh the EUL in Discoverer Administrator 10g. Nothing happens! When I try to refresh again, the same list is shown... Does anyone know what could be happening?
Thanks

Similar Messages

  • Advanced Table does not refresh after database level action

    Hi,
    I have a page which has an advanced table. I update the advanced table from the page do some validations, update some DB level columns(also part of advanced table) and see that the changes are saved to the DB but the advanced table does not show the updates done at the DB level.
    I tried clearing the VO Cache and re-executing the VO but still it does not refresh the Advanced table data.
    This is very critical requirement for the client, any inputs will be greatly appreciated.
    Thanks a lot in Advance.
    Here is the code snippet from my CO's processRequest:
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    OAAdvancedTableBean tblbean = (OAAdvancedTableBean)webBean.findChildRecursive("recasttable");
    if(tblbean!=null)
    tblbean.setRendered(true);
    OAApplicationModule tblam = (OAApplicationModule)am.findApplicationModule("RecastLineAM1");
    tblam.invokeMethod("initQuery");
    tblbean.getTableData();
    Here is my AM - initQuery() code:
    public void initQuery()
    //clearVOCaches("RecastLineEO",true);
    clearVOCaches(null,true);
    getRecastLineVO1().init();
    Here is the VO - init() code:
    public void init()
    System.out.println("****************************executing...");
    OADBTransaction tx = (OADBTransaction) getApplicationModule().getTransaction();
    if (tx.getTransientValue("RECAST_ID") !=null)
    Number recastId = (Number) tx.getTransientValue("RECAST_ID");
    System.out.println("recastId: "+ recastId);
    setWhereClause("RECAST_HDR_ID = :1");
    setWhereClauseParams(null); // Always reset
    setWhereClauseParam(0, recastId);
    executeQuery();
    }

    hi,
    This is how I am calling a DB package. the package does updates on the table. once done I am issueing a commit and requerying the data, however the vo is not getting refreshed.... Can someone point out what am I missing... why is the VO not getting refreshed....
    This is very critical...
    Thanks
    Srini
    public void validateRecast(String respKey)
    OADBTransaction tx = (OADBTransaction)getApplicationModule().getTransaction();
    Number recastId = (Number) tx.getTransientValue("RECAST_ID");
    System.out.println("*********************validateRecast().RecastId: " + recastId);
    OracleCallableStatement ocs = null;
    Connection conn = tx.getJdbcConnection();
    String strOut="", strErr="";
    Number respId = null;
    try
    respId = new Number(respKey);
    catch(Exception e)
    throw new OAException("Invalid Responsibility");
    String stmt = "BEGIN " +
    "GE_RECAST_UTILS_PKG.validate_recast(:1,:2,:3,:4); " +
    "END;";
    try
    ocs = (OracleCallableStatement)conn.prepareCall(stmt);
    ocs.setNUMBER(1,recastId);
    ocs.setNUMBER(2,respId);
    ocs.registerOutParameter(3,OracleTypes.VARCHAR);
    ocs.registerOutParameter(4,OracleTypes.VARCHAR);
    ocs.execute();
    strOut = ocs.getString(3);
    strErr = ocs.getString(4);
    ocs.close();
    System.out.println("Returned with: " + strOut);
    if(strOut.equalsIgnoreCase("ERROR"))
    //throw new OAException(strErr);
    tx.putTransientValue("ERROR",strErr);
    tx.commit();
    getApplicationModule().clearVOCaches("RecastLineEO",true);
    RecastLineVOImpl lineVo = (RecastLineVOImpl)getApplicationModule().findViewObject("RecastLineVO1");
    lineVo.init();
    System.out.println("===============RecastLnId: " +lineVo.first().getAttribute("RecastLnId"));
    System.out.println("===============Product Line: " +lineVo.first().getAttribute("ProductLine"));
    catch(SQLException e)
    tx.rollback();
    if(ocs!=null)
    try
    ocs.close();
    }catch(SQLException e1)
    throw OAException.wrapperException(e1);
    throw OAException.wrapperException(e);
    }

  • Form does not show "new" records from SQL Database

    I have a PDF form that pulls data from a SQL Server.  The fields in
    the PDF are populated from the database after selecting a specific
    record from a drop down and then clicking on a button labeled "Fill".
    The problem is that the dropdown does not display new records that
    have been recently added to the database.  I have to open the form up
    in designer then save it, (*note - I change nothing at this point.)
    Then when the form is opened back up in Adobe the dropdown show all
    the records including the new ones.  I even put a manual refresh on
    form to try and fix this an it did not help. Seriously stumped.
    Any help is greatly appreciated.
    Here is my code for the dropdown.
    ++++++++++++++++++++++++++++
    topmostSubform.Page1.JobSelect::initialize - (JavaScript, client)
    var sDataConnectionName = "BBCC"; // example - var sDataConnectionName
    = "Test";
    var sColHiddenValue = "ContractAdmin_Key"; // example - var
    sColHiddenValue = "Dept_ID";
    var sColDisplayText = "JobDescription"; // example - var
    sColDisplayText = "Dept_ID"
    // Search for sourceSet node which matchs the DataConnection name
    var nIndex = 0;
    while(xfa.sourceSet.nodes.item(nIndex).name != sDataConnectionName)
    nIndex++;
    var oDB = xfa.sourceSet.nodes.item(nIndex);
    oDB.open();
    oDB.first();
    // Search node with the class name "command"
    var nDBIndex = 0;
    while(oDB.nodes.item(nDBIndex).className != "command")
    nDBIndex++;
    // Backup the original settings before assigning BOF and EOF to stay
    var sBOFBackup =
    oDB.nodes.item(nDBIndex).query.recordSet.getAttribute("bofAction");
    var sEOFBackup =
    oDB.nodes.item(nDBIndex).query.recordSet.getAttribute("eofAction");
    oDB.nodes.item(nDBIndex).query.recordSet.setAttribute("stayBOF",
    "bofAction");
    oDB.nodes.item(nDBIndex).query.recordSet.setAttribute("stayEOF",
    "eofAction");
    // Clear the list
    this.clearItems();
    // Search for the record node with the matching Data Connection name
    nIndex = 0;
    while(xfa.record.nodes.item(nIndex).name != sDataConnectionName)
    nIndex++;
    var oRecord = xfa.record.nodes.item(nIndex);
    // Find the value node
    var oValueNode = null;
    var oTextNode = null;
    for(var nColIndex = 0; nColIndex < oRecord.nodes.length; nColIndex++)
    { if(oRecord.nodes.item(nColIndex).name == sColHiddenValue)
    { oValueNode = oRecord.nodes.item(nColIndex); } else
    if(oRecord.nodes.item(nColIndex).name == sColDisplayText) { oTextNode
    = oRecord.nodes.item(nColIndex); } }
    while(!oDB.isEOF())
      this.addItem(oTextNode.value, oValueNode.value);
       oDB.next();
    // Restore the original settings
    oDB.nodes.item(nDBIndex).query.recordSet.setAttribute(sBOFBackup,
    "bofAction");
    oDB.nodes.item(nDBIndex).query.recordSet.setAttribute(sEOFBackup,
    "eofAction");
    // Close connection
    oDB.close();
    ++++++++++++++++++++++
    Here is code for the refresh button
    +++++++++++++++++++++
    topmostSubform.Page1.Button27::click - (JavaScript, client)
    sourceSet.BBCC.requery();
    +++++++++++++++++++++

    pguerett wrote:
    The other thing that might be happening is a refresh issue on the DropDownList. Try adding the command xfa.layout.relayout() after the database connection has been closed.
    Paul
    Good catch Paul!  Would you believe that I have been trying to get this resolved for almost two years! Works perfect now.
    Thank you,
      - Eric

  • Management Studio 2008 does not refresh after table create / alter

    hello
    Management Studio 2008 does not refresh after table create / alter, why?
    f5 / refresh button does not work in "Object Explorer".... i always need the restart the whole application to see any changes, this is strange...
    regards, jan

    Hi jm,
    I’m writing to follow up with you on this post. Was the problem resolved after performing Vishal ‘s steps? If you are satisfied with our solution, I’d like to mark this issue as "Answered". Please also feel free to unmark the issue, with any new findings
    or concerns you may have.
    Thanks,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • JTextArea does not refresh in real-time

    Hello all,
    Somehow, a JTextArea does not refresh ok. It refreshes only after myobject terminates. As a result, it does not write the results when i append them, but when the object that appends the data to it ends (myclass in the following example).
    If anyone has any suggestion, i would be more that pleased to hear it.
    Thanks
    odyspapa
    the relevant code is:
    main
      int cnt = 0;
      MyClass myobject = new MyClass();
      JTextArea ta = new JTextArea();
      // and now call an object that is supposed to
      // write to that area (pass jtextarea as a parameter)
      myobject.produceResults(ta);
    myclass
      produceResults(JTextArea ta)
        while (something)
          // process to produce results
          ta.append(the_result);

    make your text field final and add
    ie:
    tf.repaintwhere tf is your textfield.

  • Finder window does not refresh under yosemite

    I have a weird effect on my rMBP with the latest Yosemite:
    Very often (not always) when I save a file from an application an open Finder window to the save location does not refresh. The new file is not shown! I can go in with Terminal and everything is fine, the file is there. I can edit its contents (eg. with vi or pico) and I can rename the file. However the Finder still does not show it. Not even closing and re-opening the folder help. The only way I found is to create a new folder and immediately delete it. That forces the Finder to update the window. It looks as if the Finder does not get *some* update events.
    I do have XtraFinder installed, but deinstalled it and even after a reboot nothing changed, Finder still does not refresh its display. I cannot tell exactly when this started, but incidentally I run an update some days ago and installed Server 4.0.3 and upates to the latest Pages/Keynote/Numbers (however I do not use those, I am still and will stay with iWork'09).
    I use Server on a MBP with dynamic address because I needed virtual domains for local testing, nothing really "serverish". It just provides a nice GUI for easy setting-up of virtual domains.
    Any ideas? What can I do?
    Thanks
    ---markus---

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled in OS X 10.9 or earlier, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Image does not refresh when I undo

    This seems only to happen when using my Wacom. A lot of friends have the same problem.
    The viewport/canvas does not refresh when undoing a paint stroke done with my Wacom Intuos4 Wireless. But when I make a new paint stroke or zoom in or something else that requires the viewport to refresh it looks correct. I am using Photoshop CS5.1 (Production Premium CS5.5). I am running Mac OS X Lion on a MacBook Pro 13" 2011.
    Anyone else having this issue? It seems like a nasty bug to me.

    OK, I have done some testing and this happens on three friends computers. What we have in common is Wacom Tablets (different kinds, intous3, intuos4, bamboo and intuos4wl), Photoshop CS5.5, OS X Lion and Macbook 13" 2011.
    However, another friend just bought a new intuos4wl for his Macbook Pro 15" late 2008 (MacBook Pro5,1) thats running Snow Leopard. So far this seems to only happen with wacoms + cs5.5 + lion. And another friend is running CS5 on a MacBook Pro 13" 2011 without problems.
    I would say that the problem is PS CS5.1 in conjunction with Lion and Wacom tablets. Scratch what I said earlier about external monitors.

  • Exchange 2010 SP3 RU7 - additionals mailboxes does not refresh automatically

    Hello
    On Exchange 2010 SP3 RU7 , my additionals mailboxes does not refresh automatically (Outlook 2010 up-to-date).
    i need to perform "send/receive" and "update the folder" to get the mail.
    Primary mailbox is running correctly and new mails are displayed .
    Thanks

    Hi,
    Based on the description, you added additional mailboxes from Outlook, but messges sent to these additional mailboxes didn't show until you tried the option "update the folder".
    How many additional mailboxes did you add?
    Did this issue affect all users?
    If possible, please remove these additional mailboxes and then re-add them. I recommend you add one additional mailbox first to check if the issue occurs. Then you can add another additional mailbox to check result.
    Best regards,
    Belinda Ma
    TechNet Community Support

  • IPhone calendar does not sync new events and appointments from Outlook

    iTunes 9.2.0.61/iPhone 4.0.1 - does not sync newly added events and appointments! Previously added stuff is all there, new stuff added in Outlook 2007 just doesn't show up. I've gone back to my old Palm T|X which syncs all this stuff with no problem, so it's not an Outlook bug.
    It looks like Apple has put a team of junior programmers on the Calendar app - I've seen leap-year bugs (still there), events showing up on the wrong day (still there), and I'm still waiting for the "week at a glance" view. Calendar is SO important for business use that top level "gray beard" engineers need to be on this. (Question for Apple's calendar developers: what's Zeller's Congruence? It they haven't heard of it they have no business doing calendar programming.)

    Spontaneously started syncing again - no idea why now, nor why it failed for so long. Related to the alarm bug? Who knows...

  • Hyperlinked JSP Page does not refresh contents

    I have a very typical problem.
    In my application whenever I call a jsp page using hyperlink without any querystring attached to it the page called does not refresh. However when I press refresh on the browser it does refresh the contents. Basically in this page I am using some session variables to fetch data. So I do not call the page by passing querystring instead set the attributes of session variables and then the page is called as a hyperlink.
    However if I call the same page using submit the values are refreshed.
    Help on this urgently will be appreciated.
    Thanks
    Manish

    Just set 'no-cache' option for the jsp page and test it. It should work. only you need to do is
    response.setDateHeader("Expires",0);
         response.setHeader("Pragma","no-cache");
         if(request.getProtocol().equals("HTTP/1.1")) {
              response.setHeader("Cache-Control","no-cache");
    have fun!!
    ---rajsekhar

  • Mail does not create new emails based on the highlighted mailbox, but rather the receiving mailbox of whatever individual email happens to be highlighted. This was not the case prior to Lion. Is this a bug or an error on my part?

    Mail does not create new emails based on the highlighted mailbox, but rather according the receiving mailbox of whatever individual email happens to be highlighted. This was not the case prior to Lion. Is this a bug or an error on my part? (I do have the setting for creating new emails from the highlighted mailbox checked.)

    The questions about time was not only because of thinking about the Time Machine, but also possible impact on recognizing which messages remaining on a POP server (doesn't apply to IMAP) have been already downloaded. In the Mail folder, at its root level, in Mail 3.x there is a file named MessageUidsAlreadyDownloaded3 that should prevent duplicate downloading -- some servers may not communicate the best with respect to that, and the universal index must certainly be involved in updating that index file. If it corrupts, it can inhibit proper downloading. However, setting the account up in a New User Account and having the same problem does not point that way, unless your POP3 server is very different from most.
    That universal index is also typically involved when messages are meant to be moved from the Inbox to another mailbox -- in Mail 3.x the message does not move, but rather is copied, and then erased from the origin mailbox. That requires updating the Envelope Index to keep track of where the message is, and should keep track of where it is supposed to have been removed after the "Move".
    Ernie

  • Under bookmarks the Organize bookmark option does not appear, new computer Firefox 4.0, and Windows 7, how to make it appear, thanks

    Under bookmarks the Organize bookmark option does not appear, new computer Firefox 4.0, and Windows 7, how to make it appear, thanks

    "Organize Bookmarks" has been renamed to "Show All Bookmarks" in the bookmarks menu.

  • Podcasts app not refreshing new content?

    Hi, my podcasts app is not refreshing new content for last 4 days, is anyone else facing the same issue?

    Hello there, ikgandhi.
    The following Knowledge Base article offers up some great steps to review for issues with the Podcasts app for iOS:
    Podcasts app for iOS: Managing subscriptions
    http://support.apple.com/kb/HT6190
    Default settings: From your Home screen, tap Settings and then Podcasts. These settings are shared by all of your podcast subscriptions. These are known as default podcast settings.
    Refresh Every: You can choose how often your iOS device checks for new episodes to your subscriptions. It's set to check every six hours by default.
    Limit Episodes: You can pick how many episodes you see for subscriptions.
    Download Episodes: The latest episodes of your podcasts will download automatically if your iOS device is connected to Wi-Fi.
    Delete Played Episodes: If this is turned on, episodes will delete 24 hours after you finish playing them.
    Use Cellular Data: If your iOS device has a cellular connection, you can allow downloads to use cellular data when Wi-Fi isn't available. This is off by default. Downloads using cellular data are limited to 100MB per episode. If an episode is larger than that, it won't start downloading until you're connected to Wi-Fi.
    Podcast-specific settings: The second place you'll find subscription settings is within the Podcasts app. Tap a podcast subscription under My Podcasts and pull down with one finger to reveal the settings buttons. These settings are unique to each subscription. If you don't change anything here, the podcast subscription will just use the default settings. If you do make changes to a specific subscription’s settings, they'll only apply to that podcast.
    Play: This setting lets you change the order in which a subscription plays. If you're listening to a news style podcast, you may want to set this to play the new episodes first. If the series is more episodic, you may prefer to play oldest to newest.
    Sort Order: This changes the sort order of episodes that appear for a podcast (not its playback order).
    Subscribed: When this is on, new episodes of this podcast will be marked as unplayed as they become available.
    Refresh Every: You can choose how often your iOS device checks for new episodes to your subscriptions. It's set to check every six hours by default.
    Limit Episodes: You can pick how many episodes you see for subscriptions.
    Download Episodes: The latest episodes of your podcasts will download automatically.
    Delete Played Episodes: If this is on, episodes will be deleted 24 hours after you finish playing them unless you've marked them as Saved.
    Inactive subscriptions
    If you do not play or access a subscription within 15 days, your subscription to that podcast will go inactive and you will no longer receive updates to it. As soon as you access the subscription again it will refresh. 
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Downloading new safari on my iPad and says my browser does not support  new safari.

    Trying to download new safari 5 on iPad 2 and says that browser does not support new safari. Doing this because yahoo mail has upgraded and needs safari 5. Do I need to do this thru iTunes? Regards kc

    Ummm...Safari 5 doesn't run on the iPad.  It runs on Mac OS and Windows.

  • My itunes on windows7 pc does not recognize new ipad. using same cable and usb port that works for my ipod. what to do?

    My itunes on windows7 pc does not recognize new ipad. using same cable and usb port that works for my ipod. what to do?
    Thanks

    Have you updated iTunes with the absolute latest software?  If you have not in a long time, your iPad won't be recognized.

Maybe you are looking for

  • Error Message in VT02N transaction

    Hi Friends, I need to validate some of the input field values in VT02N transaction. If the validation fails, i need to raise an error message. I have found the user exit to perform the validation. Now the problem is, after raising the error message,

  • Email set up Problem

    Dear Admin, I have just bought second have blckberry 9800 but am unable to setup email account. it is showing as cannot to connect to server. please help me on the subject matter. am using wifi network for the internet

  • HT204406 What will happen if my computer shuts down during the initial setup of iTunes Match?

    What will have if my computer shuts down or restarts during the initial start of iTunes Match?

  • E72 Space Bar with Function Key acts as Symbol

    If my Function Key (bottom left) is pressed once or twice then the Space Bar has same effect as pressing the Symbol Key. So if you have Function pressed twice to enter a series of numbers you cannot put in a space without unsetting the Function Key f

  • Need help manually adding music, side bar isn't working!!

    Can someone help me?! I tried using the side bar to manually add music but when I went to drag and drop it isn't letting me. I even went through the tutorial and looked for "On this Ipod" > "Add to".. But there was NO "Add to". Someone help please!