SPServiceApplication.Properties.count is always 0 while accessing service applications in sharepoint2013

i am trying to get database name and server details of service application(SPServiceApplication)
Basically i need to get properties of Service applications pro-grammatically.
Which we can find on selecting service and properties in the ribbon in central admin.
i am getting services in the farm,when i check for properties always it shows count 0
below is code snippet
var farmServices = SPFarm.Local.Services;
foreach (SPService service in farmServices)
SPServiceApplicationCollection serviceApplicationColl = service.Applications;
foreach (SPServiceApplication serviceApp in serviceApplicationColl)
servicepp.properties.count //always 0
i need to fetch all properties which we can see in centraladmin - ServiceApplications- Serviceapplication - properties
Please do let me know if any way to get serviceapplication properties programmatically.

The best way of course is know which type of service you are wanting information on. This enables you to use the GetValue method of the SPServices collection of the SPFarm. The code below uses that method to get the database for the BDC service. You must
cast the object to that particular class since only certain types of service applications expose a database.
public static void GetDatabaseForService()
Microsoft.SharePoint.BusinessData.SharedService.BdcService service =
SPFarm.Local.Services.GetValue<Microsoft.SharePoint.BusinessData.SharedService.BdcService>() as Microsoft.SharePoint.BusinessData.SharedService.BdcService;
foreach (SPServiceApplication app in service.Applications)
Microsoft.SharePoint.BusinessData.SharedService.BdcServiceApplication bdcApp = app as Microsoft.SharePoint.BusinessData.SharedService.BdcServiceApplication;
string dbName = bdcApp.Database.Name;
Unfortunately the Microsoft.SharePoint.AppManagement.AppManagementService and AppManagementServiceApplication classes are marked as internal so you cannot use the code above. So you will not be able to do this programmatically. It is easy to identify the associated
database for a service application from Service Application Management in Central Administration. Just click on the service application and then click on the Properties button in the ribbon. The dialog will show you the associated database name.
Blog | SharePoint Field Notes Dev Tools |
SPFastDeploy | SPRemoteAPIExplorer

