"Filter Before Display" Erroring out in ARXRWRCT.fmb

Hi All,
We had a performance issue with the Reciepts screen in AR Superuser responsibility and according to the metalink note 418873.1, we made changes to the form ARXRWRCT.fmd. The change is given below:
ON-SITE Fix instructions: ARXRWRCT.fmb
1.Open the form.
2.Navigate to LOV's.
3.Select the LOV "RGW_BILLING_NUMBER". Open up the property palette. Change the property "filter before
display" from "NO" to "YES".
4.Save the changes, compile the form ARXRWRCT.fmb and ARXRWMAI.fmb to pickup these changes. Test the issue.
Now, when we compile the above mentioned forms after making changes, we are encountering the below errors.
For Form ARXRWRCT
FRM-30048: Unable to find record group .
LOV RGW_EXCHANGE_RATE_TYPE
Form: ARXRWRCT
FRM-30085: Unable to adjust form for output.
For Form ARXRWMAI
FRM-30048: Unable to find record group .
LOV RGW_EXCHANGE_RATE_TYPE
Form: ARXRWMAI
FRM-30085: Unable to adjust form for output.
I have tried copying all the standard libraries and referencing them, but it did not help.
Any help in this regard is appreciated.
Jithin

We never figured this out and are waiting for the EBS upgrade to fix this. hence closing this thread.
Thanks,
Jithin

