Issue while accessing links on portal

Hi,
Are there any special configuration steps to be taken in ACE configuration when we redirect users depending on url values?
we have our main website https://abc.com and it provides links to users for various applications.
If i go to https://abc.com and click the link xyz on it, i get back to main page again and current connections drops to 0. here my browser should be redirected to https://abc.com/xyz which is not happening.
But if i type in https://abc.com/xyz in browser, i go to correct page.
below is my configuration. please let me know if any other configuration is needed, Below config is with 2 links but actual production has many links.
I have similar issue for another application where links on main page can not be accessed. that application works on http  instead of https.
rserver redirect xyz
  inservice
  webhost-redirection "https://abc.com/xyz"
rserver redirect uvw
  inservice
  webhost-redirection "https://abc.com/uvw"
rserver host abc
ip address 1.1.1.1
inservice
serverfarm redirect xyz
rserver xyz
inservice
parameter-map type http case_param
  case-insensitive
  no persistence-rebalance
  set header-maxparse-length 65535
  set content-maxparse-length 65535
  length-exceed continue
parameter-map type ssl abc
  cipher RSA_WITH_3DES_EDE_CBC_SHA
ssl-proxy service abc
  key abc
  cert abc
  ssl advanced-options abc
serverfarm redirect uvw
rserver uvw
inservice
serverfarm host abc
rserver abc
inservice
class-map type http loadbalance match-any map1
   match http url "/xyz"
class-map type http loadbalance match-any map1
   match http url "/uvw"
policy-map type loadbalance first-match ssl-abc
class map1
    serverfarm xyz
class map2
    serverfarm uvw
class class-default
    serverfarm abc
class ssl-intranet
    loadbalance vip inservice
    loadbalance policy ssl-abc
    loadbalance vip icmp-reply active
    nat dynamic 1 vlan 368
    appl-parameter http advanced-options case_param
    ssl-proxy server abc

HI,
Try enabling persistence-rebalance, the parameter should look like this:
parameter-map type http case_param
  case-insensitive
  persistence-rebalance
  set header-maxparse-length 65535
  set content-maxparse-length 65535
  length-exceed continue
Cesar R
ANS Team

