Testing App Mod shows results, but none in page...

I created a VO that displays data (no where clause) and added it to the App Mod. Tested it and see all the data. Added the data control to my .jspx page as read-only table with 4 columns. Run the page and get 'No rows yet.' The credentials are in the db connection... why would I get no results?
BTW - no errors in log in JDev... connection is to a SQL 2000 server database... Thanks!
Message was edited by:
ginnim

FROM ((RPT.[Personnel Outgoing Visit]
INNER JOIN RPT.Personnel ON RPT.[Personnel Outgoing Visit].[Employee Record Number] = RPT.Personnel.[Employee Record Number])
INNER JOIN RPT.[Outgoing Visit] ON RPT.[Personnel Outgoing Visit].[Outgoing Visit Record Number] = RPT.[Outgoing Visit].[Outgoing Visit Record Number])
INNER JOIN RPT.Facility ON RPT.[Outgoing Visit].[To Facility Code] = RPT.Facility.[Facility Code]
WHERE ((RPT.[Personnel Outgoing Visit].[Start Date] < CURRENT_TIMESTAMP) AND (RPT.[Personnel Outgoing Visit].[End Date] > CURRENT_TIMESTAMP))
07/05/01 13:36:19 [359] ViewObject: VisitClearances Estimated Row Count Query Statement:
07/05/01 13:36:19 [360] "SELECT count(1) FROM (SELECT RPT.[Outgoing Visit].[From Facility Code], RPT.[Personnel Outgoing Visit].[Employee Name] AS EMP_NAME, RPT.Personnel.[Employee Number] AS EMP_ID, RPT.Personnel.[Cost Center] AS COST_CENTER, LEFT(RPT.Personnel.[Cost Center], 2) AS DIVISION, RPT.[Outgoing Visit].[Clearance Required] AS CLASSIFICATION, RPT.[Personnel Outgoing Visit].[Start Date] AS START_DATE, RPT.[Personnel Outgoing Visit].[End Date] AS END_DATE, RPT.Facility.Organization, RPT.Facility.City AS CITY, RPT.Facility.State AS STATE, RPT.[Personnel Outgoing Visit].POC AS POC, RPT.[Outgoing Visit].[Visit Purpose] AS PURPOSE
FROM ((RPT.[Personnel Outgoing Visit]
INNER JOIN RPT.Personnel ON RPT.[Personnel Outgoing Visit].[Employee Record Number] = RPT.Personnel.[Employee Record Number])
INNER JOIN RPT.[Outgoing Visit] ON RPT.[Personnel Outgoing Visit].[Outgoing Visit Record Number] = RPT.[Outgoing Visit].[Outgoing Visit Record Number])
INNER JOIN RPT.Facility ON RPT.[Outgoing Visit].[To Facility Code] = RPT.Facility.[Facility Code]
WHERE ((RPT.[Personnel Outgoing Visit].[Start Date] < CURRENT_TIMESTAMP) AND (RPT.[Personnel Outgoing Visit].[End Date] > CURRENT_TIMESTAMP))) ESTCOUNT"
07/05/01 13:36:19 [361] DBTransactionImpl.createPreparedStatement failed...
07/05/01 13:36:19 [362] java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC]Can't start a cloned connection while in manual transaction mode.
     at com.microsoft.jdbc.base.BaseExceptions.createException(Unknown Source)
     at com.microsoft.jdbc.base.BaseExceptions.getException(Unknown Source)
     at com.microsoft.jdbc.base.BaseConnection.getImplConnection(Unknown Source)
     at com.microsoft.jdbc.base.BaseStatement.setupImplConnection(Unknown Source)
     at com.microsoft.jdbc.base.BaseStatement.<init>(Unknown Source)
     at com.microsoft.jdbc.base.BasePreparedStatement.<init>(Unknown Source)
     at com.microsoft.jdbc.base.BaseConnection.prepareStatement(Unknown Source)
     at com.microsoft.jdbc.base.BaseConnection.prepareStatement(Unknown Source)
     at oracle.jbo.server.DBTransactionImpl.createPreparedStatement(DBTransactionImpl.java:3399)
     at oracle.jbo.server.DBTransactionImpl2.createPreparedStatement(DBTransactionImpl2.java:428)
     at oracle.jbo.server.ViewObjectImpl.getQueryHitCount(ViewObjectImpl.java:2258)
     at oracle.jbo.server.ViewObjectImpl.getQueryHitCount(ViewObjectImpl.java:2227)
     at oracle.jbo.server.QueryCollection.getEstimatedRowCount(QueryCollection.java:2560)
     at oracle.jbo.server.ViewRowSetImpl.getEstimatedRowCount(ViewRowSetImpl.java:1965)
     at oracle.jbo.server.ViewObjectImpl.getEstimatedRowCount(ViewObjectImpl.java:5987)
     at oracle.adf.model.bc4j.DCJboDataControl.getEstimatedRowCount(DCJboDataControl.java:965)
     at oracle.adf.model.binding.DCIteratorBinding.getEstimatedRowCount(DCIteratorBinding.java:2969)
     at oracle.jbo.uicli.binding.JUCtrlRangeBinding.getEstimatedRowCount(JUCtrlRangeBinding.java:115)
     at oracle.adfinternal.view.faces.model.binding.FacesCtrlRangeBinding$FacesModel.getRowCount(FacesCtrlRangeBinding.java:395)
     at oracle.adf.view.faces.component.UIXCollection.getRowCount(UIXCollection.java:271)
     at oracle.adf.view.faces.model.ModelUtils.findLastIndex(ModelUtils.java:117)
     at oracle.adf.view.faces.component.TableUtils.getLast(TableUtils.java:65)
     at oracle.adf.view.faces.component.TableUtils.getLast(TableUtils.java:39)
     at oracle.adfinternal.view.faces.renderkit.core.xhtml.table.TableUtils.getVisibleRowCount(TableUtils.java:125)
     at oracle.adfinternal.view.faces.renderkit.core.xhtml.table.RowData.<init>(RowData.java:22)
     at oracle.adfinternal.view.faces.renderkit.core.xhtml.table.TableRenderingContext.<init>(TableRenderingContext.java:56)
     at oracle.adfinternal.view.faces.renderkit.core.xhtml.TableRenderer.createRenderingContext(TableRenderer.java:375)
     at oracle.adfinternal.view.faces.renderkit.core.xhtml.TableRenderer.encodeAll(TableRenderer.java:198)
     at oracle.adfinternal.view.faces.renderkit.core.xhtml.DesktopTableRenderer.encodeAll(DesktopTableRenderer.java:80)
     at oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.encodeEnd(CoreRenderer.java:169)
     at oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)
     at oracle.adf.view.faces.component.UIXCollection.encodeEnd(UIXCollection.java:456)
     at oracle.adfinternal.view.faces.uinode.UIComponentUINode._renderComponent(UIComponentUINode.java:317)
     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:262)
     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:239)
     at oracle.adfinternal.view.faces.ui.composite.ContextPoppingUINode$ContextPoppingRenderer.render(ContextPoppingUINode.java:224)
     at oracle.adfinternal.view.faces.ui.BaseUINode.render(BaseUINode.java:346)
     at oracle.adfinternal.view.faces.ui.BaseUINode.render(BaseUINode.java:301)
     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderChild(BaseRenderer.java:412)
     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:330)
     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:222)
     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderContent(BaseRenderer.java:129)
     at oracle.adfinternal.view.faces.ui.BaseRenderer.render(BaseRenderer.java:81)
     at oracle.adfinternal.view.faces.ui.laf.base.xhtml.XhtmlLafRenderer.render(XhtmlLafRenderer.java:69)
     at oracle.adfinternal.view.faces.ui.BaseUINode.render(BaseUINode.java:346)
     at oracle.adfinternal.view.faces.ui.BaseUINode.render(BaseUINode.java:301)
     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderChild(BaseRenderer.java:412)
     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:330)
     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:222)
     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderContent(BaseRenderer.java:129)
     at oracle.adfinternal.view.faces.ui.BaseRenderer.render(BaseRenderer.java:81)
     at oracle.adfinternal.view.faces.ui.laf.base.xhtml.XhtmlLafRenderer.render(XhtmlLafRenderer.java:69)
     at oracle.adfinternal.view.faces.ui.BaseUINode.render(BaseUINode.java:346)
     at oracle.adfinternal.view.faces.ui.BaseUINode.render(BaseUINode.java:301)
     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderChild(BaseRenderer.java:412)
     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:330)
     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:222)
     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderContent(BaseRenderer.java:129)
     at oracle.adfinternal.view.faces.ui.laf.base.xhtml.BorderLayoutRenderer.renderIndexedChildren(BorderLayoutRenderer.java:42)
     at oracle.adfinternal.view.faces.ui.laf.base.xhtml.BorderLayoutRenderer.renderContent(BorderLayoutRenderer.java:71)
     at oracle.adfinternal.view.faces.ui.BaseRenderer.render(BaseRenderer.java:81)
     at oracle.adfinternal.view.faces.ui.laf.base.xhtml.XhtmlLafRenderer.render(XhtmlLafRenderer.java:69)
     at oracle.adfinternal.view.faces.ui.BaseUINode.render(BaseUINode.java:346)
     at oracle.adfinternal.view.faces.ui.BaseUINode.render(BaseUINode.java:301)
     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderChild(BaseRenderer.java:412)
     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:330)
     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:222)
     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderContent(BaseRenderer.java:129)
     at oracle.adfinternal.view.faces.ui.BaseRenderer.render(BaseRenderer.java:81)
     at oracle.adfinternal.view.faces.ui.laf.base.xhtml.XhtmlLafRenderer.render(XhtmlLafRenderer.java:69)
     at oracle.adfinternal.view.faces.ui.BaseUINode.render(BaseUINode.java:346)
     at oracle.adfinternal.view.faces.ui.BaseUINode.render(BaseUINode.java:301)
     at oracle.adfinternal.view.faces.ui.composite.UINodeRenderer.renderWithNode(UINodeRenderer.java:90)
     at oracle.adfinternal.view.faces.ui.composite.UINodeRenderer.render(UINodeRenderer.java:36)
     at oracle.adfinternal.view.faces.uinode.UIXComponentUINode.renderInternal(UIXComponentUINode.java:177)
     at oracle.adfinternal.view.faces.uinode.UINodeRendererBase.encodeEnd(UINodeRendererBase.java:53)
     at oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)
     at oracle.adfinternal.view.faces.renderkit.RenderUtils.encodeRecursive(RenderUtils.java:54)
     at oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.encodeChild(CoreRenderer.java:242)
     at oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.encodeAllChildren(CoreRenderer.java:265)
     at oracle.adfinternal.view.faces.renderkit.core.xhtml.PanelPartialRootRenderer.renderContent(PanelPartialRootRenderer.java:65)
     at oracle.adfinternal.view.faces.renderkit.core.xhtml.BodyRenderer.renderContent(BodyRenderer.java:117)
     at oracle.adfinternal.view.faces.renderkit.core.xhtml.PanelPartialRootRenderer.encodeAll(PanelPartialRootRenderer.java:147)
     at oracle.adfinternal.view.faces.renderkit.core.xhtml.BodyRenderer.encodeAll(BodyRenderer.java:60)
     at oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.encodeEnd(CoreRenderer.java:169)
     at oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)
     at javax.faces.webapp.UIComponentTag.encodeEnd(UIComponentTag.java:645)
     at javax.faces.webapp.UIComponentTag.doEndTag(UIComponentTag.java:568)
     at oracle.adf.view.faces.webapp.UIXComponentTag.doEndTag(UIXComponentTag.java:100)
     at EVCsjspx._jspService(_EVCs_jspx.java:823)
     at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:598)
     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:522)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
     at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:712)
     at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:369)
     at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:286)
     at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:50)
     at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:192)
     at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:283)
     at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:197)
     at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:346)
     at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:152)
     at oracle.adfinternal.view.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:157)
     at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:107)
     at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:245)
     at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:137)
     at javax.faces.webapp.FacesServlet.service(FacesServlet.java:214)
     at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
     at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:228)
     at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:197)
     at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:123)
     at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:103)
     at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
     at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:162)
     at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:620)
     at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:369)
     at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:865)
     at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:447)
     at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:215)
     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
     at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
     at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
     at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
     at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
     at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
     at java.lang.Thread.run(Thread.java:595)