Similar Messages

  • FILTER BEFORE DISPLAY & List_values(restrict)

    I have a view which retrieves around 400,000 records from
    various tables.
    I had to use two LOV's for allowing to query by not entering any
    values as well as partial values.
    Since List_Values(Restirct) and FILTER BEFORE DISPLAY options do
    go well together. I am using two LOVs for both of them.
    When I call the LOV with FILTER BEFORE DISPLAY, it retrieves the
    records faster ie 5 secs.
    When I call the LOV without FILTER BEFORE DISPLAY, using
    List_values(RESTRICT), then it takes around 30 secs.
    Any ideas about the difference in these two options?

    Hi,
    I might be mistaken (too many forms versions in my brain) but
    Filter Before Display ignores the contents of the output item. It
    shows a small window, where you can enter a filter before
    fetching all records to the LOV.
    LOV_VALUES(restrict); (if I remember correctly from my
    SQL*Forms30 days) actually used the contents of the item as a
    filter (for instance, if the item contains "a", the LOV only
    shows the records that start with "a").
    I've never tried to use both in the same LOV.
    I'll try it tomorrow.
    Hope this clears something,
    Pedro das Neves
    [email protected]

  • RAR5.3 - Alert Generation background job repeatedly errors out

    Hello,
    We have an Alert Generation job that we've set up to run daily on
    PR2/150 strictly for the Transaction Usage Report. We do not
    use Alerts so the only parameter we set for this job is "Generate
    Action Log." The job will run anywhere from 2 to 4 hours before it
    errors out. Every time this job, this process overflows its allotment
    on the backend of 4GB and consequently creates a system dump. The job
    is just too big.
    We've reviewed the powerpoint "Risk Analysis and Remediation Alerts,
    Jayne Gibbon, Director of GRC Support, August 15 2008"
    This powerpoint basically says Alert Generation jobs should run every 1-
    4 hours, otherwise they can get very large. We applied note 1015921 to
    change the Last Run Date in order to decrease the size of the job. The
    farthest we were able to set the Last Run Date back and have the alert
    generation job run successfully was 2 minutes. This is unacceptable for
    us as we need the jobs to at least run for 1 hour time periods.
    What can we do to ensure our alert generation jobs complete
    successfully in a manageable time period?
    Any info or guidance would be greatly appreciated!
    Jes Behrens
    Edited by: Jes Behrens on Jan 20, 2009 10:47 AM

    there seems to be a problem with the SID table of your master data. test it with RSRV and repair any errors.
    if this doesn't help return to the forum

  • Run out of licenses, can do 20 reports in 20 minutes before receiving error

    <p>I have a problem with running out of Licenses when using our ASP.NET Web Application.</p><p>Our Web Application exports and opens a Crystal Report to PDF when the user clicks on the report link.  Unfortunately we have only a certain number of licenses available and after each use it&#39;s useless for about 20 minutes!  In a 20 minute period we are able to run up to 20 reports before getting the "out of licenses" error page. </p><p>So if you have 5 users going through multiple reports in a short time we&#39;ve run out of licenses and they have to wait 20 minutes before trying again!?! </p><p>I am trying to find a means of improving this and have a few thoughts on how:</p><ol><li>Close the license being used (and make available to somebody else) once the report is created. <br /><em>We generally do not have 20 <u>concurrent </u>users at any time but in a 20 minute time span we can have over 20 report requests.</em><br /> <br /></li><li>Shorten the time before the license becomes available again (like to 5 minutes) <br /><em>Long enough for even the larger reports to run, but short enough that the chances of 20 reports being requested in a 5 minute period is slim.<br /> <br /></em> </li><li>Save the License use for that particular USER for the period of time (so if they open 1 or 10 reports it all utilizes the same License). <br /><em>This would work fine because it&#39;s a small office of just over 20 users and the chance of everybody accessing reports in that same 20 minutes is very low.<br /> <br /></em> </li></ol><p> If anybody has any ideas, suggestions, hints, or "it can&#39;t be done" I would greatly appreciate it!  We haven&#39;t found anything in the RAS settings and I haven&#39;t found anything that effects the LICENSING in .NET (and using Report.Close() does not free up the license).</p><p> Thanks,</p><p>~Drew </p>

    <p>Alright, I seem to have some success in fixing this issue, though it isn&#39;t the 100% best solution. </p><p>I create the ReportDocument in the Global.asax.vb file </p><font size="1" color="#0000ff">
    <blockquote />Dim<font size="1"> crpt </font><font size="1" color="#0000ff">As</font><font size="1"> </font><font size="1" color="#0000ff">New</font><font size="1"> CrystalDecisions.CrystalReports.Engine.ReportDocument<br /><font size="1">Session.Contents.Add("crpt", crpt)</font></font></p></font></blockquote><p><font size="1">and then I re-use this in the page that exports the file to PDF and displays it.  Since this is created as a session-level object in Global.asax.vb I reference it in the display page as Session("crpt") and I clean it up by the end of the page but I don&#39;t make the session object into nothing.</font></p><blockquote><p><font size="1">If Not IsNothing(Session("crpt")) Then</font></p><blockquote><p><font size="1">Session("crpt").Close()<br />System.Runtime.InteropServices.Marshal.ReleaseComObject(Session("crpt"))</font></p></blockquote><p><font size="1">End If </font></p></blockquote><p><font size="1">Then on Session End in the Global.asax.vb I clean up the Session variable and call the garbage collection.</font></p><blockquote><p><font size="1">If Not IsNothing(Session("crpt")) Then</font></p><blockquote><p><font size="1">Session("crpt").Close()<br />System.Runtime.InteropServices.Marshal.ReleaseComObject(Session("crpt"))<br />Session("crpt") = Nothing<br />Session("crpt").Dispose()</font></p></blockquote><p><font size="1">End If<br />GC.Collect() </font></p></blockquote><p><font size="1">It seems to be working at this time though there is the limitation that now everybody who enters the web application gets an object whether or not they are going to run reports. </font></p><p><font size="1">The more ideal situation would be for the object to not be created until the user enters the report page or have the page that creates/displays the report to check if the object exists and if it does not to create the object.</font></p>

  • I have an apple cinema display that hasnt been tested, before i go out n by an adc adapter for it, i wanted to know if the apple store could test it

    i have an apple cinema display that hasnt been tested, before i go out n by an adc adapter for it, i wanted to know if the apple store could test it

    You should probably call and ask them. We are just other Apple product users here, like yourself.

  • Apply filter before Left Outer joins in OBIEE.

    Hi Experts,
    I have an user requirement where a filter need to be applied before the Left outer join applied on the OBIEE generated query.
    But obiee normally applies the filters on the resulted data after the Left outer join applied which eliminates some required data.
    Is there any way to achieve this at the RPD level.
    Thanks
    Swami

    Swam,
    your syntax for sql is not correct.
    you are doing outer join and filter I am not sure what you are trying to achieve here
    assume T1 is fact table and T2 is time dimension
    T1 left outer T2 means you are trying to pull all the records from fact irrespective of the date filter!!
    you will see all the records.
    Please manually write the Sql and we have lot of ways  to force that in to OBIEE.
    Thanks
    NK

  • HT1212 My iPhone is displaying a "iPhone is disabled" notification. It asked me to enter my password multiple times before locking me out.

    My iPhone is displaying a "iPhone is disabled" notification. It asked me to enter my password multiple times before locking me out. Can you help with this?

    Hey there!
    Unfortunetly, in situations like this, the ONLY other way to bypass that four-digit passcode and/or a disabled device is to connect to a computer with the most recent version of iTunes (11.1.3), connect the device in Recovery Mode and restore it to factory settings. Restoring to factory will completely wipe the device, including the four-digit passcode.
    The steps to do so are outlined in http://support.apple.com/kb/ht1212
    (If there is any other way to bypass the passcode, it would have to be third-party, which I am not familiar with any program that can, sorry!).

  • 27 inch thunderbolt display blacks out after Thunderbolt Firmware Update 1.2

    Bought 2 new 27 inch TB displays for two different machines and after a couple of days the Thunderbolt Firmware Update 1.2 appears on my Mac Pro with one of the displays installed. So I install the firmware update.  Now my display blacks out periodically and I keep getting Graphic Display Errors with a request to sent the errors to Apple. Running a 32 GB Mac Pro (late 2013 circular style) I have three monitors connected (two 20 inch cinema displays and the new 27 inch display). This machine is supposed to be able to handle three 4k monitors or 6 standard TB displays.  I've seen the posts about the blacking out with this monitor but I didn't have any problems before the firmware update and now I've got them pretty regularly.  I had the blacking out problem on an earlier monitor and took one of the monitors back and Apple gave me another one and this is the replacement.  Same problem, but this one only started after the update. I'm hoping someone from Apple reads these messages and can let me know what's up.
    BTW, I also have an older 27 inch Apple monitor that ran perfectly on this machine so I'm disappointed that I spent all this money and now get the blacking out issue.
    Mac Pro (Late 2013)
    Processor 3.7 GHz Quad-Core Intel Xeon E5
    Memory 32 BG
    Graphics AMD FirePro D300 2048 MB

    I have my Thunderbolt display connected to my MacBook Pro and have been experiencing the same issue, getting worse over time.  The folks at my local Apple store did not know what to do about it.  So, I looked around and tried different thing.
    The one thing that seems to be working is to System Preferences > Build-in Display > uncheck “Automatically adjust brightness.”
    I hope this helps.

  • Crystal Report Viewer error out when running multiple instances

    Hi,
    I am using java 1.4 with BO XI R3.0.
    I notice I can only run one report at a time. If I was to run two reports, the 1st report will error out while 2nd report will run to its completion. Reports run on separate popup windows. I have tested with IE6, IE8 and also FireFox 3.0
    Depending on the timing, I get different kinds of error.
    "A request was cancelled. The necessary security privileges could not be verified. This indicates a problem with the security server. [RCIRAS9190] [RASLIB9002] "
    "The Report Processing Server session you are using to connect is in the process of being shut down. You need to retry. [RCIRAS0200]"
    I am using PSReportFactory and set parameters into CrystalReportViewer to display.
    processParametersu2026
    CrystalReportViewer viewer = new CrystalReportViewer();
    pfieldDV = new ParameterFieldDiscreteValue();     
    pfieldDV.setValue(formatViewerParameterInputValue(tempRpt[1],tempParam[x]));
    pfield.getCurrentValues().add(pfieldDV);
    viewerParameters.add(pfield);     
    viewer.setParameterFields(viewerParameters);     
    createCrystalViewer(m_oReportWrap.getRequest(), response, sInstanceId,viewer);
    private void createCrystalViewer(HttpServletRequest request, HttpServletResponse response2, String sInstanceId, CrystalReportViewer viewer) throws ReportSDKExceptionBase, FileNotFoundException, IOException, SDKException
             IEnterpriseSession eSession = oLogon.getCESession();
             IInfoStore iStore = oLogon.getInfostore();
             IInfoObject rptObject = findInfoObject(iStore,sInstanceId);
             IReportSourceFactory rptFactory =    IReportSourceFactory)eSession.getService("","PSReportFactory");
             IReportSource reportSource = rptFactory.openReportSource(rptObject,Locale.ENGLISH);
             IReport report = (IReport)rptObject;
            ConnectionInfo conn = new ConnectionInfo();
            ConnectionInfos connInfo = new ConnectionInfos();   
            ServletContext sc = getServletConfig().getServletContext();
            String realPath = sc.getRealPath("");
            Properties prop = new Properties();
            viewer.setOwnPage(true);
            viewer.setDatabaseLogonInfos(connInfo);
            viewer.setReportSource(reportSource);               
            viewer.setURI(request.getRequestURI() + "?reportID=" + rptObject.getID() + &viewerType=vwrTypeJavaSDK&viewID=1");
            viewer.setEnterpriseLogon(eSession);
            viewer.setHyperLink("New Window");
            viewer.processHttpRequest(request, response2, sc, null);

    Thanks to both of you.
    I actually was able to resolved this issue by tracking the values inside IEnterpriseSession.
    // Perform Crystal Enterprise Logon
    ISessionMgr oSessionMgr = CrystalEnterprise.getSessionMgr();
    IEnterpriseSession m_oCESession = oSessionMgr.logon(sUserid, sPassword, sSystemName,  getSecTypeString(iSecType));
    System.out.println("in logon m_oCESession "+m_oCESession);
    The UserInfo in the SeucuritySession: userInfo was always null so whatever i pass in, it was not storing them.
    (EnterpriseSession:logon=(SecuritySession:userInfo=null)
    All i need to do is to add   IUserInfo userInfo = null;  before IEnterpriseSession then it will store the user & password.

  • New LUN Takes A long Time To Format and Errors Out

    Good afternoon,<o:p></o:p>
    I have a Hyper-V Cluster composed of 4 nodes and these nodes are able to access multiple CSVs (14 in total). I recently requested a new LUN (LUN 15)to be provisioned
    to my Hyper-V cluster in the size of 500GB. Here is my problem:<o:p></o:p>
    1. Formatting of a 500GB LUN (with quick format selected) should not take more than a few seconds. Instead, the quick format takes about 2hrs if not longer. I have actually
    seen it go for half the day.<o:p></o:p>
    2. Once the formatting has completed (no errors), taking the formatted LUN offline freezes the Computer Management screen and shows the status (Not Responding). This
    will take place for 30 minutes or less and show that the LUN has been taken offline.<o:p></o:p>
    3. In the Failover Cluster Manager, detecting the disks takes about 15 minutes. Once the available LUNs have been detected I can add the 500GB LUN to the Disks screen
    without any problems.<o:p></o:p>
    4. While in the Disks screen, adding the LUN to the Clustered Shared Volumes takes about 5 minutes (too long).<o:p></o:p>
    Already seeing that there is a problem, I went ahead and used the Hyper-V Manager to create a 200GB vhd on the new LUN which has been added to the CSV. The bar indicating
    the progress of the vhd creation does not display any progress (no green progress bar appears, not even a tiny bit of it) and after 3 hours (more or less) I receive an error, stating that the creation of the vhd failed.
    <o:p>NOTE: The vhd shows up in Volume 9 (LUN 15) but I can only bet that it will not work, plus I would not want to work with a vhd file which failed during the
    creation process.</o:p>
    <o:p>Long story short, I repeated the above steps to see if that was a temporary problem, but it is not. The same problem occurs no matter which Hyper-V cluster
    node the operations are performed on. I would like to add, that I tested the creation of a vhd on an already configured LUN and the creation was completed successfully, and within a n expected time frame.</o:p>
    NOTE: When LUN 15 errors out, it's status shows "Failed" in the Failover Cluster Manager. This in turn, causes the re-scanning of available disks to take forever (in Computer Management) and it keeps searching. Pretty
    much, the fail of one LUN affects the entire functionality of the entire Hyper-V Cluster. 
    Errors Listed In Event Details For LUN 15:
    1. Cluster Shared Volume 'Volume9' ('Cluster Disk 5') is no longer accessible from this cluster node because of error 'ERROR_TIMEOUT(1460)'. Please troubleshoot this node's connectivity to the storage device and
    network connectivity.
    Event ID: 5142; Source: Microsoft-Windows Failover Clustering;Task Category: Cluster Shared Volume
    2. Cluster Shared Volume 'Volume9' ('Cluster Disk 5') is no longer available on this node because of 'STATUS_IO_TIMEOUT(c00000b5)'. All I/O will temporarily be queued until a path to the volume is reestablished.
    Event ID: 5120; Source: Microsoft-Windows Failover Clustering;Task Category: Cluster Shared Volume
    3.Cluster resource 'Cluster Disk 5' of type 'Physical Disk' in clustered role '4530acc9-8552-4696-b6c3-636ff8d58c46' failed.
    Based on the failure policies for the resource and role, the cluster service may try to bring the resource online on this node or move the group to another node of the cluster and then restart it.  Check the resource and group state using Failover
    Cluster Manager or the Get-ClusterResource Windows PowerShell cmdlet. 
    Event ID: 1069; Source: Microsoft-Windows Failover Clustering;Task Category: Resource Control Manager
    4.
    Cluster resource 'Cluster Disk 5' (resource type 'Physical Disk', DLL 'clusres.dll') did not respond to a request in a timely fashion. Cluster health detection will attempt to automatically recover by terminating the Resource Hosting Subsystem (RHS)
    process running this resource. This may affect other resources hosted in the same RHS process. The resources will then be restarted. 
    The suspect resource 'Cluster Disk 5' will be marked to run in an isolated RHS process to avoid impacting multiple resources in the event that this resource failure occurs again. Please ensure services, applications, or underlying infrastructure
    (such as storage or networking) associated with the suspect resource is functioning properly.
    Event ID: 1230; Source: Microsoft-Windows FailoverClustering;Task Category: Resource Control Manager
    Any and all help will be appreciated!

    Hi AquilaXXIII,
    What server edition you are using? If you are using 2012r2 as cluster node, please install Recommended hotfixes and updates for Windows Server 2012 R2-based failover clusters
    update first,
    Recommended hotfixes and updates for Windows Server 2012 R2-based failover clusters
    http://social.technet.microsoft.com/Forums/en-US/f9c1a5f7-4fcf-409a-8d7e-388b85512bfe/new-lun-takes-a-long-time-to-format-and-errors-out?forum=winserv
    Before you install the new shared storage please first validation this storage first, you can refer the following KB to validation the new LUN.
    Understanding Cluster Validation Tests: Storage
    http://technet.microsoft.com/en-us/library/cc771259.aspx
    I’m glad to be of help to you!
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Previously stable custom OAF form intermittently errors out

    Gurus,
    A JDeveloper form that I developed for 11i a couple of years back which has been stable up until recently is now sporadically erroring out.  The form seems to work if several attempts are made to apply the back button on the browser.  The error message is as follows:
    Error: Cannot Display Page
    (Because one of the following occured)
      1. Your login session has expired.
      2. A system failure has occured.
    Then it suggest using the page's navigational links instead
    of the browsers Back and Forward control.
    It's strange that the error is just now appearing and only appears in our UAT environment.  Our Dev and Prod environments appear fine.
    Has anyone seen this before?
    We're using 11i Applications on a Linux forms server with a 10g database.
    Thanks in advance for you help.

    Thanks for the responses. There was a problem with the file system (on the unix server) which was causing the cache to fail. I took the cache statements out of the project settings and could run it but the DBAs have since fixed the file problem so I have now put the cache statements back. The other form (that worked) is much smaller so I guess it did not make as much use of the cache.

  • Problem displaying error page of web.xml when using JSF, Ajax4jsf

    Hi,
    My application is using MyFaces, RichFaces and Ajax4jsf. When i try to display error page configured in web.xml, i am getting exception "Error while processing error page".
    my web.xml contents are as follows:
    <?xml version="1.0"?>
    <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <filter>
    <display-name>RichFaces Filter</display-name>
    <filter-name>richfaces</filter-name>
    <filter-class>org.ajax4jsf.Filter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>richfaces</filter-name>
    <servlet-name>faces</servlet-name>
    <dispatcher>REQUEST</dispatcher>
    <dispatcher>FORWARD</dispatcher>
    <dispatcher>INCLUDE</dispatcher>
    </filter-mapping>
    <filter>
    <filter-name>extensionsFilter</filter-name>
    <filter-class>
    org.apache.myfaces.webapp.filter.ExtensionsFilter
    </filter-class>
    <init-param>
    <description>
    set the size limit for uploaded files. Format: 10 - 10 bytes 10k
    - 10 KB 10m - 10 MB 1g - 1 GB
    </description>
    <param-name>uploadMaxFileSize</param-name>
    <param-value>100m</param-value>
    </init-param>
    <init-param>
    <description>
    Set the threshold size - files below this limit are stored in
    memory, files above this limit are stored on disk.
    Format: 10 - 10 bytes 10k - 10 KB 10m - 10 MB 1g - 1 GB
    </description>
    <param-name>uploadThresholdSize</param-name>
    <param-value>100k</param-value>
    </init-param>
    </filter>
    <filter>
    <filter-name>Seam Redirect Filter</filter-name>
    <filter-class>org.jboss.seam.servlet.SeamRedirectFilter</filter-class>
    </filter>
    <filter>
    <filter-name>KTServletFilter</filter-name>
    <filter-class>com.kenexa.core.system.KTServletFilter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>extensionsFilter</filter-name>
    <url-pattern>*.jsf</url-pattern>
    </filter-mapping>
    <filter-mapping>
    <filter-name>extensionsFilter</filter-name>
    <url-pattern>/faces/*</url-pattern>
    </filter-mapping>
    <filter-mapping>
    <filter-name>Seam Redirect Filter</filter-name>
    <url-pattern>*.jsf</url-pattern>
    </filter-mapping>
    <filter-mapping>
    <filter-name>KTServletFilter</filter-name>
    <url-pattern>*.jsf</url-pattern>
    </filter-mapping>
    <!-- seam Listeners -->
    <listener>
    <listener-class>org.jboss.seam.servlet.SeamListener</listener-class>
    </listener>
    <listener>
    <listener-class>com.kenexa.kr.web.KRServletListener</listener-class>
    </listener>
    <servlet>
    <servlet-name>faces</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>faces</servlet-name>
    <url-pattern>*.jsf</url-pattern>
    </servlet-mapping>
    <error-page>
    <exception-type>java.lang.Throwable</exception-type>
    <location>/rc/systemError.jsf</location>
    </error-page>
    </web-app>
    As per the configuration, when exception is thrown out of the application, container tries to display systemError.jsp page. If we want to include the JSF tags in systemError.jsp page, the request should pass through FacesServlet, so in the <error-page> <location> tag systemError page is specified with the extention systemError.jsf though it's actual extention is .jsp
    When exception is thrown from the application container invoke the error page but, while rendering systemError.jsf page exception is thrown saying "Exception processing error page "systemError.jsp" "
    To solve this problem i've gone through several forums, materials.
    In one forum a guy said, JSF1.1 spec has some problem in displaying error pages. To solve this don't write <f:view> tags in the error page, use <f:subview> intstead. By reading this, i again changed the contents of systemError.jsp page replacing <f:view> by <f:subview>. But the error is still repeating.
    Finally what i found is, when we use Ajax4jsf in the application, its AjaxViewRender class is throwing exception while rendering error pages configured through web.xml.
    So what i did is i changed error page extention from .jsf to .jsp in the <location> tag. Now jsf won't come in the picture and remove JSF related tags from the systemError.jsp page.
    <error-page>
    <exception-type>java.lang.Throwable</exception-type>
    <location>/rc/systemError.jsp</location>
    </error-page>
    Any comments are welcome----------------------------------------------------------------

    I too iam facing the same problem could you advise if you have found any solutions
              -Ram

  • Page Not displayed error upon Session Expiry in Solari Environment

    Hi All,
    I have a web application deployed in Solaris environment.
    Session expiry is handled from the application.
    I have this code for session expiry in my filter class:
    ((HttpServletResponse) _response).sendRedirect("/myapp/view/sessionExpired.jsp");
    When this code is executed Im getting "Page Cannot be Displayed " error is thrown.
    The same scenario works fine windows environment.
    Im facing this issue when it is on Solaris environment.
    Thanks in Advance.
    Cheers,
    Shorath

    I am using basic in my local environment. When we deploy to DEV/QA/PROD server, it will be SSO enabled. The requirement is, when user clicks on Ok button on session expired popup, it should just stay(refresh) on the same page with the pretty URL. Currently it refreshes the page with full URL.
    URL in Browser before session expiry: http://localhost:7101/MyApp/faces/page1
    URL in Browser after session expiry(click ok on popup, refreshes the same page): http://localhost:7101/MyApp/faces/oracle/webcenter/portalapp/pages/page1.jspx

  • "AE Effects Error: out of memory rendering '55mmv7_MonoTint.plugin"

    I am trying to export (using Quicktime Movie) a nested sequence when about 35% though the export it stops and gives me this error message:
    "AE Effects Error: out of memory rendering '55mmv7_MonoTint.plugin"
    The editor (i am only assistant) is using a filter package from Digital Film Tools, and they aren't in business any more. could it be that FCP 6 doesn't support these plugins?
    Some of the clips in the sequence aren't rendered. Do they need to be rendered before exporting to Quicktime?
    Some of the clips have a "Faux Film" filter on them but that's not the error that pops up.
    Not sure what else to say.
    Thanks for your help.

    Turn off the effects that you suspect and try the render again. That would be a good place to start.

  • Running Answers query based on SAP BW metadata errors out

    Hello,
    When we run a query in Answers built upon SAP BW metadata in OBIEE repository , it errors out. The report runs for a long time ( around 10 minutes ) and then the following error message is displayed. This error occurs even in latest version 10.1.3.4.
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. Expected an attribute value (HY000)
    SQL Issued: SELECT "Billing doc. date"."Billing doc. date Level 01" saw_0, "Material (Sales)"."Key#3" saw_1, "SlsSold: Cust Hi Lvl"."Key#5" saw_2, "ZBILLIFC/ZCMI_ZBILLIFC_DATASOURCE"."Billing Qty:Base UoM" saw_3, "ZBILLIFC/ZCMI_ZBILLIFC_DATASOURCE"."Doc Gross Sls Amt" saw_4 FROM ZBILLIFC WHERE "Billing doc. date"."Billing doc. date Level 01" IN ('01/01/2008', '04/01/2008', '04/15/2008') ORDER BY saw_0, saw_1, saw_2
    The Logical SQL and query code is
    -------------------- Logical Request (before navigation):
    RqList
    Billing doc. date.Billing doc. date Level 01 as c1 GB,
    Material (Sales).Key#3 as c2 GB,
    SlsSold: Cust Hi Lvl.Key#5 as c3 GB,
    Billing Qty:Base UoM:[DAggr(ZBILLIFC/ZCMI_ZBILLIFC_DATASOURCE.Billing Qty:Base UoM by [ Billing doc. date.Billing doc. date Level 00, Billing doc. date.Billing doc. date Level 01, Material (Sales).Key#3, SlsSold: Cust Hi Lvl.Key#5] )] as c4 GB,
    Doc Gross Sls Amt:[DAggr(ZBILLIFC/ZCMI_ZBILLIFC_DATASOURCE.Doc Gross Sls Amt by [ Billing doc. date.Billing doc. date Level 00, Billing doc. date.Billing doc. date Level 01, Material (Sales).Key#3, SlsSold: Cust Hi Lvl.Key#5] )] as c5 GB,
    Billing doc. date.Billing doc. date Level 00 as c6 GB
    DetailFilter: Billing doc. date.Billing doc. date Level 01 in ([ '01/01/2008', '04/01/2008', '04/15/2008'] )
    OrderBy: c1 asc, c2 asc, c3 asc
    -------------------- Sending query to database named ZBILLIFC (id: <<3594792>>):
    With
    set [0BILL_DATE1] as '{[0BILL_DATE].[LEVEL00].members}'
    set [0BILL_DATE2] as ' hierarchize ({ [0BILL_DATE1], Generate({[0BILL_DATE1]},Descendants([0BILL_DATE].currentmember,[0BILL_DATE].[LEVEL01],SELF), ALL) } )'
    set [0MAT_SALES2] as '{[0MAT_SALES].[LEVEL01].members}'
    set [ZSOLDTO__ZCUSTHI2] as '{[ZSOLDTO__ZCUSTHI].[LEVEL01].members}'
    set [Q] as 'crossjoin ({[0BILL_DATE2]},crossjoin ({[0MAT_SALES2]},{[ZSOLDTO__ZCUSTHI2]}))'
    select
    {[Measures].[4BN5BQ04SN24SMG6AVQ4YF3DW],[Measures].[4BN5BQ7TBLNUB8ZMGPSH8H23O]}on columns,
    NON EMPTY {[Q]} properties MEMBER_UNIQUE_NAME, PARENT_UNIQUE_NAME , [0MAT_SALES].[20MAT_SALES] , [ZSOLDTO__ZCUSTHI].[2ZSOLDTO__ZCUSTHI] on rows
    from
    [ZBILLIFC/ZCMI_ZBILLIFC_DATASOURCE]
    Any help would be highly appreciated.
    Thanks
    Azfar

    It looks like an error in your "where" clause.
    You have:
    WHERE "Billing doc.date", "Billing doc. date Level 01" IN ('01/01/2008', '04/01/2008', '04/15/2008')
    It looks like it should be:
    WHERE "Billing doc.date" IN ('01/01/2008', '04/01/2008', '04/15/2008')
    AND "Billing doc.date Level 01" = <enter a condition here>

Maybe you are looking for