Similar Messages

  • Urgent: Issue while accessing MSS through portal

    Hi All,
    Recently HRSP 70 was applied to R/3 system. And after that we are getting scenario does not exist when clicked on MDT->Reporting->choose report e.g. Education->Select people -> and start report through portal.
    And we got Scenario does not exist error.
    We referred HRWPC_FC_EXEC error  and applied following settings :
    For service: sap/bc/gui/sap/its/hrwpc_fc_exec
    1) Go to GUI Configuration and set the following parameter
        Parameter name: ~webgui_theme
        Value: sl
    2) Then go to transaction SITSPMON -->Template and Mimes tab
        Invalidate template caches
    After this what is happening is a bit wierd though a workaround is found.
    Now when user clicks start report through portal he gets a popup for SAP inbox mentioning there are xx documents unread, if he clicks on ok he again gets "scenario does not exist" . However if he goes and reads all the documents in inbox and then again execute start report through portal he can see the desired output.
    Now still if we just go to sicf transaction in R/3 and just right click on HRWPC_FC_EXEC and execute Test Service we still get Scenario does not exist
    Also note we have reports iview with MSS1 scenario and viewgroup in Selection Criteria is a Z group
    Where in R/3 side should these entries be maintained ?
    Can anyone please suggest what would be the connection of unread documents here with scenario ? And where is scenario missing ? Kindly let me know if any other input is needed.

    Hi Joyce,
    Yes we were able to resolve it, we added one more parameter "NO_LOGON_USEREXIT" with value "1" in GUI configuration of the service "HRWPC_FC_EXEC". This resolved our issue.
    Try it at your end , let me know if any issue.
    Regards,
    Jalpa Shukla(Bhatt)

  • I'm facing performance issue while accessing the PLAF Table

    Dar all,
    I'm facing performance issue while accessing the PLAF Table.
    The START-OF-SELECTION of the report starts with the following select query.
        SELECT plnum  pwwrk matnr gsmng psttr FROM plaf
        INTO CORRESPONDING FIELDS OF TABLE it_tab
        WHERE matnr IN s_matnr
          AND pwwrk = p_pwwrk
          AND psttr IN s_psttr
          AND auffx = 'X'
          AND paart = 'LA' .
    While executing the report in the Quality system it does not face any performance issue...
    When it comes to Production System the above said select query itself it is taking 15 - 20 minutes time to move further.
    Kindly help me to over come this problem...
    Regards,
    Jessi

    Hi,
    "Just implement its primary Key
    WHERE PLNUM BETWEEN '0000000001' AND '9999999999' " By this you are implementing the Primary Key
    This statement has nothing to do with performance, because system is not able to use primary key or uses every row.
    Jessica, your query uses secondary index created by SAP:
    1     (Material, plant) which uses fields MANDT MATNR and PLWRK.
    but it is not suitable in your case.
    You can consider adding new one, which would containt all fields: MANDT, MATNR, PWWRK, PSTTR AUFFX PAART
    or - but it depends on number of rows meeting and not meeting (auffx = 'X' AND paart = 'LA' ) condition.
    It could speed the performance, if you would create secondary index based on fields MANDT, MATNR, PWWRK, PSTTR
    and do like Ramchander suggested: remove AUFFX and PAART from index and where section, and remove these unwanted rows
    after the query using DELETE statement.
    Regards,
    Przemysław
    Please check how many rows in production system

  • Issue while accessing a SQL Server table over OTG

    Hi,
    I have been learning oracle for about 1.5 years and am just starting to learn some OTG pieces. I am wondering about an issue. The issue is:
    "We need help with an issue we are having while accessing a SQL Server table over OTG. We are getting the following error message in Oracle :
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    [Oracle][ODBC SQL Server Driver]Unicode conversion failed {HY000}
    The column it is failing on is "-----------" in the view --------------- in the SQL Server database pointed to by the Oracle DB Link ------------------- thats created in the Oracle instances ---- and -----.
    This was working before, but is now failing, we suspect its due to new multi-byte data being added to the base table in the above column."
    I took out the details and added ---- instead. I am wondering your guys thoughts on fixing this issue and helping me learn along the way. Thanks

    Hi Mike,
    Thanks for the response, here are the details:
    1. What is the character set of the Oracle RDBMS being used. What is returned by -
    select * from nls_database_parameters;
    NLS_CHARACTERSET
    AL32UTF8
    NLS_NCHAR_CHARACTERSET
    UTF8
    We get SQL_Latin1_General_CP1_C1_AS and 1252 as Collation Property and Code Page
    The datatype of the column in question in SQL Server is nvarchar(100).
    When I do a describe on the SQL Server view ( desc CK_DATA_FOR_OPL@------- ), I get the error below;
    ERROR: object CK_DATA_FOR_OPL does not exist
    Select * from CK_DATA_FOR_OPL@------ where rownum =1 does get me a row.
    create table tmp_tab as
    Select * from CK_DATA_FOR_OPL@----- where rownum =1;
    desc tmp_tab shows the datatype of the said column in the table created in Oracle as NVARCHAR2(150).
    Not sure why a column defined with size 100 in SQL Server should come across as 150 when seen over OTG. We see something similar in DB2 tables we access over OTG as well.
    Edited by: 993950 on Mar 15, 2013 8:49 AM

  • ABAP Dump issue while accessing Gateway

    Hi
    We have recently upgraded our Gateway server to SP03. Eversince after service generation while accessing the XML/Metadata from the consumption page we get an HTTP error with Dump. Has anyone faced this problem before.
      <?xml version="1.0" encoding="utf-8" ?>
    - <error xmlns:xsi="http://www.w3.org/2001/XMLSchema-Instance">
      <code>HTTP/500/E/Internal Server Error</code>
      <message>Call of service /sap/opu/sdata/sap/Z14335_RFC_BP_1/ terminated because of an error. The following error text was processed in system AC1 : Syntax error in program /IWCOR/CL_REST_HTTP_HANDLER===CP .The error occurred on the application server njsapnet3. The termination type was: RABAX_STATE.If the termination type is RABAX_STATE, you will find more information on the cause of termination in system AC1 in transaction ST22. If the termination type is ABORT_MESSAGE_STATE, you will find more information on the cause of termination on the application server njsapnet3 in transaction SM21. If the termination type is ERROR_MESSAGE_STATE, you can search for further information in the trace file for the work process in transaction ST11 on the application server njsapnet3. You may also need to analyze the trace files of other work processes. If you do not yet have a user ID, contact your system adminmistrator.</message>
      </error>

    Hi All,
    I am also facing the same issue.
    When i am executing query/read operation my service it will works properly and getting data also,but when i am trying get X-CSRF token it throws error(ABAP Dump) .Can you please help me out this issue.
    Based on the Tx: ST11..getting below log.
    A  ABAP Program /IWCOR/CL_REST_HTTP_HANDLER===CP        .
    A  Source /IWCOR/CL_REST_HTTP_HANDLER===CCIMP      Line 40.
    A  Error Code ASSERTION_FAILED.
    A  Module abassert.c.
    A  Function ab_aabAssertionFailedRabax Line 1880.
    A  ** RABAX: level LEV_RX_STDERR completed.
    A  ** RABAX: level LEV_RX_RFC_ERROR entered.
    A  ** RABAX: level LEV_RX_RFC_ERROR completed.
    A  ** RABAX: level LEV_RX_RFC_CLOSE entered.
    A  ** RABAX: level LEV_RX_RFC_CLOSE completed.
    A  ** RABAX: level LEV_RX_IMC_ERROR entered.
    A  ** RABAX: level LEV_RX_IMC_ERROR completed.
    A  ** RABAX: level LEV_RX_DATASET_CLOSE entered.
    A  ** RABAX: level LEV_RX_DATASET_CLOSE completed.
    A  ** RABAX: level LEV_RX_ERROR_SAVE entered.
    A  ** RABAX: level LEV_RX_ERROR_SAVE completed.
    A  ** RABAX: level LEV_RX_ERROR_TPDA entered.
    A  ** RABAX: level LEV_RX_ERROR_TPDA completed.
    A  ** RABAX: level LEV_RX_PXA_RELEASE_RUDI entered.
    A  ** RABAX: level LEV_RX_PXA_RELEASE_RUDI completed.
    A  ** RABAX: level LEV_RX_LIVE_CACHE_CLEANUP entered.
    A  ** RABAX: level LEV_RX_LIVE_CACHE_CLEANUP completed.
    A  ** RABAX: level LEV_RX_END entered.
    A  ** RABAX: level LEV_RX_END completed.
    N
    N Thu Jan 03 15:00:58 2013
    N  *** ERROR => System ID and client from ticket are not the same than mine. [ssoxxkrn.c   1065]
    N  {root-id=0050569E07B31ED295B108EAC1527575}_{conn-id=0050569E07B31ED295B108EABC707575}_1
    N  *** ERROR => Neither was ticket issued by myself nor can I find issuer in TWPSSO2ACL (see note 1055856). [ssoxxkrn.c   1071]
    N  {root-id=0050569E07B31ED295B108EAC1527575}_{conn-id=0050569E07B31ED295B108EABC707575}_1
    i am getting based on Tx:ST22
    Category          
    ABAP Programming Error
    Runtime Errors    
    ASSERTION_FAILED
    ABAP Program      
    /IWCOR/CL_REST_HTTP_HANDLER===CP
    Application Component  OPU-FND-CCL
    Note: I am using SAP NW-GW-SP04
    Thanks,
    Syam

  • Enable to select a check box in ALV while accessing it through portal

    Hi All,
    Currently I have given a link on portal to run a transaction code. The output of the program is ALV report, where user any select the check boxes.
    Now when I try to select a check box, it is not getting selected. I click on the checkbox, the tick appear and then the screen refreshes itself and the tick goes off. This is happening only when accessing it through portal. If i run the program in R/3 directly, I am able to select the check box.
    Please advice on this.
    Thanks
    Namit

    Reported to SAP for the same.

  • Performance issues while accessing the Confirm/Goods Services' transaction

    Hello
    We are using SRM 4.0 , through Enterprise Portal 7.0.
    Many of our users are crippled by Performance issues when accessing the Confirm/Goods Services tab( Transaction bbpcf02).
    The system simply clocks and would never show the screen.
    This problem occurs for some users all the time, and some users for some time.
    It's not related to the User's machine as others are able to access it fast using the same machine.
    It is also not dependent on the data size (i.e.no . of confirmations created by the user).
    We would like to know why only some users are suffering more pronouncedly, and why is this transaction generally slower than all others.
    Any directions for finding the Probable cause will be highly rewarded.
    Thanks
    Kedar

    Hi Kedar,
    Please go through the following OSS Notes:
    Note 610805 - Performance problems in goods receipt
    Note 885409 - BBPCF02: The search for confirmation and roles is slow
    Note 1258830 - BBPCF02: Display/Process confirmation response time is slow
    Thanks,
    Pradeep

  • Issue while accessing Hyperion Applications

    Hi,
    we successfully Installed Hyperion 11.1.2 on win 2008 server R2 . Essbase and Planning was working fine.
    Now we are facing issue while connecting to Hyperion Shared services , Planning , Workspace URL's.
    When we tested all the web applications was working fine. Tried restart of the server but did not work.
    Below error comes up when we try to access these applications.
    <------------
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.5 404 Not Found
    The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
    If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.
    ------------->
    Diagnostics show below details
    WEB: Web Application Availability of Web application context http://INDCLDTC04.ind.cldsvc.accenture.com:8300/HyperionPlanning/
    Error: com.hyperion.cis.utils.BadResponseCodeException: Bad response code with GET method: 404
    Recommended Action: Check that the application is started
    FAILED WEB: Web Application Availability of Web application context http://INDCLDTC04.ind.cldsvc.accenture.com:28080/workspace/status
    Error: com.hyperion.cis.utils.BadResponseCodeException: Bad response code with GET method: 404
    Recommended Action: Check that the application is started
    Availability of Web application context http://INDCLDTC04.ind.cldsvc.accenture.com:10080/easconsole/console.html
    Error: com.hyperion.cis.utils.BadResponseCodeException: Bad response code with GET method: 404
    Recommended Action: Check that the application is started
    Regards,
    Vijaya

    Did you register the Essbase application with Shared Service, do the following steps:
    (EAS) console. Right click on the application name and select 'Register'.
    application successfully registered. Log on to Shared Services and select the application to assign access control.
    If the error is occurring with all Essbase applications, you can register all of them at one time:
    Click 'Register all'. Confirm that all applications were successfully registered. Log on to Shared Services and try assign access control for all applications.
    If the re-registration does not work from EAS you may need to reregister Essbase as a product.
    Locate the product_config_#.xml in the directory EPM_ORACLE_INSTANCE/config/foundation/11.1.2.0/product/product_name
    For example; the Essbase product file is located in EPM_ORACLE_INSTANCE/config/foundation/11.1.2.0/product/Essbaseserver/11.1.2.0
    Open the file product_config_#.xml and locate the line:
    <property_name>="hubRegistration">Configured</property>
    Change the status from Configured to Pending.
    Rerun 'startconfigtool.bat' or 'startconfigtool.sh' or the EPM System Configurator again and select the product. This enables you to reregister the product with Shared Services.
    Now check with ur ULS

  • *Security Error Issue while accessing youtube search method.

    Hello All,
    I am creating a flex aplication which has youtube videos search control. it works fine on local , but when I am trying to access this from any server its getting security error "[RPC Fault faultString="Security error accessing url" faultCode="Channel.Security.Error" faultDetail="Destination: DefaultHTTP"] " while  accessing the search method url using httpservice. Can any one help me.
    Thanks.

    You may need to add the -use-network=true compiler argument. When in Flex Builder this does not matter as much:
    From Flex Builder main menubar,   Project - Properties - Flex Compiler - Additional compiler arguments:  -use-network=true
    If this post answers your question or helps, please mark it as such.

  • Issue while executing report in Portal

    Hi All,
    We have come across a typical error in the portal while the user access her reports .When ever user is clicking on the report
    in the portal a total blank screen( or white screen rather )  is visible and they have to log out and log in very frequently.We have suggested them to clear their cache in their desktops  to avoid this situation ,  but they are complaining that this blank screen is coming very frequently now. Does this have any thing to do with the reports. We dont have authorizations for this application currently and they are pretty straight forward ones and with not many CKFs/RKFs .Also we have went live in jan 2010 for this application and there is very limited data in the cube as well ,
    Any of your suggestions and appreciated in this regard,
    Regards,
    Sasidhar Gunturu

    Hi SasidharG
    Please run the support desktool in its latest version 77.... and then look at the systeminfo.txt file that the tool produces... this is an automated report designed by SAP development to run through all areas of portal/bi connectivity issues on a users portal and to provide remedies to any issues found. (Please see note: 937697) this does involve a bit of work at the outset but it is a very valuable tool which will enable you to fine turn your bi/portal connectivity.
    best regards
    Orla.

  • Issue while accessing Approve Clockin/Clockout corrections from UWL

    Hi All,
    We are not able to access approve clockin/clockout correction application from UWL.
    We found one Note - 1600953 and implemented but still we are facing issue.
    Request_id value is passed as Null in the URL.
    Please find the URL and XML below :
    URL:
    https://Hostname:port/irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fevery_user!2fgeneral!2fdefaultAjaxframeworkContent!2fcom.sap.portal.standalonecontentarea?NavigationTarget=OBN%3A%2F%2FBOTechnicalName%3Demployee%2FOperation%3Dapprovecorrections%2FBOSystemAlias%3DSAP_ERP_HumanResources&DynamicParameter=FROM_POWL%3DX%26Operation%3Dapprovecorrections%26BOTechnicalName%3Demployee%26REQUEST_ID%3Dnull%26BOSystemAlias%3DSAP_ERP_HumanResources&PrevNavTarget=navurl%3A%2F%2Fc3d9aa78324902a8e37ccfd1581ea857&sap-obn-url=OBN%3A%2F%2FBOTechnicalName%3Demployee%2FOperation%3Dapprovecorrections%2FBOSystemAlias%3DSAP_ERP_HumanResources&NavMode=1&CurrentWindowId=WID1401688105969
    XML:
    <ItemType name="uwl.task.webflow.TS91000330.SAP_ECC_HumanResources" connector="WebFlowConnector"
    defaultView="DefaultView" defaultAction="defaultAction" executionMode="default">
          <ItemTypeCriteria systemId="SAP_ECC_HumanResources" externalType="TS91000330" connector="WebFlowConnector"/>
           <CustomAttributes>
            <CustomAttributeSource id="WEBFLOW_CONTAINER" objectIdHolder="externalObjectId"
    objectType="WebflowContainer" cacheValidity="final">
              <Attribute name="REQUEST_ID" type="string" displayName="Request ID"/>
            </CustomAttributeSource>
          </CustomAttributes>
          <Actions>
            <Action name="defaultAction" groupAction="" handler="ObjectNavigationLauncher"
    returnToDetailViewAllowed="yes" launchInNewWindow="yes">
              <Properties>
        <Property name="Operation" value="approvecorrections"/>
            <Property name="ObjectValue" value="REQUEST_ID=${item.REQUESTID}&amp;FROM_POWL=X"/>
                 <Property name="DynamicParameter" value="REQUEST_ID=${item.REQUESTID}&amp;FROM_POWL=X"/>
                <Property name="ObjectName" value="employee"/>
    <Property name="WebDynproApplication" value="HRMSS_A_CICO_APPR"/>
    <Property name="WebDynproNamespace" value="sap"/>
    <Property name="System" value="SAP_ERP_HumanResources"/>
        <Property name="openInNewWindow" value="true"/>
              </Properties>
              <Descriptions default="defaultAction"/>
            </Action>
          </Actions>
        </ItemType>
    Please help.
    Thanks,
    Ravi.

    Hi All,
    This is resolved.
    Issue was from WF approver task, in that Request id is not binded to correct Container element,.
    After doing the correct binding it is working,
    Thanks,
    Ravi

  • Issue while accessing deployed web-app on Weblogic 10.3.5

    We have deployed a web app on Weblogic server 10.3.5 as a WAR file. The deployment looks fine and application is in "Active" state. However when we try to access the application it fails to detect the Struts tags and gives following error -
    weblogic.servlet.jsp.CompilationException: Failed to compile JSP /view/login/login.jsp
    login.jsp:4:1: Type mismatch: cannot convert from Tag to JspTag
    *<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtm*
    *l1-transitional.dtd">*
    *^---------------------------------------------------------------------------------------------------*
    *<title><s:property value="customerLoginContentVO.pageTitle" /> Dashboard</title>*
    ------^
    I looks like it doesn't get the Struts libraries. We have included the Struts libraries in WEB-INF/lib of the web app and set prefer-web-inf-classes to true in weblogic.xml. Why is it that it is able to find the jars to deploy but not to access the application.
    One alternate method suggested is to have package the war into a  ear and provide the mapping for struts libraries as prefer-application-packages in weblogic-application.xml. But we think creating a ear just for library load in not a right approach & we are definitely missing something.
    Any help on this issue will be appreciated.
    Thanks,
    Jiten S

    WLS 10.3.5 (and some versions before that too, one of the 10.3.x releases changed this) should also support prefer-application-packages. It doesn't appear as though the documentation has been updated to reflect that.
    Needs updating:
    http://download.oracle.com/docs/cd/E21764_01/web.1111/e13712/weblogic_xml.htm#i1075205
    http://download.oracle.com/docs/cd/E12840_01/wls/docs103/programming/classloading.html#wp1098468
    I'll file a documentation bug.
    In the meantime, you can see that it is there in the XSD:
    http://xmlns.oracle.com/weblogic/weblogic-web-app/1.2/weblogic-web-app.xsd
    which is linked to from here:
    http://download.oracle.com/docs/cd/E21764_01/web.1111/e13706/overview.htm#g1088563
    Here is an example of what a weblogic.xml might look like.
    <?xml version="1.0" encoding="UTF-8"?>
    <wls:weblogic-web-app xmlns:wls="http://xmlns.oracle.com/weblogic/weblogic-web-app" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/ejb-jar_3_0.xsd http://xmlns.oracle.com/weblogic/weblogic-web-app http://xmlns.oracle.com/weblogic/weblogic-web-app/1.2/weblogic-web-app.xsd">
        <wls:weblogic-version>10.3.5</wls:weblogic-version>
        <wls:context-root>FilterWeb</wls:context-root>
        <wls:container-descriptor>
            <wls:prefer-application-packages>
                <wls:package-name>my.foo.package</wls:package-name>
            </wls:prefer-application-packages>
        </wls:container-descriptor>
    </wls:weblogic-web-app>

  • Page cannot be displayed error while accessing links on DAS page

    Hi,
    I have installed SSO server along with DAS on a single m/c. While installing i gave OID instance hostname and password. After installation when i access the DAS homepage and click on Login or Myprofile url is is throwing Page cannot be displayed error page
    i found following in the Apache\logs\error.log
    [Wed Nov 23 10:28:26 2005] [error] [client 198.186.43.113] [ecid: 1132759706:198.186.43.113:2408:2136:6,0] MOD_OC4J_0376: Request initial processing failed in ac worker with HTTP status code 1. This status will be passed back to the listener for error handling.
    I checked OC4J_SECURITY and HTTP_Server status. They are up and running. OID is also running.
    Any solution for this problem?

    Hi,
    I once faced a similar problem - I am not sure if the issues are related, but here goes :
    I figured out that DAS uses mod_osso to connect to the SSO Server. I hadn't configured mod_osso to correctly talk to the SSO Server. I used the ssoreg.sh script in the $ORACLE_HOME/sso/bin to make the mod_osso " talk " to the SSO Server.
    After this, the DAS started working properly.
    BTW, what's your AS instance version ?

  • MDS issue while accessing the application

    Hi,
    We are using Webcenter Portal Application PS3 application. Application is deployed successfully but while trying to access the application we are getting the following errors:
    <oracle.webcenter.lifecycle.listener.LifecycleServletContextListener> <BEA-000000> <
    oracle.webcenter.lifecycle.LifecycleException: MDSException while creating an export set import lock
    at oracle.webcenter.lifecycle.operation.LockUnit.doImportExportSet(LockUnit.java:359)
    weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    Caused By: oracle.mds.exception.ReadOnlyStoreException: MDS-01273: The operation on the resource /oracle/webcenter/lock/exportsetImport/exportsetImport.xml failed because source metadata store mapped to the namespace / BASE DEFAULT is read only.
    <oracle.webcenter.portalframework.sitestructure> <BEA-000000> <oracle.adf.rc.exception.DefinitionNotFoundException: cannot find resource catalog using MDS reference /oracle/webcenter/portalapp/navigations/default-navigation-model.xml Root Cause=[MDS-00013: no metadata found for metadata object "/oracle/webcenter/portalapp/navigations/default-navigation-model.xml"] [Root exception is oracle.mds.core.MetadataNotFoundException: MDS-00013: no metadata found for metadata object "/oracle/webcenter/portalapp/navigations/default-navigation-model.xml"]>
    Note : Our current application is a simple adf application, it doesnt contain taskflow and also we not using any customization.
    Weblogic Server Version : 10.3.4.0
    Webcenter Version : 11.1.1.4.0
    Please advice.

    Hi,
    did you check on the WebCenter forum ?
    WebCenter Portal
    Frank

  • Performance Issue while access reports through Infoview.

    Users run reports( Webi ,Crystal ) through Infoview u2013 Accessed by Categories  , while navigating between categories( we have different categories : Sales, Purchasing..Etc ) in the Infoview is fine ,it  takes time to show all the reports within the categories ,which  takes  around 3 u2013 5 mins , but run time of the each reports are quick and as expected.
    In CMS , while navigating between categories and time taken to show all the reports within the categories are fine . couldnu2019t not understand why this is happening in infoview only.
    Would like to know if any one have similar issues. Is there any settings needs to made on the tomcat server or CMS or Infoview. Searched for OSS notes and found a note : 1206095 but it is for Enterprise XI release2.
    Product Details :
    BOE XI3.1 SP3 .
    Any info will be helpfull.

    Hello,
    - Is Tomcat installed on the same server as BOE?  If not, did you use wdeploy to deploy the WAR files? https://bosap-support.wdf.sap.corp/sap/support/notes/1325139
    - Do you have more than one Tomcat server,  and is it fronted by a load balancer.  If it is, try bypassing the load balancer and access InfoView directly without going thru the load balancer.
    There is a CMS command-line options that might help you improving performances in your environment.
    That switch is named -maxobjectsincache which allows you to increase the maximum number of objects that the CMS stores in its memory cache. Increaseing the number of objects reduces the number of databases calls required and can improve CMS performance.
    The default value for this option is 10000 and the maximum value is 100000.  Please keep in mind it is not recommended to exceed 100,000 as too many objects in memory will result in the CMS degradation.  I would suggest testing with 60,000.
    Regards,
    Wallie

Maybe you are looking for