Parametric View Issue

Hi,
I have a project where I want to put a Parametric View.
One of the project variables for this view is a date that is not established in the first step of the process so until that point where it is established it is null. In the parametric view I have a between condition based on this date. My expectation was that the requests with the date to null would come when applying the filter, in other words if it is null the condition is not consider in the filter, but they do not appear.
I do not know if this is how it is supposed to work or it is a bug.
If it is not a bug has somebody else faced this problem and has a solution for the same?
Thank you very much
Kind regards

Hi,
Even I tried to enable the check box "Is Parametric" in my custom view on cerain fields , but it doesn't seem to get me the results when I apply them in my Inbox. I'm confused if this is bug in my version (Version: 10.3.1.0) or am I missing something.
Regards,
Sri lakshmi.
Edited by: Sri Lakshmi on 09-Jun-2010 02:36

Similar Messages

  • Edit the hyperlink in the alert email (Modify my alert settings, View Issue Tracking)

    is it possible to add the external hyperlink in these emails instead of the internal hyperlink? 
    in example when I get a list tracking email there are hyperlink that get sent out with these tags Modify my alert settings | View Issue Tracking | mobile view  that use the internal url //servername how can I change it to use the external
    address //internetname

    Hi Joe, check out the following links for solutions:
    http://sharepoint.stackexchange.com/questions/13216/how-to-create-custom-email-alert-template-in-sharepoint-2010
    https://social.technet.microsoft.com/forums/sharepoint/en-US/e5ebc5a7-8295-49e4-a817-c31066e1ac3d/customize-the-sharepoint-2010-email-alert
    http://www.alectang.com/blog/archive/2012/05/16/how-to-customise-sharepoint-alert-email-template.aspx
    cameron rautmann

  • Viewing issues with Adobe Acrobat Professional 8

    We have Adobe Acrobat Professional 8 installed, and we are having some issues when viewing pdf documents.  Once a Word document is converted to a pdf document, some of the hyperlinks are appearing thicker (almost bold) than others, and some of the text appears lighter/darker than the rest of the text.  There is no pattern to this, it is all very random.
    When we print the pdf document, everything looks correct, so this only happening when we view the document on the computer.
    Can anyone provide a suggestion on how to fix this issue?
    Thanks!

    Sorry, I forgot the attachment!
    Hi Bill,
    I am attaching screen shots of 1) a page where the hyperlinks appear thicker and 2) the document properties pages showing the fonts.
    We have tried creating it with both the Adobe PDF Maker and the MS PDF tool and it happens using both.  I am thinking that this really is a viewing issue, because it prints out fine.  Also, it looks the same no matter what the zoom setting is.
    Please let me know if you have any other advice.
    Thank you!
    Cari

  • Parametric view

    Are there any way how to create parametric view?
    Or will be it in the future versions?
    Anything as create view v_test (col1,:col_par) as select col1 from test where col2=:col_par
    and use it as select * from v_test(par)
    This is very simple view, but for more complex view it can save many of query time. Now I use instance specific variable for this view, but it must call package function to get value and value must be set before select.

    Hi,
    Even I tried to enable the check box "Is Parametric" in my custom view on cerain fields , but it doesn't seem to get me the results when I apply them in my Inbox. I'm confused if this is bug in my version (Version: 10.3.1.0) or am I missing something.
    Regards,
    Sri lakshmi.
    Edited by: Sri Lakshmi on 09-Jun-2010 02:36

  • XSODATA for Parametrized view

    Hi Friends
    I have a parametrized view (using place holders), which i need to expose it with xsodata.
    I tried with different options. But none worked. Could someone guide, how to expose a parametrized view using XSODATA?
    Regards
    Giri

    Hi Giri,
    Have you read this blog:
    REST your Models on SAP HANA XS
    At the end there is an appendix for exposing a calculation view with input parameters, I followed and it worked, can you explain more in details how are you proceeding?
    Appendix
    Calculation View with a Single Input Paramater:
    service  {
          "copa::PLANNED_ACTUAL_SALES " as "PlannedvsActualCalcView"
          keys generate local "ID"
          aggregates always
          parameters via entity; 
    http://server:port/copaxs/odata/PlannedvsActualCalcView.xsodata/
    PlannedvsActualCalcViewWithInputParamsParameters(‘.20’)/ Results?$select=salesorg,material,anetrevn&$filter=startswith(material,’DPC')
    Calculation View with multiple Input Paramaters:
    service  {
          "copa::PLANNED_ACTUAL_SALES " as "PlannedvsActualCalcView"
          keys generate local "ID"
          aggregates always
          parameters via entity "InputParams";
    http://server:port/copaxs/odata/PlannedvsActualCalcView.xsodata/
    InputParams(ip_discount=’.20’,ip_region=’NW’)/Results?$select=salesorg,material,anetrevn&$filter=startswith(material,'DPC')&$format=json

  • List view issues

    version 12.1.2
    I have a list view with 2 rows, 2 columns. column sizes are ( c1 = 85% and c2 = 15 %). C1 displays table data, and c2 has a button on each row, which takes me to different page.
    When I click the button I am expecting it to take me to the next page. But for some reason I have to click the button twice to go to the next page. When I click the first time, it only highlights the
    row, then when I click the second time, it takes m to the next page. Is there any special settings I need to change for a list view?
    First I tried implementing row double click by using client/server listeners to take me to the next page, it showed the same behavior (had to double click twice to go to next page). So I thought it might have something to
    do with the client/server listeners not working correctly. So switched to using button to go to next page and I am still seeing the same behavior. Here is my code, I would greatly appreciate any help.
    <af:listView value="#{bindings.emp1.collectionModel}" var="item"
                                                     emptyText="#{bindings.emp1.viewable ? 'No data to display.' : 'Access Denied.'}"
                                                     fetchSize="#{bindings.emp1.rangeSize}" id="lv1"
                                                     partialTriggers="::b6" selection="single" immediate="true"
                                                     binding="#{SomeBean.empListView}">
                                            <af:listItem id="li1">
                                                <af:panelGridLayout id="pgl3">
                                                    <af:gridRow marginTop="5px" height="auto" id="gr1">
                                                        <af:gridCell marginStart="5px" width="85%" id="gc1">
                                                            <af:outputFormatted value="#{item.bindings.empId.inputValue}"
                                                                                id="of1"
                                                                                inlineStyle="font-family:Verdana, Arial, Helvetica, sans-serif; font-size:small;"
                                                                                binding="#{MouseDoubleClickBean.empID}"/>
                                                        </af:gridCell>
                                                        <af:gridCell marginStart="5px" width="15%" marginEnd="5px"
                                                                     id="gc2">
                                                            <af:button id="b4" icon="#{resource['images:add_ovr.png']}"
                                                                       action="callEditFlow" rendered="true"
                                                                       visible="true"/>
                                                        </af:gridCell>
                                                    </af:gridRow>
                                                    <af:gridRow marginTop="5px" height="auto" marginBottom="5px" id="gr2">
                                                        <af:gridCell marginStart="5px" width="85%" id="gc3">
                                                            <af:outputFormatted value="#{item.bindings.empName.inputValue}"
                                                                                id="of2"
                                                                                inlineStyle="font-family:Verdana, Arial, Helvetica, sans-serif; font-size:small;"
                                                                                binding="#{MouseDoubleClickBean.empName}"/>
                                                        </af:gridCell>
                                                        <af:gridCell marginStart="5px" width="15%" marginEnd="5px" id="gc4"/>
                                                    </af:gridRow>
                                                    <af:clientListener method="doMouseDblClick" type="dblClick"/>
                                                    <af:serverListener type="CopyEmp"
                                                                       method="#{MouseDoubleClickBean.copyEmpDetails}"/>
                                                </af:panelGridLayout>
                                            </af:listItem>
                                        </af:listView>
               <af:resource type="javascript">
                    function doMouseDblClick(evt) {
                    var btn = evt.getSource();
                    AdfCustomEvent.queue(btn, "CopyEmp",{},true);
                    evt.cancel();
               </af:resource>
    Thanks.

    Hi,
    can you try af:commandButton to see if it is a problem with af;button. If this doesn't work then it appears that there is an issue with the focus setting preventing the action to come through. A work around in this case would be to override the SelectionListener on the vlieView component and to queue the command button action (the downside is that each time you select a row it will navigate (which means you could set the button display to hidden).
    I suggest to file a bug with support. If you don't have a support contract, please zip up a simple test case based on the HR schema and send it to frank <dot> nimphius < at > oracle <dot> com (replace the <dot> with . and <at> with @). The testcase should be zipped and renamed to ".unzip" as the extension
    Frank

  • OBIEE 11g  Map View - Issue with Label Translation

    Hi All,
    I have a strange translation issue with the Maps in 11g.
    Created in English language to plot the Revenue for each of the Postal Codes.
    I selected Postal Code and Revenue Amount in the Criteria and created a new Map View. It had the text 'Postal Code' in the Map Legend and then the scale for revenue amount.
    Now I logged on with Chinese Language , it still appears as 'Postal Code' in English where in it was actually supposed to show it in Chinese.
    We have a translation pack to get all the column names translated. If I try creating a new table view, it shows the translated text instead of 'Postal Code', but some how this doesn't work with Maps.
    Has anyone faced similar issues ? Is there a workaround for this ?
    Thanks for any pointers.

    Hi,
    I also encounter the same issue. When I view combined layout, I get the No Results message. But when I edit the table layout, I see that there are records returned. Does anyone had any luck in resolving this issue?
    Thanks!

  • Copying file from a Compact Flash Card or Epson Picture Viewer issues

    I am a photographer and have been experiencing issues when trying to copy or move files from my compact flash cards or my viewer HD device. Both my Sandisk reader and the epson connect to my iMac through USB (rear ports) and during the copy process, I get messages that one of the files are in use, and the rest of the copy is aborted. Since the copy process doesn't work in a numerical or filename fashion, I have to look through each file that has been copied and try to identify which files were missed. The weird thing is that if I try to copy the file that was mentioned in use, it works fine
    I am copying to a USB External drive, connected to my Airport Extreme. I've encountered the same things when the HD was connected directly to the iMac.
    I am getting very frustrated with this process, and am looking for insight on how to make this go away, or at the very least, is there an application that will copy/move and verify the files before exiting? I can't help but think that I may have missed files here and there, and those files could be now lost memories.
    Any help would be appreciated

    They'll record either while simutaniously recording to tape. I believe the HDV is in a .M2t format but I'm not sure about the DV file format. As for quality, your guess is as good as mine, I haven't had the chance to play with one yet.
    Mike
    M2 Digital Post Inc.
    San Diego, CA.

  • Aperture viewer issues after full screen view - in Browser, Split View and Viewer modes

    2012 MacBook Air, Mac OS 10.8.2, Aperture 3.4.3. Everything is up to date and, as usual, has been working just fine since the last update a few weeks ago. Full screen view never caused any issues... until today.
    I tried quitting and restarting Aperture. Using another Aperture library. Quitting everything and restarting my MBA... same behavior.
    I went into the full screen view, edited a photo and got out of the full screen view to export it.
    All of the sudden, only one line of thumbnails was showing up in my Broswer view (out of 380 pictures in that project). Looking closely at it, it seems like the Aperture now thinks that the desktop area it has to work with (the dark gray area where the thumbnails are) is larger than the aperture window because a part of photo is showing up cut off at the right edge and no slider at the bottom:
    (note: at the bottom it says 380 items displayed)
    Going back to full screen view, everything looks and works as nothing has happened:
    In Broswer view, if I scroll down such that the first row is out of the view, the second row of thumbnails shows up:
    Now, if I scroll back up, two rows of thumbnails are shown in the viewer:
    To get the third row to show up, I need to scroll down to get the top two rows out of the way and so on.
    At some point I saw this weirdo but have not been able to replicate it:
    Split View also has its issues - the photo itself is no longer centered and the slider at the bottom gets out of the way past the right edge of the Aperture window before reaching the end of the row of thumbnails:
    Finally, when double clicking the photo in the Split View to view it by itself, once again it is not centered and cut off on the right side but there is no slider...
    Any ideas? I tried looking through the Viewer-related threads on here and did not see anything close to this. Is there a way to contact Apple support? I found some form somewhere on the website, but it had a dropdown for operating system and nothing past 10.7.2 so I am guessing it is not being maintained...
    edit: added the note under the first image

    When the graphical user interface is misbehaving, it frequently helps to remove the Aperture preferences apple.com.Aperture.plist from your user library, see the Aperture 3: Troubleshooting Basics on how to do this.
    Regards
    Léonie

  • Viewer Issue

    Hi All,
    I'm facing a problem in Viewer. Whenever I customize the report(change graph style or change rows retrieval or drill up/down) , Drill Through to other reports through links are giving an error-
    Warning
    Do you want to save your changes before closing this worksheet?
    You have not saved the changes you made to this worksheet. This worksheet must be closed to continue. Click "Yes" to save changes and continue, "No" to continue without saving changes, or "Cancel" to return to this worksheet. If you choose "Yes" and you do not own the workbook, you will be prompted to save it under a new name.
    AND NEXT ON CLICKING YES/NO
    Error
    An error occurred while handling the event. See the application log for more details.
    A fatal application error has occurred. Please consult with your OracleAS administrator or look at the application log file.
    This is happening only with Viewer, in my Plus all the links , drill up , drill down are perfectly fine.
    Please help me how i solve this problem.
    (URGENT)
    Thanks

    I have got the same issue
    and the log file 10.1.2/j2ee/OC4J_BI_Forms/application-deployments/discoverer/OC4J_BI_Forms_default_island_1/application.log tells
    09/07/03 09:31:01 discoverer: [ERROR] [Discoverer Viewer BG Worker 18] oracle.discoverer.applications.framework.Applicat
    ionController._logException error.bean.delegation.failed
    oracle.discoverer.applications.viewer.controllers.ControllerException: error.bean.delegation.failed
    at oracle.discoverer.applications.viewer.controllers.GridController.delegateToBean(Unknown Source)
    at oracle.discoverer.applications.viewer.controllers.GridController.handleBi_drill2(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java(Compiled Code))
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java(Compiled Code))
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java(Compiled Code))
    at java.lang.reflect.Method.invoke(Method.java(Compiled Code))
    at oracle.discoverer.applications.framework.RequestProcessor.execute(Unknown Source)
    at oracle.discoverer.applications.framework.WorkerThread.run(Unknown Source)
    at java.lang.Thread.run(Thread.java:568)
    Caused by: oracle.discoiv.beans.ServerLostException: Contact with backend server lost
    at oracle.discoiv.beans.proxy.server.DiscovererServer.lostMiddleTier(DiscovererServer.java(Inlined Compiled Code
    at oracle.discoiv.beans.proxy.server.DiscovererServer.getPunchThroughDataProviderResultSet(DiscovererServer.java
    (Compiled Code))
    at oracle.discoiv.beans.proxy.DataProxy.getDataProviderResultSet(DataProxy.java(Compiled Code))
    at oracle.discoiv.beans.Data.getDataProviderResultSet(Data.java:69)
    at oracle.disco.bibeans.beans.BeansDataDirector.setResults(BeansDataDirector.java:206)
    at oracle.disco.bibeans.DiscoDataSource.notifyListenersIfDataAvailable(DiscoDataSource.java:1059)
    at oracle.discoverer.applications.viewer.model.QueryModel.notifyDataListeners(Unknown Source)
    at oracle.discoverer.applications.viewer.model.ViewerModelImpl.notifyDataListeners(Unknown Source)
    at oracle.discoverer.applications.viewer.controllers.ViewerController.notifyListenersDataAvailable(Unknown Sourc
    e)
    at oracle.discoverer.applications.viewer.controllers.ViewerController.executeQuery(Unknown Source)
    ... 10 more
    Caused by: DiscoNetworkException java.net.ConnectException: Connection refused:host=eulxrxfr,port=34571 - Nested excepti
    on: org.omg.CORBA.TRANSIENT: java.net.ConnectException: Connection refused:host=eulxrxfr,port=34571 vmcid: IBM minor c
    ode: E02 completed: No
    at oracle.disco.model.corbaserver.serverrequest.DsrGeneralCorbaXML.updateServer(Unknown Source)
    at oracle.disco.model.corbaserver.execengine.ExecuteEngineImpl._nonReentrantExecute(Unknown Source)
    at oracle.disco.model.corbaserver.execengine.ExecuteEngineImpl.execute(Unknown Source)
    at oracle.disco.model.corbaserver.execengine.SessionControllerImpl.execute(Unknown Source)
    at oracle.disco.model.corbaserver.execengine.SessionControllerImpl.execute(Unknown Source)
    at oracle.disco.model.corbaserver.Discoverer.closeActiveWorkbook(Unknown Source)
    at oracle.disco.model.corbaserver.SessionImpl.closeActiveWorkbook(Unknown Source)
    at oracle.disco.model.corbaserver.WorkbookImpl.closeWorkbook(Unknown Source)
    at oracle.discoiv.session.model.ModelWorkbook.closeWorkbook(ModelWorkbook.java:234)
    at oracle.discoiv.session.model.ModelEul.closeWorkbook(ModelEul.java:269)
    at oracle.discoiv.state.CloseWorkbookTransition.doTransition(CloseWorkbookTransition.java:37)
    at oracle.discoiv.state.ResetDrillTransition.doTransition(ResetDrillTransition.java:40)
    at oracle.discoiv.state.StateTransition.moveToEndState(StateTransition.java(Compiled Code))
    at oracle.discoiv.state.DiscoState.applyTransitionsAndCommands(DiscoState.java:132)
    at oracle.discoiv.state.BlockingStateMachine.moveStateToDataSpecification(BlockingStateMachine.java:119)
    at oracle.discoiv.state.BlockingStateMachine.processDataSpecification(BlockingStateMachine.java:72)
    at oracle.discoiv.controller.discoslow.DiscoSlowRequest.executeSlowRequest(DiscoSlowRequest.java:61)
    at oracle.discoiv.util.slow.Worker._execute(Worker.java:132)
    at oracle.discoiv.util.slow.Worker.run(Worker.java:109)
    ... 1 more
    09/07/03 09:31:02 discoverer: [ERROR] [Discoverer Viewer BG Worker 19] oracle.discoverer.applications.framework.Applicat
    ionController._logException error.invalid.state
    oracle.discoverer.applications.framework.ApplicationException: error.invalid.state
    at oracle.discoverer.applications.framework.RequestProcessor.execute(Unknown Source)
    at oracle.discoverer.applications.framework.WorkerThread.run(Unknown Source)
    at java.lang.Thread.run(Thread.java:568)
    Caused by: oracle.discoiv.beans.SessionClosedException: Session closed
    at oracle.discoiv.beans.proxy.server.DiscovererServer.checkSessionActive(DiscovererServer.java(Inlined Compiled
    Code))
    at oracle.discoiv.beans.proxy.server.DiscovererServer.getPunchThroughDataProviderResultSet(DiscovererServer.java
    (Compiled Code))
    at oracle.discoiv.beans.proxy.DataProxy.getDataProviderResultSet(DataProxy.java(Compiled Code))
    at oracle.discoiv.beans.Data.getDataProviderResultSet(Data.java:69)
    at oracle.disco.bibeans.beans.BeansDataDirector.setResults(BeansDataDirector.java:206)
    at oracle.disco.bibeans.DiscoDataSource.notifyListenersIfDataAvailable(DiscoDataSource.java:1059)
    at oracle.discoverer.applications.viewer.model.QueryModel.notifyDataListeners(Unknown Source)
    at oracle.discoverer.applications.viewer.model.ViewerModelImpl.notifyDataListeners(Unknown Source)
    at oracle.discoverer.applications.viewer.controllers.ViewerController.notifyListenersDataAvailable(Unknown Sourc
    e)
    at oracle.discoverer.applications.viewer.controllers.GridController.handleDisplayData(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java(Compiled Code))
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java(Compiled Code))
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java(Compiled Code))
    at java.lang.reflect.Method.invoke(Method.java(Compiled Code))
    ... 3 more
    09/07/03 09:31:02 discoverer: [ERROR] [AJPRequestHandler-ApplicationServerThread-10] oracle.discoverer.applications.fram
    ework.ApplicationController._logException error.viewer.data.missing
    oracle.discoverer.applications.viewer.view.dataprovider.DataProviderException: error.viewer.data.missing
    at oracle.discoverer.applications.viewer.view.dataprovider.BaseProxy.<init>(Unknown Source)
    at oracle.discoverer.applications.viewer.view.dataprovider.BaseProxy.retrieveModelData(Unknown Source)
    at oracle.discoverer.applications.viewer.view.dataprovider.BaseProxy.retrieveModelData(Unknown Source)
    at oracle.discoverer.applications.viewer.view.dataprovider.ErrorProxy.retrieveErrorData(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java(Compiled Code))
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java(Compiled Code))
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java(Compiled Code))
    at java.lang.reflect.Method.invoke(Method.java(Compiled Code))
    at oracle.cabo.servlet.event.MethodEventHandler.handleEvent(Unknown Source)
    at oracle.cabo.servlet.event.TableEventHandler.handleEvent(Unknown Source)
    at oracle.cabo.servlet.event.TableEventHandler.handleEvent(Unknown Source)
    at oracle.cabo.servlet.event.BasePageFlowEngine.handleRequest(Unknown Source)
    at oracle.cabo.servlet.AbstractPageBroker.handleRequest(Unknown Source)
    at oracle.cabo.servlet.ui.BaseUIPageBroker.handleRequest(Unknown Source)
    at oracle.cabo.servlet.PageBrokerHandler.handleRequest(Unknown Source)
    at oracle.cabo.servlet.UIXServlet.doGet(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
    at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispat
    cher.invoke(ServletRequestDispatcher.java(Compiled Code))
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispat
    cher.forwardInternal(ServletRequestDispatcher.java(Compiled Code))
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispat
    cher.forward(ServletRequestDispatcher.java:222)
    at org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1069)
    at org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:455)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:279)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
    at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:507)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
    at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ResourceFilterChain.
    doFilter(ResourceFilterChain.java(Compiled Code))
    at oracle.discoverer.applications.framework.ApplicationEncodingFilter.doFilter(Unknown Source)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispat
    cher.invoke(ServletRequestDispatcher.java(Compiled Code))
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispat
    cher.forwardInternal(ServletRequestDispatcher.java(Compiled Code))
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpRequestHandler.p
    rocessRequest(HttpRequestHandler.java(Compiled Code))
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.AJPRequestHandler.ru
    n(AJPRequestHandler.java(Compiled Code))
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.AJPRequestHandler.ru
    n(AJPRequestHandler.java:133)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].util.ReleasableResourcePooledExe
    cutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)
    at java.lang.Thread.run(Thread.java:568)

  • GRC 10.1 Simplified Access Request and Remediation View Issues

    Hi Everyone,
         We recently upgraded our GRC 10.0 environment to 10.1, SP 5 and am having the following issues--has anyone else also experienced?
    In the simplified access request form, it keeps telling me to enter a “valid user ID”—even though the ID is valid and works fine in the normal access request screen. Also tried to search and then select the ID in this field with the same error.
    In the SoD Remediation view, I keep getting “No Data Found”, even though in the detail view, there are risks the same request:
    I’ve checked the following things:
    I’ve used IE 8, IE 9, FireFox, Chrome, and the NWBC to see if any of these fix the issue
    I double checked the 10.1 “upgrade guide” to make sure Gateway configurations are correct
    It looks like we are on the latest support packs:
    Any help on this would be greatly appreciated!
    Thanks,
    Brett

    Hi Brett,
    For Remediation issue you can check the below thread.
    http://scn.sap.com/thread/3574790
    Regards,
    Neeraj

  • Photo viewer issue in N8

    when i opened the photo viewer to view photos, it takes more time to load (the loading symbol is rotating for more than minute).This was not the actual opening time before.If i try to exit the viewer, i couldn't,the display is switched off for a while,then i pressed menu key to minimise the application and closed it.
    Also i locked the screen using the slider key.but i couldn't unlock the screen using slider key.
    does anyone experience the same issue?
    Solved!
    Go to Solution.

    For all those having that "black screen" problem, here's an excerpt from the PR 1.1 changelog:
    Images and Camera
    * 4053 Confusing behaviour when saving to a file that matches an existing directory
    * 6194 Shutter release button does not always work
    * 6372 Sometimes photos are not deleted if you delete directly after taking them
    * 7060 Sometimes photos are very green
    * 7160 Camera app hardcodes and requires FAT partition
    * 7394 Some photos are missing EXIF DateTimeOriginal data
    * 7758 Daily image counter in photo filenames not incrementing in some cases
    * 8087 Photo autorotation issue
    * 8310 Image Viewer shows only black screen
    * 8698 camera does not have the night mode function
    * 8877 Volume buttons should work in camera window when lens cover is not opened
    So try PR 1.1.

  • Thumbnail view issues in PSE 10.

    Hello, new member here.
    I can't view RAW thumbnails when I go into the open dialog (not organizer)  just regular file/open in PSE10.  (win 7 x64).  (Sony alpha 33)
    Is there a cache issue? 
    Can I clear it?
    I can see a preview of the file on the bottom of the window, but no thumbnails.
    Thanks in advance.
    edit:
    .jpg images from wither the same camera or another camera display fine.
    Message was edited by: tubeydude

    Hi Neale,
    Thanks for the reply.  I really appreciate it. 
    I tried that and now I see a generic image of an ocean and mountain behind.  Previously, (before the sony raw driver)  was just an icon that looked like a file folder with "ARW" in big letters.  That is gone now and replaced by the image mentioned. 
    Thanks again.
    Erik

  • Design View Issue Dreamweaver CS4 - Taking forever to load design view

    I am having an issue where my site takes literally almost a full day to load in design view. Once it is loaded everything works seemlessly but once I close down Dreamweaver and reopen it, I have to wait another day to get to design view of my site. All files open just fine in code view.
    I have deleted the Dreamweaver CS4 cache folder, completely formatted my drive and reinstalled creative suite. I have also validated my code on W3c and everything checks out fine.
    The majority of my site is based off of a template, but even when I remove all the template references in the html files from Notepad I am still having the same issue. My site renders fine and quickly however on Explorer, Firefox, Chrome, and Safari.
    When loading any other site off the web into Dreamweaver I do not run into the problem so there must be something wrong with how my site is set up. Either the Template file is no good or somewhere else I am falling short. Can someone, please, please, please ( I am begging) help me figure out what is going on here.
    My index file is located at - http://www.thebluedot.net/index.html and the template file is located at - http://www.thebluedot.net/Templates/index.dwt
    I have searched high and low and even made a post on this same topic about a month ago but never came up with a resolution to my issue. I had given up on finding a solution to this problem for some time, but I really need to figure out where I am going wrong here!
    Additional Details -
    I am running - Windows Vista Ultimate on a Core 2 Processor with 12 GB of Ram & Solid State Hard Drive. Everything on my system runs super smoothly except loading my site in Dreamweaver CS4 design view.
    I really appreciate any help you can provide.

    I have used CS2 Adobe GoLive to create and manage a website (pro-prosperity.com).  Now, I have CS4 Dreamweaver.  I got a new site set up on Dreamweaver using the site management facility.  I then have the contents of website available locally on Dreamweaver.  I can edit files.  But the main home page, index.html, is not displaying on design view mode for editing, although it displays everything on live view mode.  I have struggled for days and am not getting any difference in attributes of index.html and another .html that is displaying fine on design view and is editable. 
    I am really lost and am begging for any help.  Can you, for example, copy the home page from pro-prosperity.com and display on design view and edit it?  Please tell me what is in this file that is troublesome.  Thanks.
    The first thing you should do is to make sure that this feature is turned on (it's off by default):
      View > Code View Options > Highlight Invalid Html
    It's not perfect, but it will notify you of some problems. In Code View, there are many problems highlighted. Some of them don't make sense, but are triggered because of a problem with a parent tag.
    Be sure to make a backup copy of your file before doing the next step. Close your page. Go to Preferences > Code Rewriting, and turn on "Fix invalidly nested and unclosed tags", "Remove extra closing tags", and "Warn when fixing or removing tags". Click OK, then re-open your page. The messages in the dialog to tell you what was changed. This allowed me to see your page in Design View (I am using CS5).
    Note: I suggested that you reset your preferences to turn off those 3 settings as they can cause problems with some markup.
    In the long term, I suggest that you avoid nesting tables wherever possible.
    Hope this helps,
    Randy

  • IE11 and Crystal Reports Viewer issue

    We have a Delphi application which launches Crystal Reports through a Java Web Module.  The Delphi application gives users the option to view a single report or multiple reports (Crystal Reports).  In previous versions of IE, everything worked fine.   However, when we launch multiple reports in IE11, the first report loads properly but the other reports do not open the report in the new window.  It opens our home page.  So, first pop-up window shows the report1 without issues.  Other pop-up windows for report2 – reportN, shows our home page instead of the requested report.   Is there a fix for this issue?

    Hi, 
    This is SAP Business one reporting and printing forum.
    Please find correct forum and repost above query to get quick assistance. 
    Please close this thread here with helpful answer. 
    Thanks
    Nithi

Maybe you are looking for

  • Order number and cant reinstall photshop

    hello i have a problem i had choose an program for photoshop , and fill the information all with the payment and then the site transfer me to apage written on it ( thank u fajer , ur order has been procced ) and they didnt send me any order number or

  • My Ipod touch won't get into factory settings

    When I try to restore my IPOD Touch, it loads and then its says that mty IPOD will restart and go into factory settings mode but then it goes back to the apple logo on my IPOD touch.  Anyone out there have a solution for me? 

  • Importing Masters and Versions from iPhoto

    Is it possible to import both Masters and the associated Adjusted Versions from iPhoto into Aperture 3? The manual tells how to import the masters into the Aperture library but does not seem to tell how to import the corresponding versions adjusted i

  • Ibooks ver1.5 pdf file name changed

    After updating to version 1.5 (700) of iBooks on my iPad (ver1, iOS version 5.01), almost all of my pdf file names in iBooks are changing once I open those items. Some of the files change to what appears to be a property of the PDF file such as "Micr

  • Real estate org structure

    Hi guys, I want the real estate org structure..there reporting ..how to map the businerss area, profit center and cost center..