Execute view prpblum

Hi All
I have view based on three tables it executes well
but in between i need one column in one of the tables and i alter the table and add a column after this it will craeting problum while i am try to execute it
it Through the erroe frm:-40505 :ORACLE error unable to perform query
Regards
Vikas singhal

Vikas,
Try to regenerate the Form again by refreshing the datablocks.
Also try to lookinto the error messages which its giving,
FYI once you get the error 40505 :ORACLE error unable to perform query
press Ctrl_Shift+E , you will get specific error which you are encountering ..
Hope it helps

Similar Messages

  • IBM cognos TM1 Executive viewer is not working on direct Access

    Hi,
    We are implementing DirectAccess in our environment and testing applications in test lab. It has been observed that executive viewer is not working on Direct Access but working fine over VPN mobile checkpoint. When DA client click on open view button it
    gives error
    " Additional information:
    Unable to connect to server XYZ.com using TCP-IP port 7112. Please make sure that IBM cognos TM1 executive viewer server is started and the port is not blocked by any proxy server or firewall"
    but from client telnet is working on port 7112. All ports between DA server and application server are open 3389,7112 and 80.
    Also select database option is grayed out and user is unable to select the database. When switching to VPN its working fine.
    We are using Executive viewer 9.4. 
    Any help would be appreciated.

    It sounds like this program may not be capable of talking over IPv6, which DirectAccess uses. First make sure that when you connect it is trying to talk to a hostname and not an IPv4 address. If your program is calling for "192.168.1.100" - this is never
    going to work over DirectAccess. It must call for a name that DirectAccess can resolve to an IPv6 address for communication over DA.
    If you confirm it is talking to a name, and then if you confirm that you can do other things to that same name (can you RDP into the server for example?), then that confirms that DirectAccess traffic flow is working to that name/server.
    If RDP works but the application still doesn't work, then the application is probably incapable of IPv6. You can either ask IBM if they have a newer version that does talk IPv6, otherwise I have a utility available that can intercept packets from these kinds
    of problematic applications and flip the packets into IPv6 on the DA client. Let me know if you need any further information on that: http://www.ivonetworks.com/news/2013/05/ivo-networks-announces-app46-for-directaccess/

  • Could not execute view config service request. This usually happens when an invalid view config service request is made, or when a read only Oracle Endeca Server receives a view config service request. Error message: Error applying updates: Unsupported la

    Hi,
    I have some data loaded into the data-domain in Endeca 3.0. When I was creating views in studio I repeatedly get this message when I say save view:
    Could not execute view config service request. This usually happens when an invalid view config service request is made, or when a read only Oracle Endeca Server receives a view config service request. Error message: Error applying updates: Unsupported language ${DEFAULT_LANGUAGE}
    In the workspace.prm file I have set ${DEFAULT_LANGUAGE}=en
    May I know why this happening and a remedy for it. Appreciate you help.

    Hi,
    I have some data loaded into the data-domain in Endeca 3.0. When I was creating views in studio I repeatedly get this message when I say save view:
    Could not execute view config service request. This usually happens when an invalid view config service request is made, or when a read only Oracle Endeca Server receives a view config service request. Error message: Error applying updates: Unsupported language ${DEFAULT_LANGUAGE}
    In the workspace.prm file I have set ${DEFAULT_LANGUAGE}=en
    May I know why this happening and a remedy for it. Appreciate you help.

  • Taking long time to execute views

    Hi All,
    my query is taking long time to execute(i am using standard views in my query)
    XLA_INV_AEL_GL_V , XLA_WIP_AEL_GL_V -----these standard views itself taking long time to execute ,but i need the info from this views
    WHERE gjh.je_batch_id = gjb.je_batch_id AND
    gjh.je_header_id = gjl.je_header_id AND
    gjh.je_header_id = xlawip.je_header_id AND
    gjl.je_header_id = xlawip.je_header_id AND
    gjl.je_line_num = xlawip.je_line_num AND
    gcc.code_combination_id = gjl.code_combination_id AND
    gjl.code_combination_id = xlawip.code_combination_id AND
    gjb.set_of_books_id = xlawip.set_of_books_id AND
    gjh.je_source = 'Inventory' AND
    gjh.je_category = 'WIP' AND
    gp.period_set_name = 'Accounting' AND
    gp.period_name = gjl.period_name AND
    gp.period_name = gjh.period_name AND
    gp.start_date +1 between to_date(startdate,'DD-MON-YY') AND
    to_date(enddate,'DD-MON-YY') AND
    gjh.status =nvl(lstatus,gjh.status)
    Could any one help me to execute it fast?
    Thanks
    Madhu

    [url http://forums.oracle.com/forums/thread.jspa?threadID=501834&tstart=0]When your query takes too long...

  • Error while executing  view in Bex Analyzer

    Hi Gurus,
    When i am executing the view(0PY_MC02_Q0102_V02)  in analyzer i am getting the error :
    Error Group
    RFC_ERROR_SYSTEM_FAILURE
    Message
    Exception condition "NO_VALUE_FOR_SID" raised.
    I checked all the master data info objects and loaded the master data still i am getting the error.But when i saved the query with same view name it is executing. This error is only for some standard views but not all the standard views.can any one please help me in this issue.
    *Points to be assigned.
    Thanks
    Raju.k

    If any underlying query of a view is changed it thinks that something has changed and throws you an error.
    The solution for this is to open the view and save it again.
    This solves the warning message problem which is not the same as yours. But try this out this might help.
    ~abhijit

  • Execute view links

    Dear All,
    Good Evening,
    My requirement is pass header level(first vo) inventory item id
    to 2nd region
    for this i create a view link based on these 2 view objects.
    for this i wrote the code like this,
    xxcrmForQuoteOrderItemsVOImpl vo = getxxcrmForQuoteOrderItemsVO1();
    String wclause = "item_code='" + itemcode + "'";
    vo.setWhereClause(wclause);
    vo.executeQuery();
    String inventoryitemid=vo.first().getAttribute("InventoryItemId").toString();
    xxcrmForItemsStockDetailsVOImpl vo1 = getxxcrmForItemsStockDetailsVO1();
    String wclause1 = "INVENTORY_ITEM_ID='" + inventoryitemid + "'";
    vo1.setWhereClause(wclause1);
    vo1.executeQuery();
    Its working fine,
    But my doubt is
    instead of writing this code
    how to pass the first view object attribute val to 2nd view object attribute.
    please any one can help me

    Hi,
    If you use view link then there is no need to pass value to second VO it will be achieved through view link.
    Even then if you want to pass then the joining attribute(po_header_id will be joining attribute in po_headers and lines) just include that in your where clause and pass the value to second vo and execute query on second vo.
    Let me know if you want to know anything else.
    Regards,
    Reetesh Sharma

  • SetCurrentRowWithKeyValue - Does this execute View Object Query twice?

    Hi,
    I have a View Object for which on the prepare model of the page definition I am executing the setCurrentRowWithKeyValue action.
    In the log I see two queries being printed one with Bind Variable of the Key value that I have passed and right next to that I see one more query for the same view object that gets executed without any where clause.
    This causes the View Object to execute an open query which is causing performance issue.
    Any help/Insight on this problem is greatly appreciated.
    Thanks,
    Kumar K.

    Thanks for the response.
    Solution provided in the thread doesn't prevent the execution but it will not return any rows..But I am just curious to know that is there some thing different done while using setCurrentRowWithKeyValue?
    Why should it execute query twice once with Bind variable and next time without the bind variable?
    Kumar K.

  • Re-execute View SQL after DML

    Hi everyone,
    I am displaying a selectable list of records on a page. Upon selection of any of the records users are forwarded to an edit page where they can perform a DML operation on the selected row. If they commit the changes I want to re-execute the query that displays the list of records on the main page as some rows might not need to be re-displayed.
    I am not using backing beans for the pages so I would like to now if I still can achieve this without the use of beans. If it is possible could you give me some pointers on what is the best approach to follow?
    Many thanks in advance for your help!
    Regards,
    Sacha

    No worries I found out how to do it.
    Cheers.

  • Execute View Obj query in memory mode

    Hi anybody,
    I use Jdeveloper 11.1.1.6.0
    I have a table upon a filtered View Obj on my page, when I add a new row to View Obj, this row showed in table whereas it must not appear(according to the where clause of View Obj).
    As I've understood I should use a View Criteria and set Query Execution Mode to: ' in memory' or 'both' , but I just want to use a View Obj. How can I  do that?
    Habib

    Hi,
    If you want to get In-memory filter.
    You should do like
    RowMatch rm = new RowMatch("X=2"); // some clause just like where-clause
    vo.setQueryMode(ViewObject.QUERY_MODE_SCAN_VIEW_ROWS);
    vo.setRowMatch(rm);
    vo.executeQuery();
    Thanks

  • VIEW Query Problem

    Hi Greg,
    I had created a view on a table which doesn't have Primary Key, but it has Unique and Not Null constraints on required columns.
    I had wrote a procedure to query the data on VIEW. I have experienced strange problem, very first call to procedure will take more time than succeeding requests. For example from second request onwards, it returns data in < 2 Sec, but first transaction is taking 12 Sec to 30 Sec.
    I thought that very first time VIEW is taking time to refresh it self. So, I added FORCE keyword in CREATE VIEW stattement. However, that doesn't helped out.
    In my further investigation I came to know that base table on which VIEW created, has to be loaded in to memory before querying on VIEW.
    So, I had executed a simple select statement on base table, before I execute VIEW query in procedure.
    With this change I got results consistently < 2 Sec all the times.
    My question is instead of executing the select statement on base table is there a way to load base tables data in memory before querying on VIEW?
    Thanks,
    Subbarao

    Hi,
    A view is nothing but parsed SQL statements stored in the database, a view may or may not run faster. If you execute the SQL used to define the view how much time is it taking. If you want try looking at MATERIALIZED VIEW , that may help you.
    thanks

  • Cristal Report 8.5 VIEWER in LabVIEW 6.1

    Excuse me for my bad english.
    After I have installed Crystal Report 8.5, I don't succeed to use the example in LabvIEW "Crystal Report.llb" .
    The "view report (sub).vi" with the container ActiveX object "Crystal report Viewer Control" return an error code x80004005 when I assign "Report in" Automation Refnum to the "ICrystalReportVIewer4 ->ReportSource" property node .
    If not execut "view report(sub).vi" the report will be correctly saved.

    There may be a problem with the way Crystal Report revealed its report source property node. I do not have Crystal Reports so I can't verify this for myself but you can attempt to change the property to something else that might work.
    Jeremy

  • Unable to find matching navigation case from view ID.  Error 404

    Hi All,
    I basically wanted to jumpstart my ADF exploration so I am following the tutorial at this link. [http://www.oracle.com/technetwork/developer-tools/jdev/ccset22-all-099343.html]
    Everything looks good but when I click the Edit Button, I am encountering an error. What I did was I change the logging mechanism into a FINER in my WLS and from the logs,
    it prints below messages.
    <NavigationHandlerImpl> <getViewId> "JSF1013: Unable to find matching navigation case from view ID '/orders-flow/editOrders' for outcome 'save' and action 'save'
    <ViewHandlerImpl> <executePageToBuildView> About to execute view /orders-flow/editOrders
    <ViewHandlerImpl> <executePageToBuildView> Before dispacthMessage to viewId /orders-flow/editOrders
    <ViewHandlerImpl> <executePageToBuildView> After dispacthMessage to viewId /orders-flow/editOrdersI checked out the taskflow and it is basically calling a task-flow-return component.
    I followed everything but I cant make this example work... Any idea why? I checked out the DB and I notice that it has commited my Edit Transaction but I am getting a 404 on my page. Please help. Thanks.

    Hi Frank,
    I think I got the save control flow case.
    Can you help me check please if I miss something? I uploaded my project at this link. [http://www.4shared.com/file/QFcofTfj/BrowseEditApp.html]
    I am quite not sure if I miss something but I have done this project twice already but got the same result.
    Thanks
    Edited by: Marky on 13.4.2011 5:59

  • View not getting created in endeca 3.1

    Hi ALl,
    I am trying to create a new view in endeca 3.1 but I am getting below error:
    "Could not execute view config service request. This usually happens when an invalid view config service request is made, or when a read only Oracle Endeca Server receives a view config service request. Error message: OES-000183: Dependency 'EPC' is missing"
    The view definition is
    DEFINE Events AS
    SELECT "EVENT_TYPE" AS "EVENT_TYPE",
      "BUSINESS_STEP" AS "BUSINESS_STEP",
      "DISPOSITION" AS "DISPOSITION",
      "ACTION" AS "ACTION",
      "BUSINESS_LOCATION" AS "BUSINESS_LOCATION",
      LOCATION AS "LOCATION",
      LOCATION_DESCRIPTION AS "LOCATION_DESCRIPTION",
      LOCATION_TYPE AS "LOCATION_TYPE",
      "EVENT_TIME" AS "EVENT_TIME",
      "RECORD_TIME" AS "RECORD_TIME",
      "TOP_LEVEL_EPC_CODE" AS "TOP_LEVEL_EPC_CODE",
      Count(EVENT_ID) AS "CODE_COUNTS",
      "EVENT_ID" AS "EVENT_ID"
    FROM EPC Code
    GROUP BY EVENT_ID
    Can someone please let me know how to resolve this issue.
    Thanks,
    Amrit

    I believe that as of 3.1 that if you are grouping the results of a view, then all of your view attributes need to have an aggregation function. That may be your problem.
    If you are simply copying the value of an attribute from the base view to your custom view, without needing to do any real aggregation, then you would use the ARB function.
    This is mentioned in Guidelines for using EQL to define a view, which includes an example.

  • How to "discard" a row from a view

    It seems to me like a simple thing, but I can't find an answer:
    I want to programmatically remove a row from an executed view's rowset, but I don't want the underlying entities removed?
    [I don't want any pending updates to the entities affected either. It's basically a UI thing - the user does something and I want to make the current row vanish.  I don't need or want to re-execute or alter the database as a result of this particular removal.]
    Anyone know of a vo.removeRowWithoutAffectingEntities method?
    Thanks,
    Mike.

    Found an old thread myself.
    How to remove a row from a rowset
    Will have to give this "hack" a try, I guess. (Sung, has this API been introduced into an unreleased version yet?)
    I had already tried overriding the updateable-entities' remove methods (which are called from row.remove()), but it seems that the view-row hangs around if the entities aren't actually removed. Found some "removeEntityReferences (i.e. set them to null)" method on a QueryCollection and was wondering if calling that followed by a row.remove() might do the trick, but the method's protected anyway. Might still see if I can call it somehow. Any comments on the viability of this, Sung? (Given that the previous work-around was "uncharted territory"....)
    Anyway, I guess I'll give the original work-around a shot. (Or make application non-ideally commit and requery!)
    Mike.

  • Query executing taking time

    Hi All,
    I am using jdev 11.1.2.0
    I am having a VO and VC. when i am executing View criteria .There is no error in it. That query is executing within seconds in TOAD.But in application it is taking lot of time.
    And after some time web logic got crashed and message came that query didnt not executed with in 600 seconds or something.
    Can we increase server time out for query execution. How to resolve this issue?

    Hi All,
    I am getting this error.Don't know why?Any help
    Referer: http://127.0.0.1:7101/OMSApp/faces/InspectionTaskHome.jspx?_adf.ctrl-state=120t0k0j42_3
    Accept-Encoding: gzip,deflate,sdch
    Accept-Language: en-US,en;q=0.8
    Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
    Cookie: JSESSIONID=kkpvRYybkvsTypwLp1q2lfMtqHlk8LZ8XdCksSlKT5Z2xH6hdhrq!679123754
    ]", which is more than the configured time (StuckThreadMaxTime) of "600" seconds. Stack trace:
         java.net.SocketInputStream.socketRead0(Native Method)
         java.net.SocketInputStream.read(SocketInputStream.java:129)
         oracle.net.nt.MetricsEnabledInputStream.read(TcpNTAdapter.java:718)
         oracle.net.ns.Packet.receive(Packet.java:295)
         oracle.net.ns.DataPacket.receive(DataPacket.java:106)
         oracle.net.ns.NetInputStream.getNextPacket(NetInputStream.java:317)
         oracle.net.ns.NetInputStream.read(NetInputStream.java:262)
         oracle.net.ns.NetInputStream.read(NetInputStream.java:187)
         oracle.net.ns.NetInputStream.read(NetInputStream.java:104)
         oracle.jdbc.driver.T4CSocketInputStreamWrapper.readNextPacket(T4CSocketInputStreamWrapper.java:126)
         oracle.jdbc.driver.T4CSocketInputStreamWrapper.read(T4CSocketInputStreamWrapper.java:82)
         oracle.jdbc.driver.T4CMAREngine.unmarshalUB1(T4CMAREngine.java:1177)
         oracle.jdbc.driver.T4CMAREngine.unmarshalSB1(T4CMAREngine.java:1153)
         oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:312)
         oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:204)
         oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:540)
         oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:217)
         oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:924)
         oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1261)
         oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1419)
         oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3752)
         oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3806)
         oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1667)
         weblogic.jdbc.wrapper.PreparedStatement.executeQuery(PreparedStatement.java:135)
         oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java:1228)
         oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java:893)
         oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java:7154)
         oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:1227)
         oracle.jbo.server.ViewRowSetImpl.executeQueryForMasters(ViewRowSetImpl.java:1413)
         oracle.jbo.server.ViewRowSetImpl.executeQueryForMode(ViewRowSetImpl.java:1319)
         oracle.jbo.server.ViewRowSetImpl.executeQuery(ViewRowSetImpl.java:1304)
         oracle.jbo.server.ViewObjectImpl.executeQuery(ViewObjectImpl.java:7083)
         oper.model.module.AppModuleAMImpl.executeInstanceNoVc(AppModuleAMImpl.java:857)
         sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         java.lang.reflect.Method.invoke(Method.java:597)
         oracle.adf.model.binding.DCInvokeMethod.invokeMethod(DCInvokeMethod.java:655)
         oracle.adf.model.binding.DCDataControl.invokeMethod(DCDataControl.java:2161)
         oracle.adf.model.bc4j.DCJboDataControl.invokeMethod(DCJboDataControl.java:3051)
         oracle.adf.model.binding.DCInvokeMethod.callMethod(DCInvokeMethod.java:266)
         oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1626)
         oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:2168)
         oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:731)
         oracle.adf.controller.v2.lifecycle.PageLifecycleImpl.executeEvent(PageLifecycleImpl.java:402)
         oracle.adfinternal.view.faces.model.binding.FacesCtrlActionBinding._execute(FacesCtrlActionBinding.java:252)
         oracle.adfinternal.view.faces.model.binding.FacesCtrlActionBinding.execute(FacesCtrlActionBinding.java:210)
         oper.view.PreInspectionBean.ShowSRInstance(PreInspectionBean.java:127)
         sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         java.lang.reflect.Method.invoke(Method.java:597)
         com.sun.el.parser.AstValue.invoke(Unknown Source)
         com.sun.el.MethodExpressionImpl.invoke(Unknown Source)
         org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:53)
         org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodBinding(UIXComponentBase.java:1535)
         org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:183)
         org.apache.myfaces.trinidad.component.UIXCollection.broadcast(UIXCollection.java:157)
         org.apache.myfaces.trinidad.component.UIXTable.broadcast(UIXTable.java:279)
         oracle.adf.view.rich.component.UIXTable.broadcast(UIXTable.java:145)
         oracle.adf.view.rich.component.rich.data.RichTable.broadcast(RichTable.java:479)
         oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:159)
         oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:111)
         oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:130)
         oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:461)
         oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:134)
         oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:105)
         oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:1129)
         oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:353)
         oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:204)
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:312)
         weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:173)
         weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:121)
         org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
         oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
         org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:293)
         org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:199)
         org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:180)
         weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         java.security.AccessController.doPrivileged(Native Method)
         oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
         weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         weblogic.work.ExecuteThread.run(ExecuteThread.java:178)

Maybe you are looking for