Similar Messages

  • Getting ORA-00376 while accessing from application

    Hi,
    Application team is getting below error while accessing the database.
    “ERROR: SQLException, while closing
    connection, exception is ==ORA-00376: file 5 cannot be read at this time
    ORA-01110: data file 5: '/dborafiles/nGTA/oradata01/smartsgs/tblspcsmarts01.dbf'
    Later we renamed the datafile from tblspcsmarts01.dbf  to tblspcsmarts_01.dbf, and still getting the same error while accessing the application.
    And, the datafiles are in online and READ WRITE mode.
    File Status:
    SQL> select file#,name,status,ENABLED,CHECKPOINT_CHANGE#,to_char(CHECKPOINT_TIME,'dd-mon-yy hh24:mi:ss') from v$datafile;
         FILE# NAME                                                         STATUS  ENABLED    CHECKPOINT_CHANGE# TO_CHAR(CHECKPOINT
             1 /dborafiles/nGTA/oradata01/smartsgs/system01.dbf             SYSTEM  READ WRITE           94950500 23-oct-13 15:41:40
             2 /dborafiles/nGTA/oradata01/smartsgs/undo02.dbf               ONLINE  READ WRITE           94950500 23-oct-13 15:41:40
             3 /dborafiles/nGTA/oradata01/smartsgs/sysaux01.dbf             ONLINE  READ WRITE           94950500 23-oct-13 15:41:40
             4 /dborafiles/nGTA/oradata01/smartsgs/users01.dbf              ONLINE  READ WRITE           94950500 23-oct-13 15:41:40
             5 /dborafiles/nGTA/oradata01/smartsgs/tblspcsmarts_01.dbf      ONLINE  READ WRITE           94950500 23-oct-13 15:41:40
             6 /dborafiles/nGTA/oradata01/smartsgs/tblspcsmarts02.dbf       ONLINE  READ WRITE           94950500 23-oct-13 15:41:40
             7 /dborafiles/nGTA/oradata01/smartsgs/tblspcsmarts_03.dbf      ONLINE  READ WRITE           94950500 23-oct-13 15:41:40
    SQL> select FILE_ID,TABLESPACE_NAME,FILE_NAME,BYTES/1024/1024,status  from dba_data_files;
       FILE_ID TABLESPACE_NAME      FILE_NAME                                                    BYTES/1024/1024 STATUS
             1 SYSTEM               /dborafiles/nGTA/oradata01/smartsgs/system01.dbf                        1024 AVAILABLE
             5 TBLSPCSMARTS         /dborafiles/nGTA/oradata01/smartsgs/tblspcsmarts_01.dbf                 7000 AVAILABLE
             3 SYSAUX               /dborafiles/nGTA/oradata01/smartsgs/sysaux01.dbf                        1024 AVAILABLE
             4 USERS                /dborafiles/nGTA/oradata01/smartsgs/users01.dbf                         2048 AVAILABLE
             6 TBLSPCSMARTS         /dborafiles/nGTA/oradata01/smartsgs/tblspcsmarts02.dbf                  6144 AVAILABLE
             7 TBLSPCSMARTS         /dborafiles/nGTA/oradata01/smartsgs/tblspcsmarts_03.dbf                 2048 AVAILABLE
             2 UNDOTBS1             /dborafiles/nGTA/oradata01/smartsgs/undo02.dbf                          1024 AVAILABLE
    File permissions at OS level.
    [oracle@apt3vl05 smartsgs]$ pwd
    /dborafiles/nGTA/oradata01/smartsgs
    [oracle@apt3vl05 smartsgs]$ ls -lrt
    total 29057944
    -rw-r----- 1 oracle dba 7340040192 Oct 23 10:37 tblspcsmarts01.dbf_old
    -rw-r----- 1 oracle dba 1073750016 Oct 23 12:37 temp01.dbf
    -rw-r----- 1 oracle dba 2147491840 Oct 23 15:41 users01.dbf
    -rw-r----- 1 oracle dba 2147491840 Oct 23 15:41 tblspcsmarts_03.dbf
    -rw-r----- 1 oracle dba 6442459136 Oct 23 15:41 tblspcsmarts02.dbf
    -rw-r----- 1 oracle dba 7340040192 Oct 23 15:41 tblspcsmarts_01.dbf
    -rw-r----- 1 oracle dba 1073750016 Oct 23 16:05 sysaux01.dbf
    -rw-r----- 1 oracle dba 1073750016 Oct 23 16:25 undo02.dbf
    -rw-r----- 1 oracle dba 1073750016 Oct 23 16:25 system01.dbf
    -rw-r----- 1 oracle dba    6832128 Oct 23 16:25 control02.ctl
    -rw-r----- 1 oracle dba    6832128 Oct 23 16:25 control01.ctl
    Even i am able to do switch logfile and every thing fine. Below is the excerpt from alert log.
    Wed Oct 23 10:29:59 2013
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 3
    Using LOG_ARCHIVE_DEST_1 parameter default value as /dboracle/orabase/product/10.2.0.4/dbs/arch
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =97
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    ksdpec: called for event 13740 prior to event group initialization
    Starting up ORACLE RDBMS Version: 10.2.0.4.0.
    System parameters with non-default values:
      processes                = 800
      timed_statistics         = TRUE
      shared_pool_size         = 159383552
      large_pool_size          = 16777216
      java_pool_size           = 159383552
      streams_pool_size        = 16777216
      control_files            = /dborafiles/nGTA/oradata01/smartsgs/control01.ctl, /dborafiles/nGTA/oradata01/smartsgs/control02.ctl, /dboracle/admin/smartsgs/control03.ctl
      db_block_size            = 8192
      db_cache_size            = 16777216
      compatible               = 10.2.0.4
      db_file_multiblock_read_count= 16
      fast_start_mttr_target   = 300
      undo_management          = AUTO
      undo_tablespace          = UNDOTBS1
      undo_retention           = 10800
      O7_DICTIONARY_ACCESSIBILITY= TRUE
      remote_login_passwordfile= EXCLUSIVE
      db_domain                =
      instance_name            = smartsgs
      job_queue_processes      = 10
      background_dump_dest     = /dboracle/admin/smartsgs/bdump
      user_dump_dest           = /dboracle/admin/smartsgs/udump
      core_dump_dest           = /dboracle/admin/smartsgs/cdump
      sort_area_size           = 524288
      db_name                  = smartsgs
      open_cursors             = 800
      star_transformation_enabled= FALSE
      query_rewrite_enabled    = FALSE
      pga_aggregate_target     = 25165824
      aq_tm_processes          = 1
    PMON started with pid=2, OS id=9173
    PSP0 started with pid=3, OS id=9178
    MMAN started with pid=4, OS id=9180
    DBW0 started with pid=5, OS id=9187
    LGWR started with pid=6, OS id=9194
    CKPT started with pid=7, OS id=9200
    SMON started with pid=8, OS id=9202
    RECO started with pid=9, OS id=9204
    CJQ0 started with pid=10, OS id=9206
    MMON started with pid=11, OS id=9208
    MMNL started with pid=12, OS id=9210
    Wed Oct 23 10:30:01 2013
    ALTER DATABASE   MOUNT
    Wed Oct 23 10:30:06 2013
    Setting recovery target incarnation to 1
    Wed Oct 23 10:30:06 2013
    Successful mount of redo thread 1, with mount id 765417449
    Wed Oct 23 10:30:06 2013
    Database mounted in Exclusive Mode
    Completed: ALTER DATABASE   MOUNT
    Wed Oct 23 10:30:06 2013
    ALTER DATABASE OPEN
    Wed Oct 23 10:30:06 2013
    Thread 1 opened at log sequence 855
      Current log# 3 seq# 855 mem# 0: /dborafiles/nGTA/oraredo1/smartsgs/redo01c.log
      Current log# 3 seq# 855 mem# 1: /dborafiles/nGTA/oraredo2/smartsgs/redo02c.log
      Current log# 3 seq# 855 mem# 2: /dborafiles/nGTA/oraredo3/smartsgs/redo03c.log
    Successful open of redo thread 1
    Wed Oct 23 10:30:06 2013
    SMON: enabling cache recovery
    Wed Oct 23 10:30:07 2013
    Successfully onlined Undo Tablespace 6.
    Wed Oct 23 10:30:07 2013
    SMON: enabling tx recovery
    Wed Oct 23 10:30:07 2013
    Database Characterset is WE8ISO8859P15
    Opening with internal Resource Manager plan
    where NUMA PG = 1, CPUs = 2
    replication_dependency_tracking turned off (no async multimaster replication found)
    Starting background process QMNC
    QMNC started with pid=14, OS id=9246
    Wed Oct 23 10:30:10 2013
    Completed: ALTER DATABASE OPEN
    Wed Oct 23 10:37:38 2013
    alter tablespace TBLSPCSMARTS offline
    Wed Oct 23 10:37:38 2013
    Completed: alter tablespace TBLSPCSMARTS offline
    Wed Oct 23 10:43:58 2013
    alter tablespace TBLSPCSMARTS rename datafile '/dborafiles/nGTA/oradata01/smartsgs/tblspcsmarts01.dbf' to '/dborafiles/nGTA/oradata01/smartsgs/tblspcsmarts_01.dbf'
    Wed Oct 23 10:43:58 2013
    Completed: alter tablespace TBLSPCSMARTS rename datafile '/dborafiles/nGTA/oradata01/smartsgs/tblspcsmarts01.dbf' to '/dborafiles/nGTA/oradata01/smartsgs/tblspcsmarts_01.dbf'
    Wed Oct 23 10:44:14 2013
    alter tablespace TBLSPCSMARTS online
    Wed Oct 23 10:44:15 2013
    Completed: alter tablespace TBLSPCSMARTS online
    Wed Oct 23 15:02:00 2013
    Thread 1 advanced to log sequence 856 (LGWR switch)
      Current log# 1 seq# 856 mem# 0: /dborafiles/nGTA/oraredo1/smartsgs/redo01a.log
      Current log# 1 seq# 856 mem# 1: /dborafiles/nGTA/oraredo2/smartsgs/redo02a.log
      Current log# 1 seq# 856 mem# 2: /dborafiles/nGTA/oraredo3/smartsgs/redo03a.log
    Wed Oct 23 15:06:11 2013
    Thread 1 advanced to log sequence 857 (LGWR switch)
      Current log# 2 seq# 857 mem# 0: /dborafiles/nGTA/oraredo1/smartsgs/redo01b.log
      Current log# 2 seq# 857 mem# 1: /dborafiles/nGTA/oraredo2/smartsgs/redo02b.log
      Current log# 2 seq# 857 mem# 2: /dborafiles/nGTA/oraredo3/smartsgs/redo03b.log
    Thread 1 cannot allocate new log, sequence 858
    Checkpoint not complete
      Current log# 2 seq# 857 mem# 0: /dborafiles/nGTA/oraredo1/smartsgs/redo01b.log
      Current log# 2 seq# 857 mem# 1: /dborafiles/nGTA/oraredo2/smartsgs/redo02b.log
      Current log# 2 seq# 857 mem# 2: /dborafiles/nGTA/oraredo3/smartsgs/redo03b.log
    Wed Oct 23 15:06:17 2013
    Thread 1 advanced to log sequence 858 (LGWR switch)
      Current log# 3 seq# 858 mem# 0: /dborafiles/nGTA/oraredo1/smartsgs/redo01c.log
      Current log# 3 seq# 858 mem# 1: /dborafiles/nGTA/oraredo2/smartsgs/redo02c.log
      Current log# 3 seq# 858 mem# 2: /dborafiles/nGTA/oraredo3/smartsgs/redo03c.log
    Wed Oct 23 15:06:17 2013
    Thread 1 advanced to log sequence 859 (LGWR switch)
      Current log# 1 seq# 859 mem# 0: /dborafiles/nGTA/oraredo1/smartsgs/redo01a.log
      Current log# 1 seq# 859 mem# 1: /dborafiles/nGTA/oraredo2/smartsgs/redo02a.log
      Current log# 1 seq# 859 mem# 2: /dborafiles/nGTA/oraredo3/smartsgs/redo03a.log
    Wed Oct 23 15:09:00 2013
    Thread 1 advanced to log sequence 860 (LGWR switch)
      Current log# 2 seq# 860 mem# 0: /dborafiles/nGTA/oraredo1/smartsgs/redo01b.log
      Current log# 2 seq# 860 mem# 1: /dborafiles/nGTA/oraredo2/smartsgs/redo02b.log
      Current log# 2 seq# 860 mem# 2: /dborafiles/nGTA/oraredo3/smartsgs/redo03b.log
    Wed Oct 23 15:09:02 2013
    Thread 1 advanced to log sequence 861 (LGWR switch)
      Current log# 3 seq# 861 mem# 0: /dborafiles/nGTA/oraredo1/smartsgs/redo01c.log
      Current log# 3 seq# 861 mem# 1: /dborafiles/nGTA/oraredo2/smartsgs/redo02c.log
      Current log# 3 seq# 861 mem# 2: /dborafiles/nGTA/oraredo3/smartsgs/redo03c.log
    Wed Oct 23 15:37:37 2013
    alter database datafile 5 online
    Wed Oct 23 15:37:37 2013
    Completed: alter database datafile 5 online
    Wed Oct 23 15:37:58 2013
    alter database datafile 7 online
    Wed Oct 23 15:37:58 2013
    Completed: alter database datafile 7 online
    Wed Oct 23 15:41:09 2013
    Thread 1 advanced to log sequence 862 (LGWR switch)
      Current log# 1 seq# 862 mem# 0: /dborafiles/nGTA/oraredo1/smartsgs/redo01a.log
      Current log# 1 seq# 862 mem# 1: /dborafiles/nGTA/oraredo2/smartsgs/redo02a.log
      Current log# 1 seq# 862 mem# 2: /dborafiles/nGTA/oraredo3/smartsgs/redo03a.log
    Wed Oct 23 15:41:10 2013
    Thread 1 advanced to log sequence 863 (LGWR switch)
      Current log# 2 seq# 863 mem# 0: /dborafiles/nGTA/oraredo1/smartsgs/redo01b.log
      Current log# 2 seq# 863 mem# 1: /dborafiles/nGTA/oraredo2/smartsgs/redo02b.log
      Current log# 2 seq# 863 mem# 2: /dborafiles/nGTA/oraredo3/smartsgs/redo03b.log
    Please advice how can we troubleshoot what could be the issue.
    Thanks,
    Dasarath

    Output of the requested commands.
    SQL> select * from v$datafile_header;
         FILE# STATUS  ERROR                                                                 FORMAT REC FUZ CREATION_CHANGE# CREATION_ TABLESPACE_NAME             TS#     RFILE# RESETLOGS_CHANGE# RESETLOGS CHECKPOINT_CHANGE# CHECKPOIN CHECKPOINT_COUNT      BYTES     BLOCKS NAME                                               SPACE_HEADER    LAST_DEALLOC_SCN
             1 ONLINE                                                                             0 NO  YES                8 23-JUL-09 SYSTEM                        0         1                  1 23-JUL-09           94978106 24-OCT-13              913 1073741824     131072 /dborafiles/nGTA/oradata01/smartsgs/system01.dbf
             2 ONLINE                                                                             0 NO  YES         94828823 22-OCT-13 UNDOTBS1                      6         2                  1 23-JUL-09           94978106 24-OCT-13               37 1073741824     131072 /dborafiles/nGTA/oradata01/smartsgs/undo02.dbf     8388610
             3 ONLINE                                                                             0 NO  YES             7545 23-JUL-09 SYSAUX                        2         3                  1 23-JUL-09           94978106 24-OCT-13              912 1073741824     131072 /dborafiles/nGTA/oradata01/smartsgs/sysaux01.dbf   12582914
             4 ONLINE                                                                             0 NO  YES           170715 23-JUL-09 USERS                         4         4                  1 23-JUL-09           94978106 24-OCT-13              907 2147483648     262144 /dborafiles/nGTA/oradata01/smartsgs/users01.dbf    16777218
             5 ONLINE                                                                             0 NO  YES         94891412 22-OCT-13 TBLSPCSMARTS                  5         5                  1 23-JUL-09           94978106 24-OCT-13               30 7340032000     896000 /dborafiles/nGTA/oradata01/smartsgs/tblspcsmarts_0 20971522
                                                                                                                                                                                 1.dbf
             6 ONLINE                                                                             0 NO  YES         94891511 22-OCT-13 TBLSPCSMARTS                  5         6                  1 23-JUL-09           94978106 24-OCT-13               28 6442450944     786432 /dborafiles/nGTA/oradata01/smartsgs/tblspcsmarts02 25165826
                                                                                                                                                                                 .dbf
             7 ONLINE                                                                             0 NO  YES         94891933 22-OCT-13 TBLSPCSMARTS                  5         7                  1 23-JUL-09           94978106 24-OCT-13               29 2147483648     262144 /dborafiles/nGTA/oradata01/smartsgs/tblspcsmarts_0 29360130
                                                                                                                                                                                 3.dbf
    7 rows selected.
    SQL> select * from v$recover_file;
    no rows selected
    Thanks,
    Dasarath

  • Error  while accessing the application server file

    Hello,
    When I try to load the data from CSV file to PSA , I am getting following error message
    "Error  while accessing the application server file"
    "Errors in source system"
    I gave the right file path
    I am not sure about this error message.
    Thanks,

    Hi ram,
    if you have more than one application server running in your BI system (see at transaction SM51) be aware that your infopackage will be executed on the right one. Each application server has its own file system and your job need to run on the server your file is stored on.
    Also check if the os user of the SAP system itself (<sid>adm on Unix) has rights to read that file.
    Bye
    Frank

  • Username and Password is sent as clear text while accessing external Application

    While accessing external application from SSO, the username and the password is sent as a clear text even though the form method is given as POST. Actually the potal opens a new window and it disables the address bar. Still the user name and password is visible in the status bar. Is there any wor around for the same

    <S12:Envelope xmlns:S11="..." xmlns:wsse="..." xmlns:wsu= "...">
    <S12:Header>
    <wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
    <wsse:UsernameToken xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
    <wsse:Username>TestUser</wsse:Username>
    <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">TestPassword</wsse:Password>
    </wsse:UsernameToken>
    </wsse:Security>
    </S12:Header>
    </S12:Envelope>

  • Error while accessing custom application

    Hi,
    I get below error while accessing custom application.
    "Function not available to this responsibility.Change responsibilities or contact your System Administrator."
    Thanks
    Regards
    GSM

    1)While compiling the custom forms through Form builder the forms compile successfully & opens also but doesn't close.All other form than custom form close completely.How was this form created? Did you use the TEMPLATE.fmb file to create this custom form?
    Please obtain the FRD for details about the error.
    Note: 438652.1 - R12: Forms Runtime Diagnostics (FRD), Tracing And Logging For Forms In Oracle Applications
    Note: 445166.1 - How to create a FRD (Forms Runtime Diagnostic) Log in EBusiness Suite R12 using Forms 10g
    2)While compiling the custom forms through command
    "frmcmp_batch.sh module=/d02/oracle/abc/apps/apps_st/appl/au/12.0.0/forms/US/custom01.fmb userid=APPS/APPS output_file=/d02/oracle/abc/apps/apps_st/appl/cust/12.0.0/forms/US/custom01.fmx module_type=form compile_all=special
    While opening the form it's give Error:You are not authorized to access this functionality.Please check Apache log files as well as the application.log file for any errors.
    Thanks,
    Hussein

  • Exception while accessing web application

    Hi All,
    I have deployed my web application on OC4J 10.1.3. But while accessing application i am geeting NullPointer Exception below is the complete stack trace for the same.
    java.lang.NullPointerException
    at org.mortbay.servlet.jetty.IncludableGzipFilter$IncludableGzipStream.setContentEncodingGzip(IncludableGzipFilter.java:54)
    at org.mortbay.servlet.GzipFilter$GzipStream.doGzip(GzipFilter.java:482)
    at org.mortbay.servlet.GzipFilter$GzipStream.checkOut(GzipFilter.java:531)
    at org.mortbay.servlet.GzipFilter$GzipStream.write(GzipFilter.java:465)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.EvermindJSPWriter.writeOut(EvermindJSPWriter.java:539)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.EvermindJSPWriter.jspflush(EvermindJSPWriter.java:436)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.EvermindJSPWriter.assureSpace(EvermindJSPWriter.java:922)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.EvermindJSPWriter.javaCharsToAL32UTF8(EvermindJSPWriter.java:1058)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.EvermindJSPWriter.print(EvermindJSPWriter.java:849)
    at org.apache.taglibs.standard.tag.common.fmt.MessageSupport.doEndTag(Unknown Source)
    at public.login._jspService(_login.java:1817)
    at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.3.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.zimbra.webClient.servlet.JspServlet.service(JspServlet.java:38)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
    at com.zimbra.webClient.filters.SetHeaderFilter.doFilter(SetHeaderFilter.java:264)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
    at org.mortbay.servlet.UserAgentFilter.doFilter(UserAgentFilter.java:81)
    at org.mortbay.servlet.GzipFilter.doFilter(GzipFilter.java:132)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17)
    at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:396)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAs(Subject.java:396)
    at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:415)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:302)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:190)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)

    I am having the same issue has anyone found a solution to this I have deployed a WAR file to the server an I am getting this error when I try to run the application. I would appreciate some input as this is a PRODUCITON issue
    the following statement is where this problems
    ps = conn1.prepareStatement("<string variable>");
    09/12/14 13:42:07 sfrracl: Servlet error
    java.lang.NullPointerException
    at sfrracl.SfrraclUpd.doPost(SfrraclUpd.java:269)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:835)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:341)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:816)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:231)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:136)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
    at java.lang.Thread.run(Thread.java:534)
    ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

  • ActionLookupFailedException while accessing weblogic application

    Hi,
    I am having weblogic 8.1 portal cluster. When i am accessing my application some times i am getting following error.
    what is this error and how i can remove this?
    <Nov 6, 2009 3:38:39 AM PST> <Error> <netuix> <BEA-423147> <Exception [com.bea.portlet.adapter.scopedcontent.ActionLookupFailedException] thrown while trying to do task [handlePostbackData] in class [com.bea.netuix.servlets.controls.content.PageflowContent].
    com.bea.portlet.adapter.scopedcontent.ActionLookupFailedException
         at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.executeAction(ScopedContentCommonSupport.java:568)
         at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.processActionInternal(ScopedContentCommonSupport.java:121)
         at com.bea.portlet.adapter.scopedcontent.PageFlowStubImpl.processAction(PageFlowStubImpl.java:98)
         at com.bea.netuix.servlets.controls.content.NetuiContent.raiseScopedAction(NetuiContent.java:154)
         at com.bea.netuix.servlets.controls.content.NetuiContent.raiseScopedAction(NetuiContent.java:113)
         at com.bea.netuix.servlets.controls.content.NetuiContent.handlePostbackData(NetuiContent.java:228)
         at com.bea.netuix.nf.ControlLifecycle$3.visit(ControlLifecycle.java:171)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:356)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:366)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:366)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:366)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:366)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:366)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:366)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:366)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:366)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:366)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:366)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:366)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:366)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:366)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:366)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:366)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:366)
         at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:126)
         at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:105)
         at com.bea.netuix.nf.Lifecycle.runInbound(Lifecycle.java:173)
         at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:137)
         at com.bea.netuix.servlets.manager.UIServlet.runLifecycle(UIServlet.java:324)
         at com.bea.netuix.servlets.manager.UIServlet.processControlTree(UIServlet.java:220)
         at com.bea.netuix.servlets.manager.PortalServlet.doPost(PortalServlet.java:820)
         at com.bea.netuix.servlets.manager.UIServlet.service(UIServlet.java:150)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1077)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:465)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at com.hp.rms.filter.SecurityCheckFilter.doFilter(SecurityCheckFilter.java:111)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:293)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:7053)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3902)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2756)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)
    Regards,
    Sandeep K

    Hi Sandeep
    Looks like runtime one of your pageflows is throwing this exception. The reason can be anything which is getting up wrapped as ActionLookupFailedException. Since this type of exception cannot be caught and handled in all pageflows and all methods, you can make use of Global.app class which is under your web-inf/src/global folder (for 8.1 SPxx). Incase if your action methods have like navigate to previousAction, or nested pageflows or complex redirects etc, for somereasons in some specific usecase/scenarios, this is blowing.
    Refer docs on Global.app file. This file is used to handle all Generic Exceptions across all the Pageflows like for simple example SessionTimedOut, or User is Not Logged in. We do not want to handle then in all pageflows. Instead, all these errors can be handled in this class. Anytime any exception is thrown from pageflow, first framework will check if the error is handled in that pageflow itself or not. Then it checks in this Global.app file. If this is not handled here, thats when you get this more generic error with less details. So add code in Global.app file like header section to handle which type of exception and a corresponding method for that. In that method, you can retrieve more details like exact Action name, stack trace and some other details. Then you can redirect to much more simpler decent error page or just do System.out.println(...) for debug purposes etc.
    Coming to original problem, when you see this error in logs at that time, do you see any errors on the actual portal page (in any portlet). Like does this error break any of your code also and user not getting what is expected in that portlet.
    With Global.app code, you will have more details on these kind of errors so that you can find the root cause. For 8.1 SP6, you can refer this sample with just a skeleton code only.
    C:\beawlp816\weblogic81\samples\workshop\SamplesApp\WebApp\WEB-INF\src\global\Global.app
    Refer edocs for more details on this class. Pageflows should come mostly under Workshop documentation (Try wlp or wls docs also though).
    Ravi Jegga

  • 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

  • How to hide _layouts in the URL while accessing an application page

    Can we create any friendly URL while accessing any custom application page. I don't want to show _layouts in the URL So how can i mask the URL.

    The application pages should be in the _layouts folder (or _admin for application pages for central admin).
    You can put pages at friendly urls, but then they should be site pages, which you provision using a "Module" element from Visual Studio. But be aware that then users will be able to modify them using SharePoint designer.
    There are methods to achieve this somehow, but you should not do it in sharepoint.

  • Error occured while accessing WebDynpro Application

    Hi,
    I am getting below mentioned error when i am trying to access WebDynpro application through Portal.
    Appropriate roles have been assigned to me in Portal as well Dynpro.
    What is the cause of this error message ?
    Is this something to do with Authorization or User Mapping ?
    #/System/Server#Plain###com.sap.engine.services.jmx.exception.JmxSecurityException: Caller GTMLMLF not authorized, only role adminis
    trators is allowed to access JMX#
    Pls Guide!!!
    Answers will be rewarded.
    Regards,
    Rohan

    Hi Rohan,
    Might be the user you are using is not in the Admin group.
    You can assign the user into that group using the Visual admin or
    User management by logging using the j2ee_admin user.
    Reward points if helpfull.
    Regards,
    Vamshi.

  • 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

  • Error while accessing siebel application

    Hi,
    I installed Siebel 8.1 on Windows 2003. But when i try to access the application via http://localhost/service_enu I am getting the error:
    The server you are trying to access is either busy or experiencing difficulties. Please close the Web browser, open a new browser window, and try logging in again.
    The steps i am following are :
    1. Installed Siebel Enterprise Server including Siebel Gateway, Siebel Server and Database Configuration Utilities.
    2. Configured Siebel Gateway Name Server.
    3. Create Siebel Enterprise.
    4. Create SWSE logical profile.
    5. Run Database Configuration utilities to install Siebel Database.
    6. Run Siebel Server configuration.
    7. Installed and configured SWSE.
    All the above steps executed successfully. But when after these steps i try to access the Siebel application through http://localhost/service_enu, the above mentioned error is displayed.
    I am pasting the contents of the ss101203_3216.log:
    2021 2010-12-03 09:15:00 0000-00-00 00:00:00 -0500 00000000 001 003f 0001 09 ss101203_3216 3216 2632 c:\sba81\SWEApp\log\ss101203_3216.log 8.1.1 [21111] ENU
    SisnTcpIp     SisnSockError     1     000000024cf80c90:0     2010-12-03 09:15:00     3900: [TCPIP-client] recv() failed for sd=716 (err=10054 | An existing connection was forcibly closed by the remote host (peer).)
    GenericLog     GenericError     1     000000024cf80c90:0     2010-12-03 09:15:00     (smconn.cpp (318) err=1180671 sys=0) SBL-NET-01023: Peer disconnected
    SisnTcpIp     SisnSockError     1     000000024cf80c90:0     2010-12-03 09:15:00     3900: [TCPIP-client] recv() failed for sd=716 (err=10054 | An existing connection was forcibly closed by the remote host (peer).)
    GenericLog     GenericError     1     000000024cf80c90:0     2010-12-03 09:15:00     (smconn.cpp (318) err=1180671 sys=0) SBL-NET-01023: Peer disconnected
    SisnTcpIp     SisnSockError     1     000000024cf80c90:0     2010-12-03 09:15:00     3900: [TCPIP-client] recv() failed for sd=716 (err=10054 | An existing connection was forcibly closed by the remote host (peer).)
    GenericLog     GenericError     1     000000024cf80c90:0     2010-12-03 09:15:00     (smconn.cpp (318) err=1180671 sys=0) SBL-NET-01023: Peer disconnected
    SisnTcpIp     SisnSockError     1     000000024cf80c90:0     2010-12-03 09:15:00     3900: [TCPIP-client] recv() failed for sd=716 (err=10054 | An existing connection was forcibly closed by the remote host (peer).)
    GenericLog     GenericError     1     000000024cf80c90:0     2010-12-03 09:15:00     (smconn.cpp (318) err=1180671 sys=0) SBL-NET-01023: Peer disconnected
    SisnTcpIp     SisnSockError     1     000000024cf80c90:0     2010-12-03 09:15:00     3900: [TCPIP-client] recv() failed for sd=716 (err=10054 | An existing connection was forcibly closed by the remote host (peer).)
    GenericLog     GenericError     1     000000024cf80c90:0     2010-12-03 09:15:00     (smconn.cpp (318) err=1180671 sys=0) SBL-NET-01023: Peer disconnected
    GenericLog     GenericError     1     000000024cf80c90:0     2010-12-03 09:15:00     (ssmsismgr.cpp (626) err=3670020 sys=0) SBL-SSM-00004: SISNAPI Hello failed. The server component could be down.
    ObjMgrSessionLog     Error     1     000000024cf80c90:0     2010-12-03 09:15:00     Login failed for Login name : SADMIN
    ProcessPluginState     ProcessPluginStateError     1     000000024cf80c90:0     2010-12-03 09:15:00     3900: [SWSE] Open Session failed (0xa600d1) after 0.0363 seconds.
    SisnTcpIp     SisnSockError     1     000000024cf80c90:0     2010-12-03 09:15:00     3900: [TCPIP-client] recv() failed for sd=716 (err=10054 | An existing connection was forcibly closed by the remote host (peer).)
    GenericLog     GenericError     1     000000024cf80c90:0     2010-12-03 09:15:00     (smconn.cpp (318) err=1180671 sys=0) SBL-NET-01023: Peer disconnected
    SisnTcpIp     SisnSockError     1     000000024cf80c90:0     2010-12-03 09:15:00     3900: [TCPIP-client] recv() failed for sd=716 (err=10054 | An existing connection was forcibly closed by the remote host (peer).)
    GenericLog     GenericError     1     000000024cf80c90:0     2010-12-03 09:15:00     (smconn.cpp (318) err=1180671 sys=0) SBL-NET-01023: Peer disconnected
    SisnTcpIp     SisnSockError     1     000000024cf80c90:0     2010-12-03 09:15:00     3900: [TCPIP-client] recv() failed for sd=716 (err=10054 | An existing connection was forcibly closed by the remote host (peer).)
    GenericLog     GenericError     1     000000024cf80c90:0     2010-12-03 09:15:00     (smconn.cpp (318) err=1180671 sys=0) SBL-NET-01023: Peer disconnected
    SisnTcpIp     SisnSockError     1     000000024cf80c90:0     2010-12-03 09:15:00     3900: [TCPIP-client] recv() failed for sd=716 (err=10054 | An existing connection was forcibly closed by the remote host (peer).)
    GenericLog     GenericError     1     000000024cf80c90:0     2010-12-03 09:15:00     (smconn.cpp (318) err=1180671 sys=0) SBL-NET-01023: Peer disconnected
    SisnTcpIp     SisnSockError     1     000000024cf80c90:0     2010-12-03 09:15:00     3900: [TCPIP-client] recv() failed for sd=716 (err=10054 | An existing connection was forcibly closed by the remote host (peer).)
    GenericLog     GenericError     1     000000024cf80c90:0     2010-12-03 09:15:00     (smconn.cpp (318) err=1180671 sys=0) SBL-NET-01023: Peer disconnected
    GenericLog     GenericError     1     000000024cf80c90:0     2010-12-03 09:15:00     (ssmsismgr.cpp (626) err=3670020 sys=0) SBL-SSM-00004: SISNAPI Hello failed. The server component could be down.
    ObjMgrSessionLog     Error     1     000000024cf80c90:0     2010-12-03 09:15:00     Login failed for Login name : SADMIN
    ProcessPluginState     ProcessPluginStateError     1     000000024cf80c90:0     2010-12-03 09:15:00     3900: [SWSE] Open Session failed (0xa600d1) after 0.0047 seconds.
    SisnTcpIp     SisnSockError     1     000000024cf80c90:0     2010-12-03 09:15:01     3900: [TCPIP-client] recv() failed for sd=716 (err=10054 | An existing connection was forcibly closed by the remote host (peer).)
    GenericLog     GenericError     1     000000024cf80c90:0     2010-12-03 09:15:01     (smconn.cpp (318) err=1180671 sys=0) SBL-NET-01023: Peer disconnected
    SisnTcpIp     SisnSockError     1     000000024cf80c90:0     2010-12-03 09:15:01     3900: [TCPIP-client] recv() failed for sd=716 (err=10054 | An existing connection was forcibly closed by the remote host (peer).)
    GenericLog     GenericError     1     000000024cf80c90:0     2010-12-03 09:15:01     (smconn.cpp (318) err=1180671 sys=0) SBL-NET-01023: Peer disconnected
    SisnTcpIp     SisnSockError     1     000000024cf80c90:0     2010-12-03 09:15:01     3900: [TCPIP-client] recv() failed for sd=716 (err=10054 | An existing connection was forcibly closed by the remote host (peer).)
    GenericLog     GenericError     1     000000024cf80c90:0     2010-12-03 09:15:01     (smconn.cpp (318) err=1180671 sys=0) SBL-NET-01023: Peer disconnected
    SisnTcpIp     SisnSockError     1     000000024cf80c90:0     2010-12-03 09:15:01     3900: [TCPIP-client] recv() failed for sd=716 (err=10054 | An existing connection was forcibly closed by the remote host (peer).)
    GenericLog     GenericError     1     000000024cf80c90:0     2010-12-03 09:15:01     (smconn.cpp (318) err=1180671 sys=0) SBL-NET-01023: Peer disconnected
    SisnTcpIp     SisnSockError     1     000000024cf80c90:0     2010-12-03 09:15:01     3900: [TCPIP-client] recv() failed for sd=716 (err=10054 | An existing connection was forcibly closed by the remote host (peer).)
    GenericLog     GenericError     1     000000024cf80c90:0     2010-12-03 09:15:01     (smconn.cpp (318) err=1180671 sys=0) SBL-NET-01023: Peer disconnected
    GenericLog     GenericError     1     000000024cf80c90:0     2010-12-03 09:15:01     (ssmsismgr.cpp (626) err=3670020 sys=0) SBL-SSM-00004: SISNAPI Hello failed. The server component could be down.
    ObjMgrSessionLog     Error     1     000000024cf80c90:0     2010-12-03 09:15:01     Login failed for Login name : SADMIN
    ProcessPluginState     ProcessPluginStateError     1     000000024cf80c90:0     2010-12-03 09:15:01     3900: [SWSE] Open Session failed (0xa600d1) after 0.0064 seconds.
    SisnTcpIp     SisnSockError     1     000000024cf80c90:0     2010-12-03 09:15:01     3900: [TCPIP-client] recv() failed for sd=716 (err=10054 | An existing connection was forcibly closed by the remote host (peer).)
    GenericLog     GenericError     1     000000024cf80c90:0     2010-12-03 09:15:01     (smconn.cpp (318) err=1180671 sys=0) SBL-NET-01023: Peer disconnected
    SisnTcpIp     SisnSockError     1     000000024cf80c90:0     2010-12-03 09:15:01     3900: [TCPIP-client] recv() failed for sd=716 (err=10054 | An existing connection was forcibly closed by the remote host (peer).)
    GenericLog     GenericError     1     000000024cf80c90:0     2010-12-03 09:15:01     (smconn.cpp (318) err=1180671 sys=0) SBL-NET-01023: Peer disconnected
    SisnTcpIp     SisnSockError     1     000000024cf80c90:0     2010-12-03 09:15:01     3900: [TCPIP-client] recv() failed for sd=716 (err=10054 | An existing connection was forcibly closed by the remote host (peer).)
    GenericLog     GenericError     1     000000024cf80c90:0     2010-12-03 09:15:01     (smconn.cpp (318) err=1180671 sys=0) SBL-NET-01023: Peer disconnected
    SisnTcpIp     SisnSockError     1     000000024cf80c90:0     2010-12-03 09:15:01     3900: [TCPIP-client] recv() failed for sd=716 (err=10054 | An existing connection was forcibly closed by the remote host (peer).)
    GenericLog     GenericError     1     000000024cf80c90:0     2010-12-03 09:15:01     (smconn.cpp (318) err=1180671 sys=0) SBL-NET-01023: Peer disconnected
    SisnTcpIp     SisnSockError     1     000000024cf80c90:0     2010-12-03 09:15:01     3900: [TCPIP-client] recv() failed for sd=716 (err=10054 | An existing connection was forcibly closed by the remote host (peer).)
    GenericLog     GenericError     1     000000024cf80c90:0     2010-12-03 09:15:01     (smconn.cpp (318) err=1180671 sys=0) SBL-NET-01023: Peer disconnected
    GenericLog     GenericError     1     000000024cf80c90:0     2010-12-03 09:15:01     (ssmsismgr.cpp (626) err=3670020 sys=0) SBL-SSM-00004: SISNAPI Hello failed. The server component could be down.
    ObjMgrSessionLog     Error     1     000000024cf80c90:0     2010-12-03 09:15:01     Login failed for Login name : SADMIN
    ProcessPluginState     ProcessPluginStateError     1     000000024cf80c90:0     2010-12-03 09:15:01     3900: [SWSE] Open Session failed (0xa600d1) after 0.0040 seconds.
    ProcessPluginRequest     ProcessPluginRequestError     1     000000024cf80c90:0     2010-12-03 09:15:01     3900: [SWSE] Failed to obtain a session ID. Login failed attempting to connect to %1
    ProcessPluginRequest     ProcessPluginRequestError     1     000000024cf80c90:0     2010-12-03 09:15:01     3900: [SWSE] Set Error Response (Session: Error: 10879185 Message: Login failed attempting to connect to siebel.TCPIP.None.None://GUPAR01-W3-27:2321/SBA_81/SFSObjMgr_enu)
    ProcessPluginRequest     ProcessPluginRequestError     1     000000024cf80c90:0     2010-12-03 09:15:01     3900: [SWSE] Login failed.
    SBL-SSM-00004: SISNAPI Hello failed. The server component could be down.
    Please provide pointers to resolve this problem.
    Thanks,
    Anu
    Edited by: 816755 on Dec 3, 2010 6:16 AM

    Hi Robert,
    After configuring the Siebel Gateway Name Server, the execution is successfull showing no errors. But when i see the log files, i can see some errors in those. I have created a user SADMIN as administrator and then trying to install Siebel. The config info is :
    Main Task Selection : Create New Configuration
    Configuration Task Selection : Configure a New Enterprise in a Gateway Name Server
    Gateway Name Server Authentication User Account Name : SADMIN
    Gateway Name Server Authentication User Account Password : ********
    Gateway Name Server Host Name : GUPAR01-W3-27
    Gateway Name Server TCP/IP Port : 2320
    Siebel Enterprise Name : SBA_81
    Enterprise Description : SBA_81 Enterprise
    Primary Siebel File System : C:\sba81\gtwysrvr\fs
    RDBMS Platform : Oracle Database Enterprise Edition
    Database Table Owner : SIEBEL
    Oracle SQLNet Connect String : SIEBEL
    Siebel Database User Account Name : SADMIN
    Siebel Database User Account Password : ********
    Enterprise Security Authentication Profile : Database Authentication (default)
    Security Adapter Name (named subsystem) : DBSecAdpt
    Propagate Authentication Settings to the Gateway Name Server : true
    The contents of sw_cfg_util(001).log is:
    2021 2010-12-06 01:41:25 2010-12-06 01:41:25 -0500 00000016 001 003f 0001 09 sw_cfg_util 1768 3684 C:\sba81\gtwysrvr\log\sw_cfg_util(001).log 8.1.1 [21111] ENU
    GenericLog     GenericError     1     000000e84cfc05a4:0     2010-12-06 01:41:25     (sulcobj.cpp (1232) err=3407911 sys=0) SBL-SUL-00039: Could not set the param MaxEntrTasks for config object TxnProc
    GenericLog     GenericError     1     000000e84cfc05a4:0     2010-12-06 01:41:25     Error creating Parameter:MaxEntrTasks for Comp:TxnProc in CompGroup:Remote
    GenericLog     GenericError     1     000000fc4cfc05a4:0     2010-12-06 01:41:25     (sulcobj.cpp (1232) err=3407911 sys=0) SBL-SUL-00039: Could not set the param MaxEntrTasks for config object RepAgent
    GenericLog     GenericError     1     000000fc4cfc05a4:0     2010-12-06 01:41:25     Error creating Parameter:MaxEntrTasks for Comp:RepAgent in CompGroup:Remote
    GenericLog     GenericError     1     0000013d4cfc05a4:0     2010-12-06 01:41:25     (sulcobj.cpp (1091) err=3407908 sys=0) SBL-SUL-00036: Could not set the component attributes for component MsgBroadcastMgr
    GenericLog     GenericError     1     0000013d4cfc05a4:0     2010-12-06 01:41:25     Error creating Component:MsgBroadcastMgr in CompGroup:CommMgmt
    GenericLog     GenericError     1     0000028a4cfc05a4:0     2010-12-06 01:41:25     (sulcobj.cpp (1232) err=3407911 sys=0) SBL-SUL-00039: Could not set the param SearchSpec for config object TaskLogCleanup
    GenericLog     GenericError     1     0000028a4cfc05a4:0     2010-12-06 01:41:25     Error creating Parameter:SearchSpec for Comp:TaskLogCleanup in CompGroup:TaskUI
    GenericLog     GenericError     1     0000028f4cfc05a4:0     2010-12-06 01:41:25     (sulcobj.cpp (1232) err=3407911 sys=0) SBL-SUL-00039: Could not set the param MaxMtServers for config object RTSDispatcher
    GenericLog     GenericError     1     0000028f4cfc05a4:0     2010-12-06 01:41:25     Error creating Parameter:MaxMtServers for Comp:RTSDispatcher in CompGroup:RTSRemote
    GenericLog     GenericError     1     000002ad4cfc05a4:0     2010-12-06 01:41:25     (sulcobj.cpp (1232) err=3407911 sys=0) SBL-SUL-00039: Could not set the param MTInfraTrace for config object AdminNotify
    GenericLog     GenericError     1     000002ad4cfc05a4:0     2010-12-06 01:41:25     Error creating Parameter:MTInfraTrace for Comp:AdminNotify in CompGroup:SystemAux
    GenericLog     GenericError     1     000002ad4cfc05a4:0     2010-12-06 01:41:25     (sulcobj.cpp (1232) err=3407911 sys=0) SBL-SUL-00039: Could not set the param MaxSubtasks for config object AdminNotify
    GenericLog     GenericError     1     000002ad4cfc05a4:0     2010-12-06 01:41:25     Error creating Parameter:MaxSubtasks for Comp:AdminNotify in CompGroup:SystemAux
    GenericLog     GenericError     1     000002ad4cfc05a4:0     2010-12-06 01:41:25     (sulcobj.cpp (1232) err=3407911 sys=0) SBL-SUL-00039: Could not set the param MaxWorkerTasks for config object AdminNotify
    GenericLog     GenericError     1     000002ad4cfc05a4:0     2010-12-06 01:41:25     Error creating Parameter:MaxWorkerTasks for Comp:AdminNotify in CompGroup:SystemAux
    GenericLog     GenericError     1     000002b24cfc05a4:0     2010-12-06 01:41:25     (sccitems.cpp (2047) err=2883613 sys=0) SBL-SCC-00029: Setting parameter "AdminRoleName" on level "Component Definition" is not supported. Using list params command, check to see if parameter is settable at this level.
    GenericLog     GenericError     1     000002b24cfc05a4:0     2010-12-06 01:41:25     (sccconfg.cpp (1419) err=2883613 sys=0) SBL-SCC-00029: Setting parameter "AdminRoleName" on level "Component Definition" is not supported. Using list params command, check to see if parameter is settable at this level.
    GenericLog     GenericError     1     000002b24cfc05a4:0     2010-12-06 01:41:25     (srscobj.cpp (640) err=2883613 sys=0) SBL-SCC-00029: Setting parameter "AdminRoleName" on level "Component Definition" is not supported. Using list params command, check to see if parameter is settable at this level.
    GenericLog     GenericError     1     000002b24cfc05a4:0     2010-12-06 01:41:25     (sulcobj.cpp (235) err=2883613 sys=0) SBL-SCC-00029: Setting parameter "AdminRoleName" on level "Component Definition" is not supported. Using list params command, check to see if parameter is settable at this level.
    GenericLog     GenericError     1     000002b24cfc05a4:0     2010-12-06 01:41:25     Error creating Parameter:AdminRoleName for Comp:ServerMgr in CompGroup:System
    The contents of sw_cfg_util(002).log is :
    2021 2010-12-06 01:41:25 2010-12-06 01:41:25 -0500 00000005 001 003f 0001 09 sw_cfg_util 896 2220 C:\sba81\gtwysrvr\log\sw_cfg_util(002).log 8.1.1 [21111] ENU
    GenericLog     GenericError     1     000003144cfc05a4:0     2010-12-06 01:41:25     (sulcobj.cpp (1232) err=3407911 sys=0) SBL-SUL-00039: Could not set the param SearchSpec for config object LoyEngineBatch
    GenericLog     GenericError     1     000003144cfc05a4:0     2010-12-06 01:41:25     Error creating Parameter:SearchSpec for Comp:LoyEngineBatch in CompGroup:LoyaltyEngine
    GenericLog     GenericError     1     0000031e4cfc05a4:0     2010-12-06 01:41:25     (sulcobj.cpp (1232) err=3407911 sys=0) SBL-SUL-00039: Could not set the param SearchSpec for config object LoyEngineInteractive
    GenericLog     GenericError     1     0000031e4cfc05a4:0     2010-12-06 01:41:25     Error creating Parameter:SearchSpec for Comp:LoyEngineInteractive in CompGroup:LoyaltyEngine
    The contents of sw_cfg_util(003).log is :
    2021 2010-12-06 01:41:27 2010-12-06 01:41:27 -0500 00000003 001 003f 0001 09 sw_cfg_util 2436 2664 C:\sba81\gtwysrvr\log\sw_cfg_util(003).log 8.1.1 [21111] ENU
    GenericLog     GenericError     1     000003714cfc05a4:0     2010-12-06 01:41:27     (samisc.cpp (285) err=2883589 sys=0) SBL-SCC-00005: Internal:No more items found.
    GenericLog     GenericError     1     000003714cfc05a4:0     2010-12-06 01:41:27     (sasess.cpp (397) err=591895 sys=0) SBL-ADM-02071: Enterprise server SBA_81 not found in gateway server
    Please provide pointers in resolving this issue.
    Thanks,
    Anu

  • Error while accessing services of ESS/MSS tabs - URGENT

    Hi,
    When i am accessing the services under ESS, MSS tabs ie, Leave request, My expenses etc.... i am getting the following error. 
    A critical error has occured. Processing of the service had to be terminated. Unsaved data has been lost.
    Please contact your system administrator.
    User XYZ does not exist in this period:
    com.sap.pcuigp.xssfpm.java.FPMRuntimeException: User XYZ does not exist in this period
         at com.sap.pcuigp.xssfpm.java.MessageManager.raiseException(MessageManager.java:111)
         at com.sap.pcuigp.xssfpm.java.MessageManager.raiseException(MessageManager.java:121)
         at com.sap.pcuigp.xssutils.pernr.FcEmployeeServices.initPernr(FcEmployeeServices.java:257)
         at com.sap.pcuigp.xssutils.pernr.FcEmployeeServices.onInit(FcEmployeeServices.java:220)
         at com.sap.pcuigp.xssutils.pernr.wdp.InternalFcEmployeeServices.onInit(InternalFcEmployeeServices.java:249)
         at com.sap.pcuigp.xssutils.pernr.FcEmployeeServicesInterface.onInit(FcEmployeeServicesInterface.java:135)
         at com.sap.pcuigp.xssutils.pernr.wdp.InternalFcEmployeeServicesInterface.onInit(InternalFcEmployeeServicesInterface.java:183)
         at com.sap.pcuigp.xssutils.pernr.wdp.InternalFcEmployeeServicesInterface$External.onInit(InternalFcEmployeeServicesInterface.java:243)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.attachComponentToUsage(FPMComponent.java:920)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.attachComponentToUsage(FPMComponent.java:889)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPMProxy.attachComponentToUsage(FPMComponent.java:1082)
         at com.sap.xss.tra.fc.utils.FcTraUtils.onInit(FcTraUtils.java:264)
         at com.sap.xss.tra.fc.utils.wdp.InternalFcTraUtils.onInit(InternalFcTraUtils.java:297)
         at com.sap.xss.tra.fc.utils.FcTraUtilsInterface.onInit(FcTraUtilsInterface.java:122)
         at com.sap.xss.tra.fc.utils.wdp.InternalFcTraUtilsInterface.onInit(InternalFcTraUtilsInterface.java:212)
         at com.sap.xss.tra.fc.utils.wdp.InternalFcTraUtilsInterface$External.onInit(InternalFcTraUtilsInterface.java:428)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.attachComponentToUsage(FPMComponent.java:920)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.attachComponentToUsage(FPMComponent.java:889)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPMProxy.attachComponentToUsage(FPMComponent.java:1082)
         at com.sap.xss.tra.fc.allmytrips.FcTraAllMyTrips.onInit(FcTraAllMyTrips.java:247)
         at com.sap.xss.tra.fc.allmytrips.wdp.InternalFcTraAllMyTrips.onInit(InternalFcTraAllMyTrips.java:543)
         at com.sap.xss.tra.fc.allmytrips.FcTraAllMyTripsInterface.onInit(FcTraAllMyTripsInterface.java:115)
         at com.sap.xss.tra.fc.allmytrips.wdp.InternalFcTraAllMyTripsInterface.onInit(InternalFcTraAllMyTripsInterface.java:348)
         at com.sap.xss.tra.fc.allmytrips.wdp.InternalFcTraAllMyTripsInterface$External.onInit(InternalFcTraAllMyTripsInterface.java:420)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.attachComponentToUsage(FPMComponent.java:920)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.attachComponentToUsage(FPMComponent.java:889)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPMProxy.attachComponentToUsage(FPMComponent.java:1082)
         at com.sap.xss.tra.vc.allmytrips.VcTraAllMyTripsInterface.onInit(VcTraAllMyTripsInterface.java:164)
         at com.sap.xss.tra.vc.allmytrips.wdp.InternalVcTraAllMyTripsInterface.onInit(InternalVcTraAllMyTripsInterface.java:205)
         at com.sap.xss.tra.vc.allmytrips.wdp.InternalVcTraAllMyTripsInterface$External.onInit(InternalVcTraAllMyTripsInterface.java:399)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.doProcessEvent(FPMComponent.java:563)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.doEventLoop(FPMComponent.java:437)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.wdDoInit(FPMComponent.java:195)
         at com.sap.pcuigp.xssfpm.wd.wdp.InternalFPMComponent.wdDoInit(InternalFPMComponent.java:110)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.doInit(DelegatingComponent.java:108)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:215)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.init(ClientComponent.java:429)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:362)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.initApplication(ApplicationSession.java:700)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:269)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingPortal(ClientSession.java:772)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:707)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:261)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:154)
         at com.sap.tc.webdynpro.clientserver.session.core.ApplicationHandle.doProcessing(ApplicationHandle.java:73)
         at com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicationProxy.sendDataAndProcessActionInternal(AbstractApplicationProxy.java:860)
         at com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicationProxy.create(AbstractApplicationProxy.java:220)
         at com.sap.portal.pb.PageBuilder.updateApplications(PageBuilder.java:1248)
         at com.sap.portal.pb.PageBuilder.createPage(PageBuilder.java:353)
         at com.sap.portal.pb.PageBuilder.init(PageBuilder.java:551)
         at com.sap.portal.pb.PageBuilder.wdDoRefresh(PageBuilder.java:595)
         at com.sap.portal.pb.PageBuilder$1.doPhase(PageBuilder.java:826)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processPhaseListener(WindowPhaseModel.java:755)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doPortalDispatch(WindowPhaseModel.java:717)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:136)
         at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:299)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:723)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:261)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:154)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:160)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    I am able to access in QAS but not in DEV or Prod.

    VV,
    This could be case when the payroll for the user XYZ has not be updated till the current period, in which you are trying to access the ESS or MSS tabs.
    You can try this.
    1. Go to the transaction - PC00_mxy_CLSTR
    where xy refers to the MOLGA or the country coding for which the payroll is run.
    Observe there till which period for the user XYZ the payroll has been run.
    2. If the payroll has not been run for the current period.
    Go to transaction PC00_mxy_CALC and by entering the parameters, run the payroll and try doing the same.
    Hope this helps!
    Regards.
    Sandeep Tudumu

  • Error while accessing an application from logon page

    Hello all,
    I have created an application on WD Java which inturn talks to my ECC at the backend. I want to fix on my portal Logon Page, i have attached the location to an ivew which as Anonymous access still i am not able to open the link ..the error say access denied.
    when i attach this application inside the portal on some role i am able to open the link ....
    following is the error which is seen, please help
      Portal Runtime Error
    An exception occurred while processing a request for :
    iView : pcd:portal_content/hr_portal_folder/iviews/com.rr.ess.java_local_PasswordResetPr_com_password_reset_PasswordReset
    Component Name : com.sap.portal.wdintegrator.WebDynproIntegrator
    Problem creating the Application Integrator, exception occured during onNodeReady was: com.sapportals.portal.prt.runtime.PortalRuntimeException: Access is denied: com.sap.portal.appintegrator.sap.WebDynproPageBuilder - user: Guest, .
    Exception id: 01:13_31/08/07_0081_14574951
    See the details for the exception ID in the log file

    HI!
    Are you aware of note https://service.sap.com/sap/support/notes/1031159 and did you follow the steps?
    Rgs, Sigi

  • Error while accessing TE application using IE 9

    Hi Experts,
    We are getting error while trying to access Travel And Expense applications using Internet Explorer 9.
    Error description---Sorry your browser/program is not supported by web dynpro.

    Hi,
    Please refer the below links which could be helpful:
    Sorry, your browser/program is not supported by Web Dynpro -  IE 9 / Win 7
    /thread/274510 [original link is broken]
    Regards,
    Kiron Kumar T.