Similar Messages

  • I have apps from old work account that I can't remember the password to. On my personal phone those apps keep showing up but I can't update them because I can't remember the password. How can I delete them and download on my new account?

    I have apps from old work account that I can't remember the password to. On my personal phone those apps keep showing up but I can't update them because I can't remember the password. How can I delete them and download on my new account?

    Tap and hold an app until they all start jiggling and an X appears in the icon's top left corner. One by one tap the X to delete the app. when they are all gone you are free to buy them again with your own account.

  • I have 300 apps organized in folders on my ipod touch 4th gen, and connected my iphone 4, these apps have copied over but none have been placed in folders, any ideas how to replicate folders from ipod to iphone...?

    I have 300 apps organized in folders on my ipod touch 4th gen, and connected my iphone 4, these apps have copied over but none have been placed in folders, any ideas how to replicate folders from ipod to iphone...?

    What may work is to restore the iPhone fom the backup of the iPod.  However, if the two devices ahve different apps that come with the device, that may mess up some of the folders.

  • Search function does not work, shows ( ) results but won't expand, javalangnullpointer error message

    I have a storm 9530 , verizon, v4.70.75 platform 4.0.0.94
    3 apps installed, facebook,, weather channel and live strong calorie counter, 44.7 mb free space.
    I just got this phone because I beat up my curve.
    I tried to search my device so find something on the calendar.  I opened the search, clicked the calendar and unclicked evertything else.  hit the menu button, highlighted search.... now it goes weird..... either NOTHING happens and the phone locks up.  PULLED the battery and started over.... sometimes it WILL search.... shows (3) results, but not what the results are, hit menu and EXPAND and nothing happens..... OR I get the uncaught exception, javalangnullpointer error. 
    Please help!  I rely heavily on my calendar and the search funciton.

    Hello,
    You are running an extremely old (and EOL, btw) device, further hampered with a very out of date OS (they offer into the 5.x.x.x range OS for that model). The device was never known for it's stability (I had one for a while), and may indeed never function well for you. (And I never bothered with any of the search capabilities, especially in older OS levels.)
    What I'd recommend is a clean OS reload...the simplest way is to, on a PC (you cannot do this on MAC):
    1) Uninstall, from your PC, any BB OS packages
    2) Make sure you have the BB Desktop Software already installed
    http://us.blackberry.com/apps-software/desktop/?lid=us:bboftwareesktopSoftware&lpos=us:bboftware
    3) Download and install, to your PC, the BB OS package you desire:
    http://us.blackberry.com/support/downloads/download_sites.jsp
    4) If that OS package is from a carrier other than the carrier for which your BB was originally manufactured, then delete, on your PC, all copies of VENDOR.XML...there will be at least one, and perhaps 2, and they will be located in or similarly to (it changes based on your Windows version) these folders:
    C:\Program Files (x86)\Common Files\Research In Motion\AppLoader
    C:\Users\(your Windows UserName)\AppData\Roaming\Research In Motion\BlackBerry\Loader XML
    5) Launch the Desktop Software and connect your BB...the software should offer you the OS package you installed to your PC. If, during the process, your BB presents a "507" error, simply unplug the USB cord from the BB and re-insert it...don't do anything else...this should allow the install to continue.
    Don't forget to backup.
    If you are on MAC, you are limited to only your carriers sanctioned OS packages...but can still use any levels that they currently sanction. See this procedure:
    KB19915How to perform a clean reload of BlackBerry smartphone application software using BlackBerry Desktop Software
    You may also want to investigate the use of BBSAK (bbsak.org) to perform the wipe it is capable of.
    You may also want to try this procedure to perhaps narrow down the precise causal item:
    Load your OS "bare bones"...if anything is optional, do not install it.
    If the behavior presents immediately, then try a different OS with step 1
    If the behavior does not immediately present, then run for as long as it takes for you to be sure that the behavior will not present.
    Add one thing -- no matter how tempting, just one.
    If the behavior does not present immediately, then again run for long enough to be sure it will not have the same problem
    Repeat steps 4 and 5 until all things are loaded or the behavior presents
    When the behavior presents, you know the culprit...the last thing you loaded.
    If the behavior does not re-present, then you know that either step 1 or 2 cured it.
    If the behavior presents no matter what, then you likely have a hardware level issue for which no amount of OS or software can cure.
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • In-Memory Query execution mode rendering results but "both" as execution mode do not.

    Hi,
    I am facing this strange issue of fetching some rows based on my view criteria.
    I delete some rows and make them as inactive. Then I search for those rows by using filter as "inactive" rows. I get the result as expected. But then, if I enter any other filed apart from inactive condition, I do not get that record even when that record is present in the list.
    I looked out for the query execution mode for my VC based on which my rows are fetched. I found that if I keep the Query execution mode as "In-Memory" I am able to get the result but if I give the query execution mode as "Both", I do not get results even though the other factors are still same for it.
    Due to model settings, I can't use "In-Memory" as the query execution mode.
    I get the results properly after I commit my changes to DB,however.
    How can I proceed here?

    Hi,
    apparently the JDeveloper version you use does not work with "Both", which I suspect to be a bug. If you are on a latest version of JDeveloper 11g R1, JDeveloper 11g R2 or on JDeveloper 12c, please file a bug if you have access to customer support. If you are not yet on a latest version of JDeveloper, please try a newer version of your JDeveloper release.
    Frank

  • How do you add icons to the iPhone which are listed as purchased apps and show installed but are not appearing on the screen.

    Some of my purchased apps show installed but don't appear as icons on my phone. How do I get them to be icons?

    I am back.  I have now sorted out my Launch Pad to be organized the way I want it. I have decluttered my Dock.  Very nice. 
    Now I want to add some of the remaining icons for apps that did not automatically show up in Launch Pad.  So, again, how do I do that?
    Thanks,
    Cliff

  • When inserting a .pdf of a document with a standard white paper color the test and images show up, but the white background is transparent. How do you also make the white paper color show up?

    When inserting a .pdf of a document into a Keynote template with a standard white paper color the text and images show up, but the white background is transparent. How do you also make the white paper color show up?

    Use the color fill option - select the inserted .pdf and assign a fill color of white to it using the Color Fill Menu on the Toolbar or the Color Picker Palette.
    Good Luck.

  • Is there a way to search for state in a web app then show results ?

    Hi,
    So what i am trying to do is search my web app data, first step is i ask a question like I am after 4 machines or less, then i ask i am after 5 machines or more, then what i want to do is group the results by state/province then the total number where it be 2, 4, 5 ect click the number then show the results for the state selected.
    Basically is there way to create your own search for a web app or are you basically left with what the system does ...
    Any help would be appreciated.
    Regards
    George

    What Anjaneai also means to say is that Adobe has neglected to provide a Usage button for variables as they have for Advanced Actions and Library objects so that you can see exactly where they are used.  This is a BIG problem when you have a lot of variables and AAs to search through.
    By all means log an enhancement request and add your voice asking for this VERY necessary feature.

  • App Store showing updates but all apps up to date

    App Store icon on iPad is showing there is 1 update, but when App Store is launched all apps are up to date (there are no updates to be applied).
    iPad has been sync'ed with iTunes and everything is up to date.
    iPad has been restarted after updating to iOS 8.1.1.
    App Store continues to display "1" in update badge.
    What to do now?

    ATtempt to power off your device and power it back on, if that doesn't work reset all settings should resolve it for you

  • URGENT: Why won't my DPS test app not show on my iPhone5?

    I've created an ipa file which ive dragged into my phone's App section in iTunes. It shows up (without any icon!) in the list of apps (refer to attached pic below), but refuses to syn to my iPhone 5 even when i click the Sync button. Pls tell me how to fix this.

    What kind of app did you create? Single-folio? If so, that won't work on the iPhone.
    If you created a multi-folio app, did you add the device ID to the mobileprovision file?

  • Mail, any ideas why ? old attachment show paperclip but none since Lion installed.

    Attachments no longer show in th eattachment column in Lion Mail. Attachments prior LIon showing with the paperclip.
    None showing after the install.
    Any ideas Why ?

    I moved from Microsoft's feature-rich Entourage mail recently to bring my email into the house of Apple to get more Apple mobile stuff like iPhone --- and synchronise it all. 
    But since coming to Mail I have read so much that says Apple Mail is so rudimentary, and has so many problems including this and many others. And they reach back into Snow Leopard.
    Apple Mail is such a poor relative of all the other Apple products it seems like it is in anohter time zone.
    I hope Apple realise that some people (or increasing numbers maybe) will migrate to Apple Mail just to pick up synchroniicity off iCloud, for their laptop and iPhone. so they can service their email on the move away from the desk.
    Also I hope they realise that a significant part of their market is serious professional people who rely on Apple Mail as infrastructure which is as important a electricity, gas, and the water. We can't live out here without email any more. Why migrate to a flaky neglected utility?
    How can Apple let these problems lie for year after year and just concentrate on flogging music and video to kids(and, well, me occasionally).
    In the next year I will have to decide whether remaining loyal to Apple (since 1988) is the way to keep going, or to buy the Google Android product, go Gmail and use their cloud co-ordination.
    Goodbye iPhone hello Samsung.

  • JSTL do not show result but only EL ?

    hi, having problem after try the simple sample
    <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
    <body>
           <c:set var='hello' value='Hello World!'/>
           </c:set>
           <c:out value='${hello}'/>
    </body>when i run the page , it only show me ${hello} ..but not the variable ..anyone have handle this issue before ?
    for your information , i using tomcat 5.0.12 and jstl1.12 ,
    i have already copy out the jstl.jar and standard.jar in web-inf/lib
    thank you very much for helping

    Sorry, wasn't clear enough.
    Its not a straight replacement.
    Here are the example 2.3 and 2.4 web descriptors that come with Tomcat. You can see the differences in how the header works:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app
        PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
        "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
      <display-name>Welcome to Tomcat</display-name>
      <description>
         Welcome to Tomcat
      </description>
    </web-app>And 2.5
    Note that it removes the doctype tag, and replaces the 2.3 web-app tab, including some attributes.
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <web-app 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"
        version="2.4">
      <display-name>Welcome to Tomcat</display-name>
      <description>
         Welcome to Tomcat
      </description>
    </web-app>
    [/code[
    That should sort you out
    Cheers,
    evnafets                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • ITunes says Apps have available updates, but none exist

    In iTunes, the "Apps" page says that there is one update available, but when I click on the link to go to the download apps page, it says that there are no updates available. This problem persists through reboots, and has been going on for a month or so.
    It is not really a big deal, but the obsessive compulsive side of me gets a little annoyed by it
    I think it might have started when I put the computer to sleep while updates were downloading.
    Does anyone know how I can "reset" what iTunes thinks needs updating? Or at least find out what it really thinks is out of date?
    Thanks,
    Ron

    This happened to me as well. I use an iMac as my main machine, but have a laptop that my daughter uses. I use my Apple ID on both computers. I would occasionally see on my iMac that I have updates available and would click update and get the No Update Available response, yet the red badge remains displaying that I have an update. Found that a few people had this happening as well via these forums so I checked on the laptop and it updated. I then noticed the red badge on the iMac had disappeared as well. If you have any other computers that share your Apple ID, I'd run update on those to see if it fixes your issue.
    Thanks,
    Bryan

  • Test tab giving correct result but msg to receiver is incorrect?

    Hi Experts,
    When i test the message (in test tab)taken from the source payload from moni, i get the correct output as expected. But the message send to receiver is not correct.
    why is this deviation i dont understand.
    Pls help !!
    Regards,
    Suresh.

    Hi
    In IR/ID > Cache notifications, Click on the entry which is in red or yellow and press "Repeat Cache Notifications". Do it for all the entries that are not in green and make sure that all the entries are in green.
    Go to SXI_CACHE and now you should be able to see all your objects.
    If not present, goto XI Runtime Cache and click on Start Complete Cache refresh.
    Still the objects are missing, click on Start Delta Cache refresh.
    This should solve ur problem.
    ~Praveen.

  • Strange - oledb data source preview shows results, but running results in 0 records

    So I have this as a command of a OLEDB source, and the preview shows a sample result set.  Mappings are correct, builds with no errors etc.  Works fine in SSMS. However, when I run this Dataflow task in SSIS, I get NOTHING.  Huh?
    Here is the query
    DECLARE @StartTime datetime,@EndTime DATETIME, @ExecTimeMS INT
    SELECT @StartTime=GETDATE()
    DECLARE @t TABLE (tval NVARCHAR(30) )
    INSERT INTO @t SELECT TOP 10 t.control_number FROM MyBigTable t
    SELECT @EndTime=GETDATE()
    SELECT @ExecTimeMS = DATEDIFF(ms,@StartTime,@EndTime) 
    SELECT CAST('Top10LogBigTSelect' as NVARCHAR(100)) as query_name,@ExecTimeMS as exec_time_ms, GETDATE() as record_date

    Found my answer here
    http://saysmymind.wordpress.com/2013/04/11/ole-db-data-source-in-ssis-returning-no-records-when-using-table-variable/
    The catch was to use NOCOUNT

Maybe you are looking for

  • Adobe ANE stageAd is not working in App Store

    I am using com.adobe.ane.stageAd package with starling game I made (GravityEscape - it is an iPad game approved and released in store). Here is my problem, I am trying to show banner ads but they will not work. a) In development test ads DID show. I

  • Sent folder does not appear after installation. What to do to see the sent folder?

    After installation, the inbox and trash folders are there. The local folders are also there. But the sent folder is not there. How do i get the sent folder together with the sent emails.

  • Loading Period 0 - Time Period

    Have a question in Hyperion Planning. We have a Time Period Dimension with two Children (Beg Balance and Year Total). Year Total has the usual childeren (Q1, Q2, etc) and the Q's have the usual children (Jan, Feb,...Dec). Where do people load Balance

  • Can't sync photo to iTouch

    So like the topic said, I'm having trouble getting iTunes to add a song to my iPod Touch. The thing is, there's .14G of space and the photo's only 23.7K. Each time I try to sync the photo, iTunes tells me there isn't enough space.

  • Help! My files disappear almost as soon as I import them into Elements 10.

    If I navigate away from the folder with my photos, then go back again the photos have disappeared.  If I try to import them again it tells me the files are either missing or they are already in the Catalogue.  What do I do to fix this?  I don't need