Maybe you are looking for

  • Need help hooking up a keyboard!

    I have a korg triton and i just bought a macbook, does anyone know how i can hookup my keyboard to my laptop so i can record what im playing. This is all new to me so im not sure what i need?

  • IPad air audio to Mac via USB

    I would like to connect my iPad Air Lightning Output to my Mac Pro via the Mac Pro USB for input of audio from the iPad to the Mac Pro.  My Mac is connected to my audio equipment via analog audio out and the TOS connector.  I would like to connect th

  • Report painter-syntax error form 'SEL-L023' already exists

    Hi, When i copy a report painter form and generate it to the same report group (same as source report) i get an error 'syntax error form 'SEL-L023' already exists. I saw the ABAP code the source and target have same form name. Where can i change the

  • Creation of Transportation lanes during CIF of scheduling agreements.

    Hi,    Could anyone please let me know the place(CIF Code) where transportation lanes are created during CIF process of scheduling agreements from R/3 to APO system. This scheduling agreements will be created in R/3 and will CIFed to APO(SPP).   I ne

  • Sony Ericsson V600i software won't load on PC (win xp) due to Quick Time

    Attempts to load software that came with my Sony Ericsson mobile phone keep failing. Error screen says problem is with Quick Time. Has anyone had same problem? Any solutions? Thanks. Martin Windows XP