Deployment failed: No config data persisted for component apache

When we are deploying the ear file we are getting the following error.
Deployment failed: No config data persisted for component apache, transaction ID 10.236.30.86.43c315.fd76033ac1.-7ff4

Exactly the same problem...
Impossible de deploy a new app.
Write down that I also can't cancel a deployment, i get the message :
No ApplicationInfo is associated with application named: AppName

Similar Messages

  • 12c BP1 Oracle Chargeback plugin  deployment failed when config webtier

    Plugin version is 12.1.0.2.0,
    It failed at config WebTier stage.
    From pluginca trc file, it shows
    EMPluginDeploymentStep:{ OMS_CONFIG ; FAILED
    Further check the content of configplugin_all_2012-07-04_21-40-01.trc shows:
    2012-07-04 21:42:13,968 [main] DEBUG pluginca.PluginCADriver - Deploying all plug-ins at once using templates
    2012-07-04 21:42:13,969 [main] DEBUG pluginca.PluginCADriver - Setting WLST properties value to: -Dweblogic.security.TrustKeyStore=DemoTrust -Dweblogic.security.SSL.ignoreHostnameVerification=true -Djava.security.egd=file:///dev/./urandom
    2012-07-04 21:42:13,969 [main] INFO pluginca.PluginCADriver - Executing the command: /u01/app/oracle/middleware/oracle_common/common/bin/wlst.sh /u01/app/oracle/middleware/oms/sysman/pluginca/scripts/wls/template.py abc.xyz.com 7101 7403 weblogic nodemanager EMGC_OMS1 abc.xyz.com GCDomain /u01/app/oracle/middleware/oms/sysman/omsca/scripts/wls
    Initializing WebLogic Scripting Tool (WLST) ...
    ...(all normal msg)...
    ..(some security info, <Notice> <Security> <BEA-090898> ...)
    Successfully Connected to Node Manager.
    FAILED_NOT_RESTARTABLE
    Wed Jul 04 21:42:20 SGT 2012
    Adding plug-in templates
    Already connected to a Node Manager
    FAILED_NOT_RESTARTABLE
    Starting server EMGC_ADMINSERVER ...
    Error Starting server EMGC_ADMINSERVER: weblogic.nodemanager.NMException: Exception while starting server 'EMGC_ADMINSERVER'
    Connecting to t3s:/abc.xyz.com:7101 with userid weblogic ...
    ...(some <Notice> <Security> <BEA-090898> )
    Successfully connected to Admin Server 'EMGC_ADMINSERVER' that belongs to domain 'GCDomain'.
    Wed Jul 04 21:45:31 SGT 2012
    Admin server started successfully....
    Disconnected from weblogic server: EMGC_ADMINSERVER
    FAILED_NOT_RESTARTABLE
    Wed Jul 04 21:45:31 SGT 2012
    Error Starting Admin Server5
    Wed Jul 04 21:45:31 SGT 2012
    SEVERE: Exception: during deployment of plug-in template done
    Wed Jul 04 21:45:31 SGT 2012
    Name of Exception: exceptions.SystemExit
    Wed Jul 04 21:45:31 SGT 2012
    Code of Exception: 5
    Wed Jul 04 21:45:31 SGT 2012
    <traceback object at 1>
    Wed Jul 04 21:45:31 SGT 2012
    SEVERE: Exception: during deploying Plug-in template
    Wed Jul 04 21:45:31 SGT 2012
    Name of Exception: exceptions.SystemExit
    Wed Jul 04 21:45:31 SGT 2012
    Code of Exception: 65
    Wed Jul 04 21:45:31 SGT 2012
    <traceback object at 2>
    Then it tries to run wlst again, and failed with same information.
    Can anyone help on this issue. Or share some idea about how to investigate into this wlst issue.
    Thanks,
    Frank
    Edited by: FrankWang on 2012-7-27 上午10:16

    Try re-starting admin server by doing:
    1) emctl stop oms -all
    2) Check if any java processes are running from middleware (ps -ef | grep EMGC_ADMINSERVER, ps -ef | grep EMGC_OMS1, ps -ef | grep <MW_HOME>) and kill them using 'kill -9'
    3) emctl start oms
    4) Re-try plug-in deployment
    I think as long as admin server is in FAILED_NOT_RESTARTABLE state, plug-in deployment cannot succeed.

  • Failed to retrieve data set for spry

    I created a spry data set on a blank html page and had no
    problems. However, when I followed the same steps on an existing
    website I get a large box in live view saying "Failed to retrieve
    data set (ds2) for spry:repeat". I tried to create the spry set
    inside a div which was inside a div that was inside a table. Could
    nesting be the problem?

    Its because you have a JavaScript error on your page.
    in your iframe..
    var this_week_wed = new
    Spry.Data.XMLDataSet("../../Data/this_week2.xml",
    "thisweek/day[name='Wednesday']/items/item"{distinctOnLoad:true});
    it needs a , after your "/items/item"
    var this_week_wed = new
    Spry.Data.XMLDataSet("../../Data/this_week2.xml",
    "thisweek/day[name='Wednesday']/items/item",{distinctOnLoad:true});

  • Failed to retrieve data from the database (Apache derby). Details: java.lang.reflect.InvacationTargetException

    Post Author: johnnighter
    CA Forum: Data Connectivity and SQL
    Hi,Good Day !I followed crxi_java_bean_data_source.pdf to setup and configure Crystal Report XI (Product Version 11.0.0.1282, CR Developer; Product Type: Full).Below is the sample code.import java.sql.*;public class CRSampleDataSourceBean {    private ResultSet resultSet = null;    private Connection connection = null;     private String connectionURL = "jdbc:derby:MyDatabase";    private String databaseClass = "org.apache.derby.jdbc.EmbeddedDriver";    private String query = "SELECT * FROM CUSTOMER";         public CRSampleDataSourceBean()     {        try         {                        Class.forName(databaseClass);                        connection = DriverManager.getConnection(connectionURL, "", "");        }         catch (ClassNotFoundException ex)         {            System.out.println("Ensure that database driver class is installed.");            ex.printStackTrace();        }         catch (SQLException ex)         {            System.out.println("SQL Exception #" + ex.getErrorCode() + " : " + ex.getLocalizedMessage());            ex.printStackTrace();        }    }            public ResultSet getResultSet() throws SQLException     {                Statement statement = connection.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_READ_ONLY);                resultSet = statement.executeQuery(query);        return resultSet;    }}Compile no error. It display at the "Java Beans Connectivity" screen, and able to select from the "Java Bean Classes" combobox.It display at the "Available Data Sources" (left hand side) with database name CRSampleDataSourceBean->getResultSet.  BUT when click the ">" or ">>" button, it display an error message "Failed to retrieve data from the database. Details: java.lang.reflect.InvacationTargetException". Please advice. regards,johnnighter    

    Post Author: pvierheilig
    CA Forum: Crystal Reports
    Have you been able to resolve this yet?  I don't have any reference to Oracle error codes but would suspect a quick Google of something like 'Oracle error code 997' should result in good information, since it is an Oracle error...
    Hope this helps.

  • Best practice for data persistance for monitoring without BAM

    Greetings,
    We are modeling a business process in a large organization using BPEL Process Manager. The key point is that business people needs to monitor the execution of the business process in several key sectors of the process execution as well as they need to get report information of the process.
    To model this in our project, we decided to create a new Oracle Database Schema that is going to hold the information about the business process execution (we decided that because for this initial offering the customer is not buying BAM). In this context, the BPEL process is going to be sending this key information to the repository so business people can then view real time information about the process execution as well as historical information in form of reports.
    The important issue here is, if there is a best practice to send the information to the Database Schema ? it could be just using single database adapters ? maybe using sensors sending the data using topics connections ?
    Any help will be highly appreciated.
    Thanks in advance.

    hi..yes this suggestion is nice...first configure the sensors(activity or variable) ..then configure the sensor action as a JMS Topic which will in turn insert the data into a DB..Or when u configure the sensor action as a DB..then the data goes to Oracle Reports schema..if there is any chance of altering the DB..i mean if there is any chance by changing config files so that the data doesnt go to that Reports schema and goes to a custom schema created by any User....i dont know if it can b done...my problem is wen i m configuring the jms Topic for sensor actions..i see blank data coming..for sm reason or the other the data is not getting posted ...i have used a esb ..a routing service based on the schema which i am monitoring...can any1 help?

  • Failed to retrieve data set for spry:repeat

    Help! I have read all the posts and fixes in the forums, but
    none seem to be helping me. I have moved this coding from my
    homepage to a sub-page. It previously worked fine on the homepage.
    The coding is the same, however I get the same error message each
    time. What am I missing?
    Below is my coding:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml"
    xmlns:spry="
    http://ns.adobe.com/spry">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    <!--
    .style1 {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: small;
    .style2 {font-family: Verdana, Arial, Helvetica, sans-serif}
    .style3 {font-size: small}
    .style5 {color: #808000}
    -->
    </style>
    <script src="../../SpryAssets/SpryMenuBar.js"
    type="text/javascript"></script>
    <script src="../../Scripts/AC_RunActiveContent.js"
    type="text/javascript"></script>
    <script src="../../SpryAssets/xpath.js"
    type="text/javascript"></script>
    <script src="../../SpryAssets/SpryData.js"
    type="text/javascript"></script>
    <script type="text/javascript">
    var this_week_mon = new
    Spry.Data.XMLDataSet("../../Data/this_week2.xml",
    "thisweek/day[name='Monday']/items/item",{distinctOnLoad:true});
    var this_week_tue = new
    Spry.Data.XMLDataSet("../../Data/this_week2.xml",
    "thisweek/day[name='Tuesday']/items/item",{distinctOnLoad:true});
    var this_week_wed = new
    Spry.Data.XMLDataSet("../../Data/this_week2.xml",
    "thisweek/day[name='Wednesday']/items/item"{distinctOnLoad:true});
    var this_week_thu = new
    Spry.Data.XMLDataSet("../../Data/this_week2.xml",
    "thisweek/day[name='Thursday']/items/item",{distinctOnLoad:true});
    var this_week_fri = new
    Spry.Data.XMLDataSet("../../Data/this_week2.xml",
    "thisweek/day[name='Friday']/items/item",{distinctOnLoad:true});
    var this_week_sat = new
    Spry.Data.XMLDataSet("../../Data/this_week2.xml",
    "thisweek/day[name='Saturday']/items/item",{distinctOnLoad:true});
    var this_week_sun = new
    Spry.Data.XMLDataSet("../../Data/this_week2.xml",
    "thisweek/day[name='Sunday']/items/item",{distinctOnLoad:true});
    </script>
    </head>
    <body>
    <table>
    <tr>
    <td width="200"><span class="style14
    style1"><strong>Monday</strong></span></td>
    </tr>
    <tr valign="top">
    <td><div spry:region="this_week_mon"><span
    spry:repeat="this_week_mon"><a href="{@href}"class="style14
    style5 style3">{item}</a><br />
    </span></div></td>
    </tr>
    <tr>
    <td width="200"><span class="style14
    style1"><strong>Tuesday</strong></span></td>
    </tr>
    <tr valign="top">
    <td><div spry:region="this_week_tue"><span
    spry:repeat="this_week_tue"><a href="{@href}" class="style14
    style5 style3">{item}</a><br />
    </span></div></td>
    </tr>
    <tr>
    <td width="200"><span class="style14 style2
    style3"><strong>Wednesday</strong></span></td>
    </tr>
    <tr valign="top">
    <td><div spry:region="this_week_wed"><span
    spry:repeat="this_week_wed"><a href="{@href}" class="style14
    style5 style3">{item}</a><br />
    </span></div></td>
    </tr>
    <tr>
    <td width="200"><span class="style14 style2
    style3"><strong>Thursday</strong></span></td>
    </tr>
    <tr valign="top">
    <td><div spry:region="this_week_thu"><span
    spry:repeat="this_week_thu"><a href="{@href}" class="style14
    style5 style3">{item}</a><br />
    </span></div></td>
    </tr>
    <tr>
    <td width="200"><span class="style14 style2
    style3"><strong>Friday</strong></span></td>
    </tr>
    <tr valign="top">
    <td><div spry:region="this_week_fri"><span
    spry:repeat="this_week_fri"><a href="{@href}" class="style14
    style5 style3">{item}</a><br />
    </span></div></td>
    </tr>
    <tr>
    <td width="200"><span class="style14 style2
    style3"><strong>Saturday</strong></span></td>
    </tr>
    <tr valign="top">
    <td><div spry:region="this_week_sat"><span
    spry:repeat="this_week_sat"><a href="{@href}" class="style14
    style5 style3">{item}</a><br />
    </span></div></td>
    </tr>
    <tr>
    <td width="200"><span class="style14 style2
    style3"><strong>Sunday</strong></span></td>
    </tr>
    <tr valign="top">
    <td><div spry:region="this_week_sun"><span
    spry:repeat="this_week_sun"><a href="{@href}" class="style14
    style5 style3">{item}</a><br />
    </span></div></td>
    </tr>
    </table>
    </body>
    </html>
    the webpage is located at
    http://www.harvestfamchurch.org/about_this_week.html
    I have tried everything and can't seem to find the final
    tweak to make it work.
    Thanks.

    Its because you have a JavaScript error on your page.
    in your iframe..
    var this_week_wed = new
    Spry.Data.XMLDataSet("../../Data/this_week2.xml",
    "thisweek/day[name='Wednesday']/items/item"{distinctOnLoad:true});
    it needs a , after your "/items/item"
    var this_week_wed = new
    Spry.Data.XMLDataSet("../../Data/this_week2.xml",
    "thisweek/day[name='Wednesday']/items/item",{distinctOnLoad:true});

  • DB Deployment failed for Essbase Administration Service 9.3.1

    Hi All,
    I can not finish the database configuration for my essbase administration service 9.3.1 successfully. I can see that the config tool created some tables and data in my oracle database, but the final state was failure. The configuration utility displayed the following information:
    PRODUCT: Essbase Administration Services
    (/app/essbase/AnalyticAdministrationServices)
    ----- DB Deployment: Failed
    (Refer to log file for details: /app/essbase/logs/config/configtools.log).
    And here are the error messages at the end of the configtools.log file:
    (Oct 21, 2010, 01:12:22 AM), com.hyperion.hbr.common.HBRLogger, DEBUG, Entering method. com.hyperion.hbr.db.DBAdminManager:saveConfig
    (Oct 21, 2010, 01:12:22 AM), com.hyperion.hbr.common.HBRLogger, FATAL, Configuration save failed.
    (Oct 21, 2010, 01:12:22 AM), com.hyperion.hbr.common.HBRLogger, FATAL,
    com.hyperion.hbr.common.HBRLogger$HBRLogThrowable
         at com.hyperion.hbr.db.DBAdminManager.saveConfig(Unknown Source)
         at com.hyperion.ess.EASDBConfigurator.configure(EASDBConfigurator.java:222)
         at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.executeDBConfigTask(RunAllTasksWizardAction.java:282)
         at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.execute(RunAllTasksWizardAction.java:151)
         at com.installshield.wizard.RunnableWizardBeanContext.run(Unknown Source)
    (Oct 21, 2010, 01:12:22 AM), com.hyperion.hbr.common.HBRLogger, DEBUG, Exiting method. com.hyperion.hbr.common.HBRLogger:severeStackExit
    (Oct 21, 2010, 01:12:22 AM), com.hyperion.ess.EASDBConfigurator, DEBUG, Error Code: CORE162
    Error Args: null
    ClassName: com.hyperion.hbr.excp.CoreException
    Error Code: UTIL010
    Error Args: [Ljava.lang.Object;@150388c
    ClassName: com.hyperion.hbr.excp.ResourceException
    Exception /app/essbase/AnalyticAdministrationServices/HBRServer.properties (No such file or directory)
    ClassName: java.io.FileNotFoundException
    (Oct 21, 2010, 01:12:22 AM), com.hyperion.cis.config.wizard.RunAllTasksWizardAction, ERROR, Error:
    com.hyperion.cis.config.ProcessingException
         at com.hyperion.ess.EASDBConfigurator.configure(EASDBConfigurator.java:252)
         at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.executeDBConfigTask(RunAllTasksWizardAction.java:282)
         at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.execute(RunAllTasksWizardAction.java:151)
         at com.installshield.wizard.RunnableWizardBeanContext.run(Unknown Source)

    I'm not sure about that. Yes I can not find RHE5 in the supported OS list. RHE4 is in the list though. So do you think this could be the reason?
    I really got a lot of problems. Although I can connect to the administration service using the console now, and can create essbase servers, but I can not even connect to the server. It hangs.
    Shall I change my OS to RHE4?

  • Data source for reports

    hi all,
    we r using 10g application server along with the reports service to deploy J2EE application
    The data source for the application is specified using the JNDI lookup
    Is it possible to use the same strategy for reports as well.
    i.e., we are using jdbcpds. so is it ok if i give the JNDI look up name as P_JDBCPDS
    If not is there any other way to make the P_JDBCPDS connection generic, so that i can change the username and database name without having to change the cgicmd.dat file
    Any help is greatly appreciated.
    Thanks & regards,
    Ramakrishna

    If it is intended to be accessible from Reports servlet then you can use "ssoconn" command line option where by the user name and password is stored in OID (Oracle Internet Directory)
    Pls see publishing reports to web document --> command line options -> rwservlet
    (link below)
    [    All Docs for all versions    ]
    http://otn.oracle.com/documentation/reports.html
    [     Publishing reports to web  - 10G  ]
    http://download.oracle.com/docs/html/B10314_01/toc.htm (html)
    http://download.oracle.com/docs/pdf/B10314_01.pdf (pdf)
    [   Building reports  - 10G ]
    http://download.oracle.com/docs/pdf/B10602_01.pdf (pdf)
    http://download.oracle.com/docs/html/B10602_01/toc.htm (html)
    [   Forms Reports Integration whitepaper  9i ]
    http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf
    ---------------------------------------------------------------------------------

  • No upgrade package found for component SAP_BASIS

    Hello,
    I'm just upgrading from NW 7.01 to NW 7.4. During the EHP_INCLUSION phase I'm getting this error:
    The program has not found a matching SAINT package for 'SAP_BASIS'.
    "Last error code set: Enhancement Package inclusion failed, no upgrade package found for component 'SAP_BASIS' "
    I've checked the name of patches on stack.xml and upgrade directory, and patches are in the upgrade directory.
    Any suggestion?
    Thanks.

    Hi Ruben,
    From the error message
    "Last error code set: Enhancement Package inclusion failed, no upgrade package found for component 'SAP_BASIS' "
    You need to include delta upgrade package for SAP_BASIS component in the /EPS/in queue.
    File name should be similar to "K-740BHINSAPBASIS.SAR". Please check whether such package has been downloaded ,extracted and include into the queue.
    Hope this helps.
    Regards,
    Deepak Kori

  • JTable data persistance problem

    i have large number of rows to be displayed in a JTable , the user can configure the number of rows he
    wants to view , the table will have next and previous buttonns to navigate to the different pages , i have
    solved the problem by reading data from. a 2 dimensional object array according to the user choice , the
    next and the previous buttons are working , but the problem is there is no data persistance for example if
    the user deletes 2 rows from the 1st page and goes to the 2nd page , when he comes back again to the 1st
    page the deleted elements are still there. I am using an my own model which implements abstract table model.It would b gr8 if any one can send the code.Thanks in advance.

    Are you removing the rows from your Object Array?
    if so, you are rigth now, you must to use at you model
            fireTableDataChanged();When you change data from your object array.
    Hope this helps...

  • LMS 4.2.4 Baseline template deploy fails for 2960X

    Hello,
    we have Cisco Prime LMS 4.2.4 and I added a new switch type C2960X-24TS-L with IOS Version 15.0.2-EX1.
    I'd like to deploy a baseline template, but it fails:
    Protocol ==> Unknown / Not Applicable
    Selected Protocols with order ==> SSH,Telnet,TFTP
    Execution Result:
    CM0150 Deploy Baseline template to PRIMARY config on device failed Cause: Operation not supported for generic support devices
    CM0056 Config fetch failed for xxxxx Cause:
    PRIMARY-RUNNING config Fetch Operation failed for TFTP.
    SSH: Failed to establish SSH connection to 10.xxx.xxx.xxx - Cause: Authentication failed on device 3 times.
    Action: Check if protocol is supported by device and required device package is installed.
    The device is reachable via telnet.
    I think that I installed the latest device packages for LMS 4.2.4.
    What could be the problem here?
    Thanks,
    Kerstin

    Hi Afroz,
    when I checked the ssh-credentials, I got a failure on ssh enable.
    The failure message on ACS is "missing user password".
    I reentered the credentials, but the error persists.
    I tried to login with the credentials manually, and it works. So the credentials are correct.
    Last I deleted and re-added the device, but nothing has changed.
    Other devices (not 2960X) working correct.
    So I think maybe I haven't the latest device packages for 2960X-Switches. But here is the next problem, I can't check for latest packages:
    [ Tue Apr 07 12:19:10 CEST 2015 ] INFO   [DownloadManager : queryAllPkgs]  : Going to collect download packages...
    [ Tue Apr 07 12:19:12 CEST 2015 ] ERROR  [RemoteRepSync : downloadPsuHeadersAsXml]  : VDSException thrown com.cisco.nm.xms.vds.VDSException: CcoDownloadAdapter::getXmlFileList():IOException:tools.cisco.com
    Regards,
    Kerstin

  • Failed to create delegate for component

    Folks,
    I am getting this error when I am trying to create Expense Report in Travel and Expense
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Failed to create delegate for component com.sap.xss.essceservices.vcceassignmentselection.VcCEAssignmentSelection. (Hint: Is the corresponding DC deployed correctly? Does the DC contain the component?)
    at com.sap.tc.webdynpro.progmodel.generation.ControllerHelper.createDelegate(ControllerHelper.java:110)
    at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.<init>(DelegatingComponent.java:51)
    at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.init(ClientComponent.java:382)
    at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.createComponent(ClientComponent.java:940)
    at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.createComponent(ClientComponent.java:177)
    at com.sap.tc.webdynpro.progmodel.components.ComponentUsage.createComponentInternal(ComponentUsage.java:149)
    at com.sap.tc.webdynpro.progmodel.components.ComponentUsage.createComponent(ComponentUsage.java:141)
    at com.sap.pcuigp.xssfpm.wd.FPMComponent$ComponentUsageManager.createVACComponentUsage(FPMComponent.java:747)
    at com.sap.pcuigp.xssfpm.wd.FPMComponent.doProcessEvent(FPMComponent.java:563)
    at com.sap.pcuigp.xssfpm.wd.FPMComponent.doEventLoop(FPMComponent.java:438)
    at com.sap.pcuigp.xssfpm.wd.FPMComponent.wdDoInit(FPMComponent.java:196)
    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:430)
    at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:362)
    at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.initApplication(ApplicationSession.java:756)
    at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:291)
    at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingPortal(ClientSession.java:733)
    at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:668)
    at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
    at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
    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:1288)
    at com.sap.portal.pb.PageBuilder.createPage(PageBuilder.java:355)
    at com.sap.portal.pb.PageBuilder.init(PageBuilder.java:548)
    at com.sap.portal.pb.PageBuilder.wdDoRefresh(PageBuilder.java:592)
    at com.sap.portal.pb.PageBuilder$1.doPhase(PageBuilder.java:864)
    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:321)
    at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:684)
    at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
    at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
    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:386)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
    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:102)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Caused by: java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
    at com.sap.tc.webdynpro.progmodel.generation.ControllerHelper.createDelegate(ControllerHelper.java:74)
    ... 57 more
    Caused by: java.lang.NoClassDefFoundError: com.sap.pcuigp.xssutils.pernr.model.grpinfo.Hrxssce_Pernr_Grp_Info
    at com.sap.xss.essceservices.vcceassignmentselection.wdp.InternalVcCEAssignmentSelection.class$(InternalVcCEAssignmentSelection.java:25)
    at com.sap.xss.essceservices.vcceassignmentselection.wdp.InternalVcCEAssignmentSelection.<init>(InternalVcCEAssignmentSelection.java:45)
    ... 62 more

    Here is patch level details
    System GDJ   
    Software Components 
    Vendor  Name  Version  Provider  Location  Applied 
    sap.com  CORE-TOOLS  7.00 SP16 (1000.7.00.16.0.20080610120618)  SAP AG  SAP AG  20081023044040 
    sap.com  JLOGVIEW  7.00 SP16 (1000.7.00.16.0.20080610110700)  SAP AG  SAP AG  20081023044531 
    sap.com  SAP_JTECHF  7.00 SP16 (1000.7.00.16.0.20080610121705)  SAP AG  SAP AG  20081023050236 
    sap.com  SAP_JTECHS  7.00 SP16 (1000.7.00.16.0.20080610122443)  SAP AG  SAP AG  20081023155307 
    sap.com  KM-KW_JIKS  7.00 SP16 (1000.7.00.16.0.20080610120928)  SAP AG  SAP AG  20081023152030 
    sap.com  CAF  7.00 SP16 (1000.7.00.16.0.20080610191445)  SAP AG  MAIN_APL70VAL_C  20081023160337 
    sap.com  SAP-JEE  7.00 SP16 (1000.7.00.16.0.20080610121429)  SAP AG  SAP AG  20081023044803 
    sap.com  CAF-UM  7.00 SP16 (1000.7.00.16.0.20080610191453)  SAP AG  MAIN_APL70VAL_C  20081023135958 
    sap.com  LM-TOOLS  7.00 SP16 (1000.7.00.16.0.20080610191913)  SAP AG  MAIN_APL70VAL_C  20081023163007 
    sap.com  UMEADMIN  7.00 SP16 (1000.7.00.16.0.20080610192745)  SAP AG  MAIN_APL70VAL_C  20081023163215 
    sap.com  VCKITGP  7.00 SP16 (1000.7.00.16.0.20080610174113)  SAP AG  SAP AG  20081023165613 
    sap.com  RTC-STREAM  7.00 SP16 (1000.7.00.16.0.20080610173948)  SAP AG  SAP AG  20081023165553 
    sap.com  LM-PORTAL  7.00 SP16 (1000.7.00.16.0.20080610185557)  SAP AG  MAIN_APL70VAL_C  20081023165537 
    sap.com  VCKITXX  7.00 SP16 (1000.7.00.16.0.20080610174113)  SAP AG  SAP AG  20081023165635 
    sap.com  ADSSAP  7.00 SP16 (1000.7.00.16.0.20080610114809)  SAP AG  SAP AG  20081023150845 
    sap.com  BI_MMR  7.00 SP16 (1000.7.00.16.0.20080610120307)  SAP AG  SAP AG  20081023151034 
    sap.com  EPBC  7.00 SP16 (1000.7.00.16.0.20080610173602)  SAP AG  SAP AG  20081023151916 
    sap.com  KMC-COLL  7.00 SP16 (1000.7.00.16.0.20080610173923)  SAP AG  SAP AG  20081023174438 
    sap.com  CAF-KM  7.00 SP16 (1000.7.00.16.0.20080610185206)  SAP AG  MAIN_APL70VAL_C  20081023185019 
    sap.com  EPBC2  7.00 SP16 (1000.7.00.16.0.20080610173614)  SAP AG  SAP AG  20081023172439 
    sap.com  EP-PSERV  7.00 SP16 (1000.7.00.16.0.20080610173742)  SAP AG  SAP AG  20081023182439 
    sap.com  KMC-CM  7.00 SP16 (1000.7.00.16.0.20080610173859)  SAP AG  SAP AG  20081023183411 
    sap.com  VCFLEX  7.00 SP16 (1000.7.00.16.0.20080610174104)  SAP AG  SAP AG  20081023180223 
    sap.com  VCFRAMEWORK  7.00 SP16 (1000.7.00.16.0.20080610174113)  SAP AG  SAP AG  20081023180423 
    sap.com  EP-WDC  7.00 SP16 (1000.7.00.16.0.20080610152000)  SAP AG  SAP AG  20081023183137 
    sap.com  KMC-BC  7.00 SP16 (1000.7.00.16.0.20080610173803)  SAP AG  SAP AG  20081023183259 
    sap.com  NET-PDK  7.00 SP16 (1000.7.00.16.0.20080610173931)  SAP AG  SAP AG  20081023174549 
    sap.com  RTC  7.00 SP16 (1000.7.00.16.0.20080610173947)  SAP AG  SAP AG  20081023174658 
    sap.com  SAP-JEECOR  7.00 SP16 (1000.7.00.16.0.20080610121600)  SAP AG  SAP AG  20081023045827 
    sap.com  JSPM  7.00 SP16 (1000.7.00.16.0.20080610110700)  SAP AG  SAP AG  20081023042144 
    sap.com  BI_UDI  7.00 SP16 (1000.7.00.16.0.20080610120325)  SAP AG  SAP AG  20081023151704 
    sap.com  BPERP_TECINF  1.31 SP3 (1000.1.31.3.0.20080917075803)  SAP AG  MAIN_ERP53VAL_C  20081212034050 
    sap.com  BP_ERP5***  1.0 SP14 (1000.1.0.14.0.20081002055226)  SAP AG  MAIN_ERP05VAL_C  20081212034140 
    sap.com  DI_CBS  7.00 SP16 (1000.7.00.16.0.20080610190329)  SAP AG  MAIN_APL70VAL_C  20081023181407 
    sap.com  BASETABLES  7.00 SP16 (1000.7.00.16.0.20080610120226)  SAP AG  SAP AG  20081023043731 
    sap.com  VCBASE  7.00 SP16 (1000.7.00.16.0.20080610174033)  SAP AG  SAP AG  20081023185709 
    sap.com  UWLJWF  7.00 SP16 (1000.7.00.16.0.20080610174028)  SAP AG  SAP AG  20081023185248 
    sap.com  SAP_ESS  603 SP3 (1000.603.0.3.0.20081014070904)  SAP AG  MAIN_ERP53VAL_C  20081112171059 
    sap.com  DI_CMS  7.00 SP16 (1000.7.00.16.0.20080610190340)  SAP AG  MAIN_APL70VAL_C  20081023182143 
    sap.com  DI_DTR  7.00 SP16 (1000.7.00.16.0.20080610190347)  SAP AG  MAIN_APL70VAL_C  20081023182244 
    sap.com  SAP-EU  7.00 SP16 (1000.7.00.16.0.20080610185714)  SAP AG  MAIN_APL70VAL_C  20081023184744 
    sap.com  WDEXTENSIONS  7.00 SP16 (1000.7.00.16.0.20080610185851)  SAP AG  MAIN_APL70VAL_C  20081023185819 
    sap.com  BP_ERP5COM  1.31 SP3 (1000.1.31.3.0.20081009055026)  SAP AG  MAIN_ERP53VAL_C  20081212034423 
    sap.com  BP_ERP5ESS  1.31 SP3 (1000.1.31.3.0.20081009055038)  SAP AG  MAIN_ERP53VAL_C  20081112093902 
    sap.com  BP_ERP5MSS  1.31 SP3 (1000.1.31.3.0.20081009055019)  SAP AG  MAIN_ERP53VAL_C  20081112093934 
    Development Components 
    Vendor  Name  Version  Provider  Location  Applied  Software Component 
    com.adobe  AdobeDocumentServices  null (800.20080218110307.448744)  Adobe Systems  Adobe Systems  20081023150832  null/null 
    com.adobe  AdobeDocumentServicesEjbClientLibrary  null (800.20080311023336.454270)  Adobe Systems  Adobe Systems  20081023055529  null/null 
    local  AdobeTest  null (0.2009.01.07.09.33.14)  LOKAL  LOKAL  20090107093343  null/null 
    sap.com  AE_Dictionary  null (2008.05.09.18.44.48)  SAP AG  localhost  20081025123337  null/null 
    sap.com  AEEAR  null (2008.06.04.17.00.19)  SAP AG  localhost  20081025124539  null/null 
    sap.com  AEEAR4WS  null (2007.12.08.00.49.25)  SAP AG  localhost  20081025125257  null/null 
    virsa.com  AEUME  null (20061108172028)  LOCAL  LOCAL  20081025123610  null/null 
    sap.com  AEWFCADApproversServiceWS_5_2  null (2006.11.03.12.29.46)  SAP AG  localhost  20081025134909  null/null 
    sap.com  AEWFExitServiceWS_5_2  null (2006.11.03.12.29.53)  SAP AG  localhost  20081025135241  null/null 
    sap.com  AEWorkFlowWSEAR  null (2006.10.05.19.44.15)  SAP AG  localhost  20081025124851  null/null 
    sap.com  caf/runtime/security/content  null (963383)  SAP AG  MAIN_APL70VAL_C  20080125135930  null/null 
    sap.com  ccume  null (20070326130037)  SAP AG  LOCAL  20081025100634  null/null 
    sap.com  com.sap.netweaver.bc.wf.db  null (7.0014.20071113170027.0000)  SAP AG  SAP AG  20081022134722  null/null 
    sap.com  com.sap.nw.kmc.readonly.sda  null (7.0016.20080601192937.0000)  SAP AG  SAP AG  20081023172911  null/null 
    sap.com  com.sap.nw.kmc.readonlymbean.sda  null (7.0014.20071111033708.0000)  SAP AG  SAP AG  20081022152210  null/null 
    sap.com  com.sap.portal.dotnet.framework  null (7.0015.20080215133942.0000)  SAP AG  SAP AG  20081023174516  null/null 
    sap.com  com.sap.portal.dotnet.services.systems  null (7.0012.20070426205038.0000)  SAP AG  SAP AG  20081022152649  null/null 
    sap.com  com.sap.portal.ep.version  null (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023170132  null/null 
    sap.com  com.sap.portal.pcd.gl  null (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134627  null/null 
    sap.com  com.sap.visualcomposer  null (7.0010.20061023110711.0000)  SAP AG  SAP AG  20081022152716  null/null 
    sap.com  com.sap.visualcomposer.BIKit  null (7.0010.20061023110711.0000)  SAP AG  SAP AG  20081022152726  null/null 
    sap.com  com.sapportals.supportplatform.portalplugins  null (7.0011.20070128005913.0000)  SAP AG  SAP AG  20081022134553  null/null 
    sap.com  com.sapportals.supportplatformSDA  null (7.0012.20070328121655.0000)  SAP AG  SAP AG  20080125132853  null/null 
    com.adobe  DataManagerService  null (800.20080206162625.174053)  Adobe Systems  Adobe Systems  20081023055543  null/null 
    com.adobe  DocumentServicesBinaries2  null (800.20080206135746.174053)  Adobe Systems  Adobe Systems  20081023055605  null/null 
    com.adobe  DocumentServicesConfiguration  null (800.20080131103506.445884)  Adobe Systems  Adobe Systems  20081023055618  null/null 
    com.adobe  DocumentServicesDestProtoService  null (800.20080218110307.448744)  Adobe Systems  Adobe Systems  20081023055631  null/null 
    com.adobe  DocumentServicesLibrary  null (800.20070220152325.141822)  Adobe Systems  Adobe Systems  20080125135329  null/null 
    com.adobe  DocumentServicesLicenseDatabase  null (705.20051005114147.242570)  Adobe Systems  Adobe Systems  20080125135337  null/null 
    com.adobe  DocumentServicesLicenseManager  null (800.20070306123954.374077)  Adobe Systems  Adobe Systems  20080125135811  null/null 
    com.adobe  DocumentServicesLicenseService  null (800.20080218110307.448744)  Adobe Systems  Adobe Systems  20081023055647  null/null 
    com.adobe  DocumentServicesLicenseSupportService  null (800.20080218110307.448744)  Adobe Systems  Adobe Systems  20081023055703  null/null 
    com.adobe  FontManagerService  null (800.20080218225745.174351)  Adobe Systems  Adobe Systems  20081023055743  null/null 
    sap.com  grc/ccappcomp  null (0.2008.05.27.18.05.23)  SAP AG  LOKAL  20081025102108  null/null 
    local  Janet  null (0.2008.12.03.17.21.32)  LOKAL  LOKAL  20081203182210  null/null 
    local  Kenton_demo2  null (0.2008.12.03.17.26.47)  LOKAL  LOKAL  20081203182719  null/null 
    sap.com  pcd_bizc_authoring  null (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022140711  null/null 
    com.adobe  PDFManipulation  null (800.20080218233546.174351)  Adobe Systems  Adobe Systems  20081023135602  null/null 
    ortho.sne.com  purchase  null (0.2008.11.06.16.01.28)  LOKAL  LOKAL  20081106170201  null/null 
    sap.com  REDictionary  null (2008.05.09.15.54.32)  SAP AG  localhost  20081025133551  null/null 
    sap.com  REEar  null (2008.06.03.13.01.48)  SAP AG  localhost  20081025134510  null/null 
    sap.com  tc/ads/grmg  null (7.0010.20061002104728.0000)  SAP AG  SAP AG  20080125135836  null/null 
    sap.com  tc/ads/lib  null (7.0016.20080423160501.0000)  SAP AG  SAP AG  20081023135753  null/null 
    sap.com  tc/di/sdic/srv  null (7.0013.20070328122858.0000)  SAP AG  SAP AG  20080125132852  null/null 
    sap.com  tc/km/frwk  null (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022152454  null/null 
    sap.com  tc/km/nonwdui  null (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022152457  null/null 
    sap.com  tc/kmc/coll/room  null (7.0012.20070426205038.0000)  SAP AG  SAP AG  20081022152632  null/null 
    com.adobe  TrustManagerService  null (800.20080218110307.448744)  Adobe Systems  Adobe Systems  20081023135624  null/null 
    sap.com  vc_ds_service  null (7.0015.20080215133942.0000)  SAP AG  SAP AG  20081023180353  null/null 
    sap.com  virsalib  null (2008.05.27.18.03.00)  SAP AG  localhost  20081025100427  null/null 
    com.adobe  XMLFormService  null (800.20080310103129.448310)  Adobe Systems  Adobe Systems  20081023135724  null/null 
    sap.com  com.sap.engine.jddischema  7.00 (7.0013.20070703112926.0000)  SAP AG  SAP AG  20080125132853  sap.com/BASETABLES 
    sap.com  com.sap.jms.jddi.schema  7.00 (7.0012.20070328121153.0000)  SAP AG  SAP AG  20080125132852  sap.com/BASETABLES 
    sap.com  com.sap.security.dbschema  7.00 (7.0016.20080604112616.0000)  SAP AG  SAP AG  20081023043720  sap.com/BASETABLES 
    sap.com  tc/TechSrv/XML_DAS_Schema  7.00 (7.0014.20071029094644.0000)  SAP AG  SAP AG  20080125132853  sap.com/BASETABLES 
    sap.com  bi/mmr/browser_ea  7.00 (7.0011.20070124085018.0000)  SAP AG  SAP AG  20080125133203  sap.com/BI_MMR 
    sap.com  bi/mmr/core  7.00 (7.0016.20080508113311.0000)  SAP AG  SAP AG  20081023135817  sap.com/BI_MMR 
    sap.com  bi/mmr/cwm_1.0_library  7.00 (7.0016.20080508113311.0000)  SAP AG  SAP AG  20081023135848  sap.com/BI_MMR 
    sap.com  bi/mmr/cwm_1.0_source  7.00 (7.0016.20080508113311.0000)  SAP AG  SAP AG  20081023150941  sap.com/BI_MMR 
    sap.com  bi/mmr/db  7.00 (7.0016.20080508113311.0000)  SAP AG  SAP AG  20081023135907  sap.com/BI_MMR 
    sap.com  bi/mmr/deployer  7.00 (7.0013.20070703112058.0000)  SAP AG  SAP AG  20080125133055  sap.com/BI_MMR 
    sap.com  bi/mmr/dictionary  7.00 (7.0011.20070124085018.0000)  SAP AG  SAP AG  20080125133059  sap.com/BI_MMR 
    sap.com  bi/mmr/jmi  7.00 (7.0011.20070124085018.0000)  SAP AG  SAP AG  20080125133059  sap.com/BI_MMR 
    sap.com  bi/mmr/mini_md350  7.00 (7.0016.20080508113311.0000)  SAP AG  SAP AG  20081023151013  sap.com/BI_MMR 
    sap.com  bi/mmr/miniMetaModel  7.00 (7.0016.20080508113311.0000)  SAP AG  SAP AG  20081023150957  sap.com/BI_MMR 
    sap.com  bi/mmr/performance  7.00 (7.0013.20070703112058.0000)  SAP AG  SAP AG  20080125133100  sap.com/BI_MMR 
    sap.com  com.sap.ip.bi.sdk  7.00 (7.0016.20080508113354.0000)  SAP AG  SAP AG  20081023151106  sap.com/BI_UDI 
    sap.com  com.sap.ip.bi.sdk.dac.connector.checkj  7.00 (7.0013.20070703112239.0000)  SAP AG  SAP AG  20080125133820  sap.com/BI_UDI 
    sap.com  com.sap.ip.bi.sdk.dac.connector.checko  7.00 (7.0013.20070703112239.0000)  SAP AG  SAP AG  20080125133824  sap.com/BI_UDI 
    sap.com  com.sap.ip.bi.sdk.dac.connector.checks  7.00 (7.0013.20070703112239.0000)  SAP AG  SAP AG  20080125133829  sap.com/BI_UDI 
    sap.com  com.sap.ip.bi.sdk.dac.connector.checkx  7.00 (7.0013.20070703112239.0000)  SAP AG  SAP AG  20080125133833  sap.com/BI_UDI 
    sap.com  com.sap.ip.bi.sdk.dac.connector.jdbc  7.00 (7.0014.20071002095102.0000)  SAP AG  SAP AG  20080125133818  sap.com/BI_UDI 
    sap.com  com.sap.ip.bi.sdk.dac.connector.odbo  7.00 (7.0013.20070703112239.0000)  SAP AG  SAP AG  20080125133822  sap.com/BI_UDI 
    sap.com  com.sap.ip.bi.sdk.dac.connector.odbodll  7.00 (7.0016.20080508113354.0000)  SAP AG  SAP AG  20081023135931  sap.com/BI_UDI 
    sap.com  com.sap.ip.bi.sdk.dac.connector.sapq  7.00 (7.0016.20080508113354.0000)  SAP AG  SAP AG  20081023151134  sap.com/BI_UDI 
    sap.com  com.sap.ip.bi.sdk.dac.connector.xmla  7.00 (7.0016.20080508113354.0000)  SAP AG  SAP AG  20081023151210  sap.com/BI_UDI 
    sap.com  com.sap.ip.bi.sdk.dac.connector.xmla.x  7.00 (7.0014.20071002095102.0000)  SAP AG  SAP AG  20080125133837  sap.com/BI_UDI 
    sap.com  com.sap.ip.bi.sdk.dac.olap  7.00 (7.0016.20080508113354.0000)  SAP AG  SAP AG  20081023151323  sap.com/BI_UDI 
    sap.com  com.sap.ip.bi.sdk.datasource.ds  7.00 (7.0015.20080123135010.0000)  SAP AG  SAP AG  20081023151413  sap.com/BI_UDI 
    sap.com  com.sap.ip.bi.sdk.datasource.fields  7.00 (7.0015.20080123135010.0000)  SAP AG  SAP AG  20081023151456  sap.com/BI_UDI 
    sap.com  com.sap.ip.bi.sdk.datasource.sync  7.00 (7.0015.20080123135010.0000)  SAP AG  SAP AG  20081023151544  sap.com/BI_UDI 
    sap.com  com.sap.ip.bi.sdk.datasource.sys  7.00 (7.0015.20080123135010.0000)  SAP AG  SAP AG  20081023151637  sap.com/BI_UDI 
    sap.com  com.sap.ip.bi.sdk.monitoring  7.00 (7.0013.20070703112239.0000)  SAP AG  SAP AG  20080125133909  sap.com/BI_UDI 
    sap.com  pcui_gp/bp_***  null (2644191)  SAP AG  MAIN_ERP05VAL_C  20081212034136  sap.com/BP_ERP5*** 
    sap.com  ep/bp_com  null (2645150)  SAP AG  MAIN_ERP53VAL_C  20081212034208  sap.com/BP_ERP5COM 
    sap.com  ep/bp_com11  null (2639780)  SAP AG  MAIN_ERP53VAL_C  20081212034214  sap.com/BP_ERP5COM 
    sap.com  ep/bp_com12  null (2645151)  SAP AG  MAIN_ERP53VAL_C  20081212034254  sap.com/BP_ERP5COM 
    sap.com  ep/bp_com13  null (2645152)  SAP AG  MAIN_ERP53VAL_C  20081212034302  sap.com/BP_ERP5COM 
    sap.com  ep/bp_combo  null (2645149)  SAP AG  MAIN_ERP53VAL_C  20081212034412  sap.com/BP_ERP5COM 
    sap.com  ep/bp_comro  null (2639777)  SAP AG  MAIN_ERP53VAL_C  20081212034420  sap.com/BP_ERP5COM 
    sap.com  ess/bp_ess  1.0 (2645153)  SAP AG  MAIN_ERP53VAL_C  20081112093833  sap.com/BP_ERP5ESS 
    sap.com  ess/bp_ess12  1.0 (2645155)  SAP AG  MAIN_ERP53VAL_C  20081112093840  sap.com/BP_ERP5ESS 
    sap.com  ess/bp_ess13  1.0 (2645156)  SAP AG  MAIN_ERP53VAL_C  20081112093850  sap.com/BP_ERP5ESS 
    sap.com  ess/bp_essrowo  null (2645154)  SAP AG  MAIN_ERP53VAL_C  20081112093858  sap.com/BP_ERP5ESS 
    sap.com  mss/bp_mss  1.0 (2645159)  SAP AG  MAIN_ERP53VAL_C  20081112093911  sap.com/BP_ERP5MSS 
    sap.com  mss/bp_mss13  1.0 (2645160)  SAP AG  MAIN_ERP53VAL_C  20081112093918  sap.com/BP_ERP5MSS 
    sap.com  mss/uwl_mss  1.0 (2639787)  SAP AG  MAIN_ERP53VAL_C  20081112093924  sap.com/BP_ERP5MSS 
    sap.com  mss/uwl_mss/tra  null (2639788)  SAP AG  MAIN_ERP53VAL_C  20081112093931  sap.com/BP_ERP5MSS 
    sap.com  mss/uwl_mss2  1.0 (2639791)  SAP AG  MAIN_ERP53VAL_C  20081112093809  sap.com/BP_ERP5MSS 
    sap.com  mss/uwl_mss2/tra  1.0 (2639790)  SAP AG  MAIN_ERP53VAL_C  20081112093814  sap.com/BP_ERP5MSS 
    sap.com  tc/sl.ut.content.erp.bp_erp  null (2639754)  SAP AG  MAIN_ERP53VAL_C  20081212034046  sap.com/BPERP_TECINF 
    sap.com  caf/bw/adapter/assembly  7.00 (1497771)  SAP AG  MAIN_APL70VAL_C  20080125135839  sap.com/CAF 
    sap.com  caf/bw/ear  7.00 (1497856)  SAP AG  MAIN_APL70VAL_C  20080125140019  sap.com/CAF 
    sap.com  caf/core  7.00 (1587306)  SAP AG  MAIN_APL70VAL_C  20081023160259  sap.com/CAF 
    sap.com  caf/core/dict  7.00 (964586)  SAP AG  MAIN_APL70VAL_C  20080125135438  sap.com/CAF 
    sap.com  caf/core/gp/facade/backgroundco/ear  7.00 (1220228)  SAP AG  MAIN_APL70VAL_C  20080125140220  sap.com/CAF 
    sap.com  caf/core/metadata  7.00 (1586814)  SAP AG  MAIN_APL70VAL_C  20081023155527  sap.com/CAF 
    sap.com  caf/km.proxies  7.00 (1528033)  SAP AG  MAIN_APL70VAL_C  20080125135913  sap.com/CAF 
    sap.com  caf/km.proxyejbs.ddic  7.00 (963389)  SAP AG  MAIN_APL70VAL_C  20080125135439  sap.com/CAF 
    sap.com  caf/metamodel  7.00 (1586531)  SAP AG  MAIN_APL70VAL_C  20081023155547  sap.com/CAF 
    sap.com  caf/metamodel/lib  7.00 (1586813)  SAP AG  MAIN_APL70VAL_C  20081023140236  sap.com/CAF 
    sap.com  caf/metamodel/lib/new  7.00 (1496420)  SAP AG  MAIN_APL70VAL_C  20080125135441  sap.com/CAF 
    sap.com  caf/mp/mmr/adapter  7.00 (1533885)  SAP AG  MAIN_APL70VAL_C  20080125135446  sap.com/CAF 
    sap.com  caf/mp/mmr/adapter/ear  7.00 (1220148)  SAP AG  MAIN_APL70VAL_C  20080125135922  sap.com/CAF 
    sap.com  caf/mp/mmr/reader  7.00 (1533844)  SAP AG  MAIN_APL70VAL_C  20080125135444  sap.com/CAF 
    sap.com  caf/mp_mmr_bridge  7.00 (1533886)  SAP AG  MAIN_APL70VAL_C  20080125135924  sap.com/CAF 
    sap.com  caf/mp_mmr_bridge/ddic  7.00 (963396)  SAP AG  MAIN_APL70VAL_C  20080125135442  sap.com/CAF 
    sap.com  caf/runtime/api/lib  7.00 (1533800)  SAP AG  MAIN_APL70VAL_C  20080125135442  sap.com/CAF 
    sap.com  caf/runtime/api/lib/new  7.00 (1496418)  SAP AG  MAIN_APL70VAL_C  20080125135443  sap.com/CAF 
    sap.com  caf/runtime/connectivity  7.00 (1533843)  SAP AG  MAIN_APL70VAL_C  20080125135445  sap.com/CAF 
    sap.com  caf/runtime/connectivity/base  7.00 (1533828)  SAP AG  MAIN_APL70VAL_C  20080125135443  sap.com/CAF 
    sap.com  caf/runtime/connectivity/ddic  7.00 (963382)  SAP AG  MAIN_APL70VAL_C  20080125135502  sap.com/CAF 
    sap.com  caf/runtime/connectivity/impl  7.00 (1552649)  SAP AG  MAIN_APL70VAL_C  20081023140249  sap.com/CAF 
    sap.com  caf/runtime/dict  7.00 (963385)  SAP AG  MAIN_APL70VAL_C  20080125135506  sap.com/CAF 
    sap.com  caf/runtime/ear  7.00 (1587269)  SAP AG  MAIN_APL70VAL_C  20081023155756  sap.com/CAF 
    sap.com  caf/runtime/exceldataimport  7.00 (1496957)  SAP AG  MAIN_APL70VAL_C  20080125135925  sap.com/CAF 
    sap.com  caf/runtime/monitoring/ear  7.00 (1497773)  SAP AG  MAIN_APL70VAL_C  20080125135928  sap.com/CAF 
    sap.com  caf/runtime/uicoupling/api/lib  7.00 (1530461)  SAP AG  MAIN_APL70VAL_C  20080125135932  sap.com/CAF 
    sap.com  caf/tc  7.00 (1587286)  SAP AG  MAIN_APL70VAL_C  20081023160130  sap.com/CAF 
    sap.com  caf/tc/dictionary  7.00 (963672)  SAP AG  MAIN_APL70VAL_C  20080125135507  sap.com/CAF 
    sap.com  caf/tc/metadata  7.00 (1586812)  SAP AG  MAIN_APL70VAL_C  20081023160323  sap.com/CAF 
    sap.com  caf/tc/webdynpro  7.00 (963849)  SAP AG  MAIN_APL70VAL_C  20080125140223  sap.com/CAF 
    sap.com  caf/UI/cladmin  7.00 (1078363)  SAP AG  MAIN_APL70VAL_C  20080125140049  sap.com/CAF 
    sap.com  caf/UI/configbrowser  7.00 (1220365)  SAP AG  MAIN_APL70VAL_C  20080125140051  sap.com/CAF 
    sap.com  caf/UI/configuration  7.00 (1534024)  SAP AG  MAIN_APL70VAL_C  20080125140015  sap.com/CAF 
    sap.com  caf/UI/content/transport  7.00 (1220380)  SAP AG  MAIN_APL70VAL_C  20080125140054  sap.com/CAF 
    sap.com  caf/UI/dynattr/admin  7.00 (1220383)  SAP AG  MAIN_APL70VAL_C  20080125140057  sap.com/CAF 
    sap.com  caf/UI/km/admin  7.00 (964605)  SAP AG  MAIN_APL70VAL_C  20080125140059  sap.com/CAF 
    sap.com  caf/UI/km/cleanjobadmin  7.00 (1497987)  SAP AG  MAIN_APL70VAL_C  20080125140101  sap.com/CAF 
    sap.com  caf/UI/km/configcheck  7.00 (1590301)  SAP AG  MAIN_APL70VAL_C  20081023160146  sap.com/CAF 
    sap.com  caf/UI/ptn/attachments  7.00 (1590296)  SAP AG  MAIN_APL70VAL_C  20081023155849  sap.com/CAF 
    sap.com  caf/UI/ptn/authorization  7.00 (1590293)  SAP AG  MAIN_APL70VAL_C  20081023160056  sap.com/CAF 
    sap.com  caf/UI/ptn/classification  7.00 (1590298)  SAP AG  MAIN_APL70VAL_C  20081023155905  sap.com/CAF 
    sap.com  caf/UI/ptn/collaboration  7.00 (1590297)  SAP AG  MAIN_APL70VAL_C  20081023155922  sap.com/CAF 
    sap.com  caf/UI/ptn/common  7.00 (1534033)  SAP AG  MAIN_APL70VAL_C  20080125140046  sap.com/CAF 
    sap.com  caf/UI/ptn/flextree  7.00 (1587367)  SAP AG  MAIN_APL70VAL_C  20081023155330  sap.com/CAF 
    sap.com  caf/UI/ptn/generalconfig  7.00 (1220375)  SAP AG  MAIN_APL70VAL_C  20080125140110  sap.com/CAF 
    sap.com  caf/UI/ptn/historylog  7.00 (1587374)  SAP AG  MAIN_APL70VAL_C  20081023155347  sap.com/CAF 
    sap.com  caf/UI/ptn/kmfileselect  7.00 (1557293)  SAP AG  MAIN_APL70VAL_C  20081023155404  sap.com/CAF 
    sap.com  caf/UI/ptn/macroeditor  7.00 (964310)  SAP AG  MAIN_APL70VAL_C  20080125140117  sap.com/CAF 
    sap.com  caf/UI/ptn/navigation  7.00 (1587392)  SAP AG  MAIN_APL70VAL_C  20081023155425  sap.com/CAF 
    sap.com  caf/UI/ptn/objectbrowser  7.00 (1587369)  SAP AG  MAIN_APL70VAL_C  20081023155813  sap.com/CAF 
    sap.com  caf/UI/ptn/objecteditor  7.00 (1590133)  SAP AG  MAIN_APL70VAL_C  20081023155831  sap.com/CAF 
    sap.com  caf/UI/ptn/objectselector  7.00 (1587373)  SAP AG  MAIN_APL70VAL_C  20081023155940  sap.com/CAF 
    sap.com  caf/UI/ptn/propedit  7.00 (1590295)  SAP AG  MAIN_APL70VAL_C  20081023160001  sap.com/CAF 
    sap.com  caf/UI/ptn/proxycomp  7.00 (1587377)  SAP AG  MAIN_APL70VAL_C  20081023155441  sap.com/CAF 
    sap.com  caf/UI/ptn/reporting  7.00 (1587366)  SAP AG  MAIN_APL70VAL_C  20081023155457  sap.com/CAF 
    sap.com  caf/UI/ptn/searchbar  7.00 (1587368)  SAP AG  MAIN_APL70VAL_C  20081023160018  sap.com/CAF 
    sap.com  caf/UI/ptn/userassignment  7.00 (1557291)  SAP AG  MAIN_APL70VAL_C  20081023160035  sap.com/CAF 
    sap.com  caf/UI/repositorybackup  7.00 (1534050)  SAP AG  MAIN_APL70VAL_C  20080125140155  sap.com/CAF 
    sap.com  caf/UI/servicebrowser  7.00 (1534047)  SAP AG  MAIN_APL70VAL_C  20080125140158  sap.com/CAF 
    sap.com  caf/UI/servicecustomization  7.00 (964309)  SAP AG  MAIN_APL70VAL_C  20080125140200  sap.com/CAF 
    sap.com  caf/UI/subscriptions  7.00 (964301)  SAP AG  MAIN_APL70VAL_C  20080125140203  sap.com/CAF 
    sap.com  caf/UI/testlauncher  7.00 (964302)  SAP AG  MAIN_APL70VAL_C  20080125140205  sap.com/CAF 
    sap.com  caf/UI/typeeditor  7.00 (1497982)  SAP AG  MAIN_APL70VAL_C  20080125140208  sap.com/CAF 
    sap.com  caf/core/gp/bo/lib  7.00 (964273)  SAP AG  MAIN_APL70VAL_C  20081022155634  sap.com/CAF-KM 
    sap.com  caf/core/gp/container/backgroundco/ear  7.00 (1587345)  SAP AG  MAIN_APL70VAL_C  20081023184808  sap.com/CAF-KM 
    sap.com  caf/core/gp/servicelocator/lib  7.00 (964251)  SAP AG  MAIN_APL70VAL_C  20081022155629  sap.com/CAF-KM 
    sap.com  caf/core/gp/ui/backgroundco/admin  7.00 (964347)  SAP AG  MAIN_APL70VAL_C  20081022155706  sap.com/CAF-KM 
    sap.com  caf/core/gp/ui/visibleco/admin  7.00 (964299)  SAP AG  MAIN_APL70VAL_C  20081022155715  sap.com/CAF-KM 
    sap.com  caf/core/gp/ui/visibleco/container  7.00 (1534120)  SAP AG  MAIN_APL70VAL_C  20081022155728  sap.com/CAF-KM 
    sap.com  caf/gp/ui/ptn/docgen  7.00 (1534043)  SAP AG  MAIN_APL70VAL_C  20081022155737  sap.com/CAF-KM 
    sap.com  caf/km.ep.kmcollaborationsvc  7.00 (1586796)  SAP AG  MAIN_APL70VAL_C  20081023184826  sap.com/CAF-KM 
    sap.com  caf/km.ep.kmindexsearchsvc  7.00 (1586797)  SAP AG  MAIN_APL70VAL_C  20081023184844  sap.com/CAF-KM 
    sap.com  caf/km.ep.kmnodesvc  7.00 (1586798)  SAP AG  MAIN_APL70VAL_C  20081023184910  sap.com/CAF-KM 
    sap.com  caf/km.ep.kmnotifsvc  7.00 (1586799)  SAP AG  MAIN_APL70VAL_C  20081023184928  sap.com/CAF-KM 
    sap.com  caf/km.ep.kmtaskservice  7.00 (1530459)  SAP AG  MAIN_APL70VAL_C  20081022155924  sap.com/CAF-KM 
    sap.com  caf/km.ep.propmetadatasvc  7.00 (1528594)  SAP AG  MAIN_APL70VAL_C  20081022155928  sap.com/CAF-KM 
    sap.com  caf/km.ep.repmanager  7.00 (1586520)  SAP AG  MAIN_APL70VAL_C  20081023184946  sap.com/CAF-KM 
    sap.com  caf/km.ep.uploadsvc  7.00 (1586918)  SAP AG  MAIN_APL70VAL_C  20081023185004  sap.com/CAF-KM 
    sap.com  caf/um/metadata/actions  7.00 (1077265)  SAP AG  MAIN_APL70VAL_C  20080125140226  sap.com/CAF-UM 
    sap.com  caf/um/metadata/api  7.00 (1496398)  SAP AG  MAIN_APL70VAL_C  20080125135508  sap.com/CAF-UM 
    sap.com  caf/um/metadata/content  7.00 (1497172)  SAP AG  MAIN_APL70VAL_C  20080125140254  sap.com/CAF-UM 
    sap.com  caf/um/metadata/example  7.00 (963657)  SAP AG  MAIN_APL70VAL_C  20080125140256  sap.com/CAF-UM 
    sap.com  caf/um/metadata/imp  7.00 (1528581)  SAP AG  MAIN_APL70VAL_C  20080125135509  sap.com/CAF-UM 
    sap.com  caf/um/metadata/testwd  7.00 (963659)  SAP AG  MAIN_APL70VAL_C  20080125140259  sap.com/CAF-UM 
    sap.com  caf/um/relgroups/admin  7.00 (963666)  SAP AG  MAIN_APL70VAL_C  20080125140301  sap.com/CAF-UM 
    sap.com  caf/um/relgroups/api  7.00 (1528016)  SAP AG  MAIN_APL70VAL_C  20080125135509  sap.com/CAF-UM 
    sap.com  caf/um/relgroups/ddic  7.00 (963377)  SAP AG  MAIN_APL70VAL_C  20080125135511  sap.com/CAF-UM 
    sap.com  caf/um/relgroups/imp  7.00 (1586921)  SAP AG  MAIN_APL70VAL_C  20081023135947  sap.com/CAF-UM 
    sap.com  caf/um/relgroups/test  7.00 (963945)  SAP AG  MAIN_APL70VAL_C  20080125140303  sap.com/CAF-UM 
    sap.com  com.sap.engine.client  7.00 (7.0016.20080609135614.0000)  SAP AG  SAP AG  20081023043821  sap.com/CORE-TOOLS 
    sap.com  com.sap.engine.configtool  7.00 (7.0016.20080609135614.0000)  SAP AG  SAP AG  20081023043836  sap.com/CORE-TOOLS 
    sap.com  com.sap.engine.deploytool  7.00 (7.0016.20080609135614.0000)  SAP AG  SAP AG  20081023043903  sap.com/CORE-TOOLS 
    sap.com  com.sap.engine.visualadmin  7.00 (7.0016.20080609135614.0000)  SAP AG  SAP AG  20081023043946  sap.com/CORE-TOOLS 
    sap.com  IAIKSecurityFS  7.00 (7.0016.20080508113401.0000)  SAP AG  SAP AG  20081023043742  sap.com/CORE-TOOLS 
    sap.com  tc/sapinst/fs  7.00 (7.0016.20080508103148.0000)  SAP AG  SAP AG  20081023044008  sap.com/CORE-TOOLS 
    sap.com  tc/template_config_tool  7.00 (7.0016.20050509130405.0000)  SAP AG  SAP AG  20081023044023  sap.com/CORE-TOOLS 
    sap.com  tc.CBS.Appl  7.00 (1552590)  SAP AG  MAIN_APL70VAL_C  20081023181333  sap.com/DI_CBS 
    sap.com  tc.CBS.CommonPart  7.00 (1586926)  SAP AG  MAIN_APL70VAL_C  20081023165510  sap.com/DI_CBS 
    sap.com  tc.CBS.DBDefs  7.00 (1496422)  SAP AG  MAIN_APL70VAL_C  20081022162102  sap.com/DI_CBS 
    sap.com  tc.CBS.Service  7.00 (1552623)  SAP AG  MAIN_APL70VAL_C  20081023165655  sap.com/DI_CBS 
    sap.com  tc.CBS.WebUI  7.00 (1497309)  SAP AG  MAIN_APL70VAL_C  20081022163144  sap.com/DI_CBS 
    sap.com  tc/di/cbs/jlinwd  7.00 (1497311)  SAP AG  MAIN_APL70VAL_C  20081022163154  sap.com/DI_CBS 
    sap.com  tc/cts/appl  7.00 (1552405)  SAP AG  MAIN_APL70VAL_C  20081023182128  sap.com/DI_CMS 
    sap.com  tc/SL/CMS/cleanuptool  7.00 (1552404)  SAP AG  MAIN_APL70VAL_C  20081023165718  sap.com/DI_CMS 
    sap.com  tc/SL/CMS/config/dbschema  7.00 (1496433)  SAP AG  MAIN_APL70VAL_C  20081022162247  sap.com/DI_CMS 
    sap.com  tc/SL/CMS/cvers/proxy  7.00 (1496430)  SAP AG  MAIN_APL70VAL_C  20081022163354  sap.com/DI_CMS 
    sap.com  tc/SL/CMS/PCS  7.00 (1587073)  SAP AG  MAIN_APL70VAL_C  20081023181944  sap.com/DI_CMS 
    sap.com  tc/SL/CMS/PCS/DBSchema  7.00 (1528057)  SAP AG  MAIN_APL70VAL_C  20081022162231  sap.com/DI_CMS 
    sap.com  tc/SL/CMS/TCSEar  7.00 (1530540)  SAP AG  MAIN_APL70VAL_C  20081022163344  sap.com/DI_CMS 
    sap.com  tc/SL/CMS/tsawebui  7.00 (1552677)  SAP AG  MAIN_APL70VAL_C  20081023182049  sap.com/DI_CMS 
    sap.com  tc/SL/CMS/WebUI  7.00 (1552678)  SAP AG  MAIN_APL70VAL_C  20081023182030  sap.com/DI_CMS 
    sap.com  tc/SL/diindex  7.00 (1497556)  SAP AG  MAIN_APL70VAL_C  20081022164212  sap.com/DI_CMS 
    sap.com  tc/dtr/console/sda  7.00 (1586999)  SAP AG  MAIN_APL70VAL_C  20081023165743  sap.com/DI_DTR 
    sap.com  tc/dtr/dbschema  7.00 (1496437)  SAP AG  MAIN_APL70VAL_C  20081022162320  sap.com/DI_DTR 
    sap.com  tc/dtr/enterpriseapp  7.00 (1587256)  SAP AG  MAIN_APL70VAL_C  20081023182229  sap.com/DI_DTR 
    sap.com  tc/jdi/heartbeat/enterpriseapp  7.00 (1497030)  SAP AG  MAIN_APL70VAL_C  20081022164420  sap.com/DI_DTR 
    sap.com  com.sap.dqe.dbcontent  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134249  sap.com/EP-PSERV 
    sap.com  com.sap.dqe.dbschema  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134248  sap.com/EP-PSERV 
    sap.com  com.sap.pct.tools.devstudio  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134251  sap.com/EP-PSERV 
    sap.com  com.sap.portal.activitydatacollector  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023165759  sap.com/EP-PSERV 
    sap.com  com.sap.portal.activityreport  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023165817  sap.com/EP-PSERV 
    sap.com  com.sap.portal.activityreport.db  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023165835  sap.com/EP-PSERV 
    sap.com  com.sap.portal.admin.editorframework  7.00 (7.0015.20080215133942.0000)  SAP AG  SAP AG  20081023165851  sap.com/EP-PSERV 
    sap.com  com.sap.portal.admin.multitenant  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023165908  sap.com/EP-PSERV 
    sap.com  com.sap.portal.admin.portalservermonitor  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134301  sap.com/EP-PSERV 
    sap.com  com.sap.portal.admin.util  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023165925  sap.com/EP-PSERV 
    sap.com  com.sap.portal.appdesigner.advancedops  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023165942  sap.com/EP-PSERV 
    sap.com  com.sap.portal.appdesigner.advancopsapi  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023165959  sap.com/EP-PSERV 
    sap.com  com.sap.portal.appdesigner.pcmobjwiztool  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023170017  sap.com/EP-PSERV 
    sap.com  com.sap.portal.cnf.ws.ConfigurationWSEar  7.00 (7.0015.20080215133942.0000)  SAP AG  SAP AG  20081023182318  sap.com/EP-PSERV 
    sap.com  com.sap.portal.common.activation  7.00 (7.0015.20080215133942.0000)  SAP AG  SAP AG  20081023170034  sap.com/EP-PSERV 
    sap.com  com.sap.portal.common.ppse  7.00 (7.0012.20070426205038.0000)  SAP AG  SAP AG  20081022134310  sap.com/EP-PSERV 
    sap.com  com.sap.portal.connectors.SessionManager  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134311  sap.com/EP-PSERV 
    sap.com  com.sap.portal.connectors.ws  7.00 (7.0015.20080215133942.0000)  SAP AG  SAP AG  20081023182339  sap.com/EP-PSERV 
    sap.com  com.sap.portal.connectors.ws.system  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134314  sap.com/EP-PSERV 
    sap.com  com.sap.portal.content.export.gc  7.00 (7.0014.20071112134627.0000)  SAP AG  SAP AG  20081022134316  sap.com/EP-PSERV 
    sap.com  com.sap.portal.contentfetching  7.00 (7.0014.20071112134549.0000)  SAP AG  SAP AG  20081022134317  sap.com/EP-PSERV 
    sap.com  com.sap.portal.contentmigration  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023170052  sap.com/EP-PSERV 
    sap.com  com.sap.portal.design.portaldesigndata  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023170113  sap.com/EP-PSERV 
    sap.com  com.sap.portal.epsolman  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134324  sap.com/EP-PSERV 
    sap.com  com.sap.portal.fpn  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023170149  sap.com/EP-PSERV 
    sap.com  com.sap.portal.genericcreatorapi  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134327  sap.com/EP-PSERV 
    sap.com  com.sap.portal.ivs.contentcreation.utils  7.00 (7.0012.20070426205038.0000)  SAP AG  SAP AG  20081022134329  sap.com/EP-PSERV 
    sap.com  com.sap.portal.ivs.global.admin.consover  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134330  sap.com/EP-PSERV 
    sap.com  com.sap.portal.ivs.global.admin.prodckpt  7.00 (7.0014.20071112134627.0000)  SAP AG  SAP AG  20081022134331  sap.com/EP-PSERV 
    sap.com  com.sap.portal.ivs.sitesemanticsapi  7.00 (7.0013.20070808101344.0000)  SAP AG  SAP AG  20081022134332  sap.com/EP-PSERV 
    sap.com  com.sap.portal.jdbcdrivers  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022140601  sap.com/EP-PSERV 
    sap.com  com.sap.portal.logviewer620  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134334  sap.com/EP-PSERV 
    sap.com  com.sap.portal.namingconventions  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023170206  sap.com/EP-PSERV 
    sap.com  com.sap.portal.nav.ws.NavigationWSEar  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023182416  sap.com/EP-PSERV 
    sap.com  com.sap.portal.nav.ws.navwshelperservice  7.00 (7.0014.20071210113331.0000)  SAP AG  SAP AG  20081022134337  sap.com/EP-PSERV 
    sap.com  com.sap.portal.navigation.helperservices  7.00 (7.0011.20070128005913.0000)  SAP AG  SAP AG  20081022134338  sap.com/EP-PSERV 
    sap.com  com.sap.portal.navigation.shorturlsDB  7.00 (7.0014.20071210113331.0000)  SAP AG  SAP AG  20081022134340  sap.com/EP-PSERV 
    sap.com  com.sap.portal.pb.services  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134341  sap.com/EP-PSERV 
    sap.com  com.sap.portal.pcd.admintools.export  7.00 (7.0015.20080215133942.0000)  SAP AG  SAP AG  20081023170225  sap.com/EP-PSERV 
    sap.com  com.sap.portal.pcd.admintools.gl  7.00 (7.0013.20070906050444.0000)  SAP AG  SAP AG  20081022134344  sap.com/EP-PSERV 
    sap.com  com.sap.portal.pcd.admintools.import  7.00 (7.0015.20080215133942.0000)  SAP AG  SAP AG  20081023170241  sap.com/EP-PSERV 
    sap.com  com.sap.portal.pcd.admintools.lockadmin  7.00 (7.0015.20080215133942.0000)  SAP AG  SAP AG  20081023170259  sap.com/EP-PSERV 
    sap.com  com.sap.portal.pcd.admintools.pcdtools  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134349  sap.com/EP-PSERV 
    sap.com  com.sap.portal.pcd.admintools.roleeditor  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023170316  sap.com/EP-PSERV 
    sap.com  com.sap.portal.pcd.configuration  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134352  sap.com/EP-PSERV 
    sap.com  com.sap.portal.pcd.customercontent  7.00 (7.0015.20080215133942.0000)  SAP AG  SAP AG  20081023170336  sap.com/EP-PSERV 
    sap.com  com.sap.portal.pcd.initialcontent  7.00 (7.0015.20080215133942.0000)  SAP AG  SAP AG  20081023170402  sap.com/EP-PSERV 
    sap.com  com.sap.portal.pcd.rolemigration  7.00 (7.0015.20080215133942.0000)  SAP AG  SAP AG  20081023170421  sap.com/EP-PSERV 
    sap.com  com.sap.portal.pcd.rolemigrationcomp  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023170437  sap.com/EP-PSERV 
    sap.com  com.sap.portal.pcd.rolenavigationservice  7.00 (7.0011.20070128005913.0000)  SAP AG  SAP AG  20081022134400  sap.com/EP-PSERV 
    sap.com  com.sap.portal.pcd.roles.r3authadmin  7.00 (7.0015.20080215133942.0000)  SAP AG  SAP AG  20081023170453  sap.com/EP-PSERV 
    sap.com  com.sap.portal.pcd.roleservice  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023170510  sap.com/EP-PSERV 
    sap.com  com.sap.portal.pcd.softcachebrowser  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134405  sap.com/EP-PSERV 
    sap.com  com.sap.portal.pcd.translation  7.00 (7.0014.20071210113331.0000)  SAP AG  SAP AG  20081022134406  sap.com/EP-PSERV 
    sap.com  com.sap.portal.pcd.transportapplication  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023170528  sap.com/EP-PSERV 
    sap.com  com.sap.portal.pcd.zorkservice  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134409  sap.com/EP-PSERV 
    sap.com  com.sap.portal.pcmbuilderservice  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134411  sap.com/EP-PSERV 
    sap.com  com.sap.portal.reportingframework  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023170544  sap.com/EP-PSERV 
    sap.com  com.sap.portal.services.api  7.00 (7.0014.20071112134549.0000)  SAP AG  SAP AG  20081022140628  sap.com/EP-PSERV 
    sap.com  com.sap.portal.services.internal.api  7.00 (7.0012.20070426205038.0000)  SAP AG  SAP AG  20081022140631  sap.com/EP-PSERV 
    sap.com  com.sap.portal.sl.modifiers  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134413  sap.com/EP-PSERV 
    sap.com  com.sap.portal.statelesssessionservice  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134414  sap.com/EP-PSERV 
    sap.com  com.sap.portal.strucfilterservice  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134416  sap.com/EP-PSERV 
    sap.com  com.sap.portal.systemlandscapeoverview  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023170600  sap.com/EP-PSERV 
    sap.com  com.sap.portal.textconfiguration  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134419  sap.com/EP-PSERV 
    sap.com  com.sap.portal.util.serverfilebrowser  7.00 (7.0012.20070426205038.0000)  SAP AG  SAP AG  20081022134420  sap.com/EP-PSERV 
    sap.com  com.sap.portal.util.threadreporting  7.00 (7.0015.20080215133942.0000)  SAP AG  SAP AG  20081023170616  sap.com/EP-PSERV 
    sap.com  com.sap.portal.wdintegrator  7.00 (7.0014.20071210113331.0000)  SAP AG  SAP AG  20081022134423  sap.com/EP-PSERV 
    sap.com  com.sap.security.usermapping.par  7.00 (7.0015.20080215133942.0000)  SAP AG  SAP AG  20081023170633  sap.com/EP-PSERV 
    sap.com  com.sap.sp.portalplugins  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134426  sap.com/EP-PSERV 
    sap.com  com.sapportals.appdesigner.appdesfrmwrk  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023170650  sap.com/EP-PSERV 
    sap.com  com.sapportals.appdesigner.concatalogapi  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023170711  sap.com/EP-PSERV 
    sap.com  com.sapportals.appdesigner.configapi  7.00 (7.0015.20080215133942.0000)  SAP AG  SAP AG  20081023170733  sap.com/EP-PSERV 
    sap.com  com.sapportals.appdesigner.configuration  7.00 (7.0015.20080215133942.0000)  SAP AG  SAP AG  20081023170752  sap.com/EP-PSERV 
    sap.com  com.sapportals.appdesigner.contcatalog  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023170817  sap.com/EP-PSERV 
    sap.com  com.sapportals.appdesigner.dltracerapi  7.00 (7.0013.20070808101344.0000)  SAP AG  SAP AG  20081022134432  sap.com/EP-PSERV 
    sap.com  com.sapportals.appdesigner.frameworkapi  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134433  sap.com/EP-PSERV 
    sap.com  com.sapportals.appdesigner.pageeditor  7.00 (7.0014.20071112134549.0000)  SAP AG  SAP AG  20081022134435  sap.com/EP-PSERV 
    sap.com  com.sapportals.backwardscompatibility  7.00 (7.0012.20070426205038.0000)  SAP AG  SAP AG  20081022134436  sap.com/EP-PSERV 
    sap.com  com.sapportals.bidi.rtl  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134437  sap.com/EP-PSERV 
    sap.com  com.sapportals.builder.defaultlayouts  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134439  sap.com/EP-PSERV 
    sap.com  com.sapportals.builder.pagebuilder  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023170834  sap.com/EP-PSERV 
    sap.com  com.sapportals.builder.pagebuilder.utils  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023170850  sap.com/EP-PSERV 
    sap.com  com.sapportals.builder.portallayouts  7.00 (7.0013.20070906050444.0000)  SAP AG  SAP AG  20081022134443  sap.com/EP-PSERV 
    sap.com  com.sapportals.common  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023170908  sap.com/EP-PSERV 
    sap.com  com.sapportals.commonservices  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134446  sap.com/EP-PSERV 
    sap.com  com.sapportals.connectorframework.websrv  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134448  sap.com/EP-PSERV 
    sap.com  com.sapportals.connectors.bi.systems  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134449  sap.com/EP-PSERV 
    sap.com  com.sapportals.connectors.database  7.00 (7.0014.20071111033708.0000)  SAP AG  SAP AG  20081022140637  sap.com/EP-PSERV 
    sap.com  com.sapportals.connectors.jdbc.system  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134451  sap.com/EP-PSERV 
    sap.com  com.sapportals.connectors.sap  7.00 (7.0014.20071112134627.0000)  SAP AG  SAP AG  20081022140643  sap.com/EP-PSERV 
    sap.com  com.sapportals.connectors.sap.authtrace  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134452  sap.com/EP-PSERV 
    sap.com  com.sapportals.connectors.sap.system  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134453  sap.com/EP-PSERV 
    sap.com  com.sapportals.datadirect  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022140646  sap.com/EP-PSERV 
    sap.com  com.sapportals.designservices  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023170925  sap.com/EP-PSERV 
    sap.com  com.sapportals.designtools  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023170943  sap.com/EP-PSERV 
    sap.com  com.sapportals.dqe.admintools  7.00 (7.0014.20071112134627.0000)  SAP AG  SAP AG  20081022134458  sap.com/EP-PSERV 
    sap.com  com.sapportals.dqe.beans  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022140655  sap.com/EP-PSERV 
    sap.com  com.sapportals.dqe.jdbcdriver.lib  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022140658  sap.com/EP-PSERV 
    sap.com  com.sapportals.dqe.service  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134500  sap.com/EP-PSERV 
    sap.com  com.sapportals.httpconnectivity  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023171000  sap.com/EP-PSERV 
    sap.com  com.sapportals.iviewserver.appintegrate  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023171017  sap.com/EP-PSERV 
    sap.com  com.sapportals.iviewserver.clientservice  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023171034  sap.com/EP-PSERV 
    sap.com  com.sapportals.iviewserver.gencreator  7.00 (7.0015.20080215133942.0000)  SAP AG  SAP AG  20081023171050  sap.com/EP-PSERV 
    sap.com  com.sapportals.iviewserver.global  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023171106  sap.com/EP-PSERV 
    sap.com  com.sapportals.iviewserver.http  7.00 (7.0013.20070808101344.0000)  SAP AG  SAP AG  20081022134509  sap.com/EP-PSERV 
    sap.com  com.sapportals.iviewserver.iviewapi  7.00 (7.0013.20070808101344.0000)  SAP AG  SAP AG  20081022134511  sap.com/EP-PSERV 
    sap.com  com.sapportals.iviewserver.landscapeapi  7.00 (7.0015.20080215133942.0000)  SAP AG  SAP AG  20081023171121  sap.com/EP-PSERV 
    sap.com  com.sapportals.iviewserver.masseditor  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134513  sap.com/EP-PSERV 
    sap.com  com.sapportals.iviewserver.portalpcmapi  7.00 (7.0015.20080215133942.0000)  SAP AG  SAP AG  20081023171137  sap.com/EP-PSERV 
    sap.com  com.sapportals.iviewserver.semanticapp  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023171154  sap.com/EP-PSERV 
    sap.com  com.sapportals.iviewserver.wsrp  7.00 (7.0016.20080601192937.0000)  SAP AG  SAP AG  20081023171211  sap.com/EP-PSERV 
    sap.com  com.sapportals.nav.defaultheaderiviews  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023171226  sap.com/EP-PSERV 
    sap.com  com.sapportals.nav.defaultnaviviews  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023171243  sap.com/EP-PSERV 
    sap.com  com.sapportals.navigation.mimeservice  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134523  sap.com/EP-PSERV 
    sap.com  com.sapportals.navigation.navservice  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023171258  sap.com/EP-PSERV 
    sap.com  com.sapportals.navigation.navserviceapi  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023171313  sap.com/EP-PSERV 
    sap.com  com.sapportals.navigation.portallauncher  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023171329  sap.com/EP-PSERV 
    sap.com  com.sapportals.portaladmin.defaultwizard  7.00 (7.0015.20080215133942.0000)  SAP AG  SAP AG  20081023171345  sap.com/EP-PSERV 
    sap.com  com.sapportals.portaladmin.editorselect  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023171400  sap.com/EP-PSERV 
    sap.com  com.sapportals.portaladmin.permeditor  7.00 (7.0015.20080215133942.0000)  SAP AG  SAP AG  20081023171416  sap.com/EP-PSERV 
    sap.com  com.sapportals.portaladmin.propeditor  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023171433  sap.com/EP-PSERV 
    sap.com  com.sapportals.portaladmin.relitemsedtor  7.00 (7.0015.20080215133942.0000)  SAP AG  SAP AG  20081023171448  sap.com/EP-PSERV 
    sap.com  com.sapportals.portaladmin.wizframework  7.00 (7.0015.20080215133942.0000)  SAP AG  SAP AG  20081023171504  sap.com/EP-PSERV 
    sap.com  com.sapportals.productivitytools.desktop  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023171522  sap.com/EP-PSERV 
    sap.com  com.sapportals.productivitytools.dom  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134538  sap.com/EP-PSERV 
    sap.com  com.sapportals.productivitytools.dsktped  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023171543  sap.com/EP-PSERV 
    sap.com  com.sapportals.productivitytools.dyntree  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134541  sap.com/EP-PSERV 
    sap.com  com.sapportals.productivitytools.netivie  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134543  sap.com/EP-PSERV 
    sap.com  com.sapportals.productivitytools.resolvr  7.00 (7.0014.20071112134549.0000)  SAP AG  SAP AG  20081022134544  sap.com/EP-PSERV 
    sap.com  com.sapportals.productivitytools.ruleed  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023171559  sap.com/EP-PSERV 
    sap.com  com.sapportals.productivitytools.urliviw  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134548  sap.com/EP-PSERV 
    sap.com  com.sapportals.productivitytools.utils  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134549  sap.com/EP-PSERV 
    sap.com  com.sapportals.prt.application.monitor  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134550  sap.com/EP-PSERV 
    sap.com  com.sapportals.prt.jco  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023171622  sap.com/EP-PSERV 
    sap.com  com.sapportals.supporttools  7.00 (7.0015.20080215133942.0000)  SAP AG  SAP AG  20081023171639  sap.com/EP-PSERV 
    sap.com  com.sapportals.systemlandscape  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023171655  sap.com/EP-PSERV 
    sap.com  com.sapportals.uiservices  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023171710  sap.com/EP-PSERV 
    sap.com  com.sapportals.unification.50  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023171725  sap.com/EP-PSERV 
    sap.com  com.sapportals.unification.50support  7.00 (7.0012.20070426205038.0000)  SAP AG  SAP AG  20081022134601  sap.com/EP-PSERV 
    sap.com  com.sapportals.unification.50system  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134602  sap.com/EP-PSERV 
    sap.com  com.sapportals.unification.60  7.00 (7.0015.20080215133942.0000)  SAP AG  SAP AG  20081023171744  sap.com/EP-PSERV 
    sap.com  com.sapportals.unification.conctriviewiz  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023171800  sap.com/EP-PSERV 
    sap.com  com.sapportals.upgrader.EP5.system  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134607  sap.com/EP-PSERV 
    sap.com  com.sapportals.urdesigndata  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023171851  sap.com/EP-PSERV 
    sap.com  com.sapportals.utilities.analyzer  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134612  sap.com/EP-PSERV 
    sap.com  com.sapportals.utilities.portalspider  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023171928  sap.com/EP-PSERV 
    sap.com  com.sapportals.utilities.portalspiderDB  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023172004  sap.com/EP-PSERV 
    sap.com  com.sapportals.utilities.uninstall  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134616  sap.com/EP-PSERV 
    sap.com  com.sapportals.wdparamsprovider  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134618  sap.com/EP-PSERV 
    sap.com  com.sapportals.yahoointegration  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134620  sap.com/EP-PSERV 
    sap.com  tc/wd/eptests  7.00 (7.0016.20080123140856.0000)  SAP AG  SAP AG  20081023183019  sap.com/EP-PSERV 
    sap.com  tcepcommon~logWatch  7.00 (7.0014.20071112131518.0000)  SAP AG  SAP AG  20081022134621  sap.com/EP-PSERV 
    sap.com  acc_admin_welcome  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023182457  sap.com/EP-WDC 
    sap.com  adminstudiolite  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023182525  sap.com/EP-WDC 
    sap.com  ar_hook  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023182732  sap.com/EP-WDC 
    sap.com  com.sap.portal.fpn.accessservice  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023182604  sap.com/EP-WDC 
    sap.com  editor_framework  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023182629  sap.com/EP-WDC 
    sap.com  new_iview  null (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023183123  sap.com/EP-WDC 
    sap.com  new_page  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023183103  sap.com/EP-WDC 
    sap.com  obn04tst  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023182648  sap.com/EP-WDC 
    sap.com  pb  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023182801  sap.com/EP-WDC 
    sap.com  pb_api  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023182708  sap.com/EP-WDC 
    sap.com  pb_lyt  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023182822  sap.com/EP-WDC 
    sap.com  pb_test  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023182842  sap.com/EP-WDC 
    sap.com  property_editor  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023182902  sap.com/EP-WDC 
    sap.com  sap.com~gcwebservice  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023182920  sap.com/EP-WDC 
    sap.com  spider_search  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023182938  sap.com/EP-WDC 
    sap.com  tc/pp/ivs/floating_aliases  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023182957  sap.com/EP-WDC 
    sap.com  wizard_framework  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023183044  sap.com/EP-WDC 
    sap.com  com.sap.pcd.dbschema  7.00 (7.0012.20070426205038.0000)  SAP AG  SAP AG  20081022134219  sap.com/EPBC 
    sap.com  com.sap.portal.runtime.config.kmreadonly  7.00 (7.0014.20071111033708.0000)  SAP AG  SAP AG  20081022134231  sap.com/EPBC 
    sap.com  com.sap.prt.application.rfcframework  7.00 (7.0013.20070808101344.0000)  SAP AG  SAP AG  20081022140532  sap.com/EPBC 
    sap.com  com.sapportals.prt.bridge  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134233  sap.com/EPBC 
    sap.com  com.sapportals.prt.portalruntime  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023140022  sap.com/EPBC 
    sap.com  irj  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023151855  sap.com/EPBC 
    sap.com  com.sap.km.bs.ui.wdf  7.00 (7.0015.20080226132937.0000)  SAP AG  SAP AG  20081023172111  sap.com/EPBC2 
    sap.com  com.sap.portal.heartbeat  7.00 (7.0012.20070426205038.0000)  SAP AG  SAP AG  20081022140904  sap.com/EPBC2 
    sap.com  com.sap.portal.htmlb  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023172150  sap.com/EPBC2 
    sap.com  com.sap.portal.pcm.admin.apiservice  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134629  sap.com/EPBC2 
    sap.com  com.sap.portal.pcm.admin.implservice  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134631  sap.com/EPBC2 
    sap.com  com.sap.portal.runtime.admin.log  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023172227  sap.com/EPBC2 
    sap.com  com.sap.portal.runtime.application.soap  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023172302  sap.com/EPBC2 
    sap.com  com.sap.portal.runtime.config.component  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023172337  sap.com/EPBC2 
    sap.com  com.sap.portal.runtime.config.ieu.comp  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134637  sap.com/EPBC2 
    sap.com  com.sap.portal.runtime.flash  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134638  sap.com/EPBC2 
    sap.com  com.sap.portal.runtime.repository.adaptr  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134639  sap.com/EPBC2 
    sap.com  com.sap.portal.runtime.system.console  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134641  sap.com/EPBC2 
    sap.com  com.sap.portal.supportability.isolde  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134642  sap.com/EPBC2 
    sap.com  com.sap.prt.ws.container  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134644  sap.com/EPBC2 
    sap.com  com.sap.security.ume.par  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023172409  sap.com/EPBC2 
    sap.com  com.sapportals.prt.connection  7.00 (7.0012.20070426205038.0000)  SAP AG  SAP AG  20081022134648  sap.com/EPBC2 
    sap.com  com.sapportals.prt.contentconversion  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134650  sap.com/EPBC2 
    sap.com  com.sapportals.prt.hooks  7.00 (7.0016.20080610125917.0000)  SAP AG  SAP AG  20081023172424  sap.com/EPBC2 
    sap.com  com.sapportals.prt.hooks.document  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022134653  sap.com/EPBC2 
    sap.com  PRTDatabaseMigrationController  7.00 (7.0015.20080226132937.0000)  SAP AG  SAP AG  20081023172035  sap.com/EPBC2 
    sap.com  tc/monitoring/logviewer-standalone  7.00 (7.0016.20080423161050.0000)  SAP AG  SAP AG  20081023044518  sap.com/JLOGVIEW 
    sap.com  tc/sdt/app/jspm  7.00 (7.0016.20080522095416.0000)  SAP AG  SAP AG  20081023041753  sap.com/JSPM 
    sap.com  tc/sdt/app/jspm/bootstrap  7.00 (7.0016.20080522095416.0000)  SAP AG  SAP AG  20081023041820  sap.com/JSPM 
    sap.com  tc/sdt/app/jspm/ext  7.00 (7.0016.20080522095416.0000)  SAP AG  SAP AG  20081023042135  sap.com/JSPM 
    sap.com  tc/km_tc/kw  7.00 (7.0012.20070328121935.0000)  SAP AG  SAP AG  20080125140307  sap.com/KM-KW_JIKS 
    sap.com  tc/km_tc/sapiks  7.00 (7.0012.20070328121935.0000)  SAP AG  SAP AG  20080125140309  sap.com/KM-KW_JIKS 
    sap.com  tc/km_tc/sapirexthelp  7.00 (7.0012.20070328121935.0000)  SAP AG  SAP AG  20080125140312  sap.com/KM-KW_JIKS 
    sap.com  tc/kw_tc  7.00 (7.0016.20080423162609.0000)  SAP AG  SAP AG  20081023152006  sap.com/KM-KW_JIKS 
    sap.com  com.sap.netweaver.bc.crt  7.00 (7.0015.20080215133942.0000)  SAP AG  SAP AG  20081023172457  sap.com/KMC-BC 
    sap.com  com.sap.netweaver.bc.crt.heartbeat  7.00 (7.0010.20061024142635.0000)  SAP AG  SAP AG  20081022152051  sap.com/KMC-BC 
    sap.com  com.sap.netweaver.bc.db  7.00 (7.0014.20071113170027.0000)  SAP AG  SAP AG  20081022152114  sap.com/KMC-BC 
    sap.com  com.sap.netweaver.bc.logging  7.00 (7.0010.20061024142635.0000)  SAP AG  SAP AG  20081022160039  sap.com/KMC-BC 
    sap.com  com.sap.netweaver.bc.protocol  7.00 (7.0016.20080601192937.0000)  SAP AG  SAP AG  20081023172528  sap.com/KMC-BC 
    sap.com  com.sap.netweaver.bc.rf  7.00 (7.0016.20080601192937.0000)  SAP AG  SAP AG  20081023172551  sap.com/KMC-BC 
    sap.com  com.sap.netweaver.bc.rf.manager  7.00 (7.0016.20080601192937.0000)  SAP AG  SAP AG  20081023172618  sap.com/KMC-BC 
    sap.com  com.sap.netweaver.bc.rf.moni  7.00 (7.0010.20061024142635.0000)  SAP AG  SAP AG  20081022160047  sap.com/KMC-BC 
    sap.com  com.sap.netweaver.bc.rf.service  7.00 (7.0016.20080601192937.0000)  SAP AG  SAP AG  20081023172654  sap.com/KMC-BC 
    sap.com  com.sap.netweaver.bc.sf  7.00 (7.0015.20080215133942.0000)  SAP AG  SAP AG  20081023172724  sap.com/KMC-BC 
    sap.com  com.sap.netweaver.bc.sf.service  7.00 (7.0016.20080601192937.0000)  SAP AG  SAP AG  20081023172802  sap.com/KMC-BC 
    sap.com  com.sap.netweaver.bc.util  7.00 (7.0016.20080601192937.0000)  SAP AG  SAP AG  20081023172836  sap.com/KMC-BC 
    sap.com  com.sap.netweaver.bc.wdf.ext  7.00 (7.0010.20061024142635.0000)  SAP AG  SAP AG  20081022152128  sap.com/KMC-BC 
    sap.com  com.sap.nw.kmc.readonly.monitor  7.00 (7.0014.20071113170027.0000)  SAP AG  SAP AG  20081022152130  sap.com/KMC-BC 
    sap.com  tc/kmc/bc.rf.ws/rfws/ear  7.00 (7.0015.20080215133942.0000)  SAP AG  SAP AG  20081023183243  sap.com/KMC-BC 
    sap.com  com.sap.km.acl  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022152215  sap.com/KMC-CM 
    sap.com  com.sap.km.application  7.00 (7.0014.20071113170027.0000)  SAP AG  SAP AG  20081022152218  sap.com/KMC-CM 
    sap.com  com.sap.km.cm  7.00 (7.0013.20070808101344.0000)  SAP AG  SAP AG  20081022152222  sap.com/KMC-CM 
    sap.com  com.sap.km.cm.command  7.00 (7.0014.20071113170027.0000)  SAP AG  SAP AG  20081022152228  sap.com/KMC-CM 
    sap.com  com.sap.km.cm.etc  7.00 (7.0016.20080602164054.0000)  SAP AG  SAP AG  20081023172959  sap.com/KMC-CM 
    sap.com  com.sap.km.cm.etc.test  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022152241  sap.com/KMC-CM 
    sap.com  com.sap.km.cm.main  7.00 (7.0016.20080602164054.0000)  SAP AG  SAP AG  20081023173034  sap.com/KMC-CM 
    sap.com  com.sap.km.cm.managerservices  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022152246  sap.com/KMC-CM 
    sap.com  com.sap.km.cm.protocols.ice  7.00 (7.0016.20080602164054.0000)  SAP AG  SAP AG  20081023173050  sap.com/KMC-CM 
    sap.com  com.sap.km.cm.protocols.webdav  7.00 (7.0014.20071113170027.0000)  SAP AG  SAP AG  20081022152258  sap.com/KMC-CM 
    sap.com  com.sap.km.cm.repository.filter  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022152302  sap.com/KMC-CM 
    sap.com  com.sap.km.cm.repository.manager  7.00 (7.0016.20080602164054.0000)  SAP AG  SAP AG  20081023173117  sap.com/KMC-CM 
    sap.com  com.sap.km.cm.repository.service  7.00 (7.0016.20080602164054.0000)  SAP AG  SAP AG  20081023173137  sap.com/KMC-CM 
    sap.com  com.sap.km.cm.repository.service.base  7.00 (7.0016.20080602164054.0000)  SAP AG  SAP AG  20081023173212  sap.com/KMC-CM 
    sap.com  com.sap.km.cm.security  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022152315  sap.com/KMC-CM 
    sap.com  com.sap.km.cm.service  7.00 (7.0016.20080602164054.0000)  SAP AG  SAP AG  20081023173237  sap.com/KMC-CM 
    sap.com  com.sap.km.cm.service.base  7.00 (7.0016.20080602164054.0000)  SAP AG  SAP AG  20081023173313  sap.com/KMC-CM 
    sap.com  com.sap.km.cm.tools  7.00 (7.0010.20061109164817.0000)  SAP AG  SAP AG  20081022152332  sap.com/KMC-CM 
    sap.com  com.sap.km.cm.ui  7.00 (7.0016.20080602164054.0000)  S

  • WDRuntimeException : Failed to create delegate for component

    Hi Friends,
    I encountered the following error while deploying the application to local DC. Actually, i'm trying to create a new view 'HCFileUploadView' in the existing application.
    An error has occurred:
    "Failed to process the request."
    Please contact your system administrator.
    Hide details
    Web Dynpro client:
    HTML Client
    Web Dynpro client capabilities:
    User agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322), version: null, DOM version: null, client type: msie6, client type profile: ie6, ActiveX: enabled, Cookies: enabled, Frames: enabled, Java applets: enabled, JavaScript: enabled, Tables: enabled, VB Script: enabled
    Web Dynpro runtime:
    Vendor: SAP, Build ID: 6.4011.00.0000.20050217164947.0000 (release=630_VAL_REL, buildtime=2005-02-20:21:49:12[UTC], changelist=329752, host=PWDFM026)
    Web Dynpro code generators of DC local/CRRSRatingWDP:
    SapDictionaryGenerationCore: 6.4011.00.0000.20050127161623.0000 (release=630_VAL_REL, buildtime=2005-02-20:21:34:47[UTC], changelist=324383, host=PWDFM026.wdf.sap.corp)
    SapMetamodelWebDynpro: 6.4011.00.0000.20050121170001.0000 (release=630_VAL_REL, buildtime=2005-02-20:21:38:14[UTC], changelist=322883, host=PWDFM026.wdf.sap.corp)
    SapMetamodelCore: 6.4011.00.0000.20050121165648.0000 (release=630_VAL_REL, buildtime=2005-02-20:21:28:49[UTC], changelist=322878, host=PWDFM026.wdf.sap.corp)
    SapWebDynproGenerationTemplates: 6.4011.00.0000.20050217164947.0000 (release=630_VAL_REL, buildtime=2005-02-20:21:53:22[UTC], changelist=329752, host=PWDFM026)
    SapWebDynproGenerationCTemplates: 6.4011.00.0000.20050217164947.0000 (release=630_VAL_REL, buildtime=2005-02-20:21:53:22[UTC], changelist=329752, host=PWDFM026)
    SapGenerationFrameworkCore: 6.4011.00.0000.20041104141254.0000 (release=630_VAL_REL, buildtime=2005-02-20:21:28:00[UTC], changelist=298452, host=PWDFM026.wdf.sap.corp)
    SapIdeWebDynproCheckLayer: 6.4011.00.0000.20050215134310.0000 (release=630_VAL_REL, buildtime=2005-02-20:21:42:02[UTC], changelist=329103, host=PWDFM026.wdf.sap.corp)
    SapMetamodelDictionary: 6.4011.00.0000.20040609163924.0000 (release=630_VAL_REL, buildtime=2005-02-20:21:32:12[UTC], changelist=253570, host=PWDFM026.wdf.sap.corp)
    SapMetamodelCommon: 6.4011.00.0000.20050121165648.0000 (release=630_VAL_REL, buildtime=2005-02-20:21:28:59[UTC], changelist=322878, host=PWDFM026.wdf.sap.corp)
    SapWebDynproGenerationCore: 6.4011.00.0000.20050215134310.0000 (release=630_VAL_REL, buildtime=2005-02-20:21:42:32[UTC], changelist=329103, host=PWDFM026.wdf.sap.corp)
    SapDictionaryGenerationTemplates: (unknown)
    Web Dynpro code generators of DC sap.com/tcwddispwda:
    No information available
    Web Dynpro code generators of DC sap.com/tcwdcorecomp:
    No information available
    J2EE Engine:
    No information available
    Java VM:
    Java HotSpot(TM) Server VM, version: 1.4.2_06-b03, vendor: Sun Microsystems Inc.
    Operating system:
    Windows XP, version: 5.1, architecture: x86
    Error stacktrace:
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Failed to create delegate for component com.mbb.crrs.web.webdynpro.component.DefaultRatingController. (Hint: Is the corresponding DC deployed correctly? Does the DC contain the component?)
         at com.sap.tc.webdynpro.progmodel.generation.ControllerHelper.createDelegate(ControllerHelper.java:110)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.<init>(DelegatingComponent.java:38)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.doInit(ClientComponent.java:775)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.init(ClientComponent.java:329)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:349)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.execute(WebDynproMainTask.java:599)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:59)
         at com.sap.tc.webdynpro.clientserver.cal.ClientManager.doProcessing(ClientManager.java:251)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doWebDynproProcessing(DispatcherServlet.java:154)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:116)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doGet(DispatcherServlet.java:48)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:391)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:265)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:345)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:323)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:865)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:240)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
         at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
         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:94)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)
    Caused by: java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
         at com.sap.tc.webdynpro.progmodel.generation.ControllerHelper.createDelegate(ControllerHelper.java:74)
         ... 26 more
    Caused by: java.lang.ExceptionInInitializerError
         at com.mbb.crrs.web.webdynpro.component.wdp.InternalDefaultRatingController.<init>(InternalDefaultRatingController.java:192)
         ... 31 more
    Caused by: com.mbb.crrs.common.exceptions.ApplicationConfigurationException: Cannot load System Properties.
         at com.mbb.crrs.common.SystemContext.<init>(SystemContext.java:39)
         at com.mbb.crrs.common.SystemContext.getInstance(SystemContext.java:47)
         at com.mbb.crrs.common.LoggerFactory.getLogger(LoggerFactory.java:60)
         at com.mbb.crrs.web.webdynpro.component.DefaultRatingController.<clinit>(DefaultRatingController.java:737)
         ... 32 more
    Please help me on this issue.
    Thanks && Regards,
    Vijay.

    Hello!
    I face the same problem with Failed to create delegate for component:
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Failed to create delegate for component
    XXX.YYY.ZZZ..ume.Ume. (Hint: Is the corresponding DC deployed correctly? Does the DC contain the component?)
    Caused by: java.lang.reflect.InvocationTargetException
    Caused by: java.lang.NoClassDefFoundError: com.sap.tc.webdynpro.model.webservice.gci.WSTypedModelClass
    I think this started after upgrading from 7.01 SP3 to SP5, but I'm not sure.
    What was it that solved your issue?
    *I found the error. My ProjectProperties.wdProperties did not contain the references it needed.*
    Edited by: Richard Linnander on Nov 23, 2009 2:33 PM

  • Config data refnums invalidate​d by for loop

    I have found the following problem with LabVIEW 7.0. This only occurs when running the application as built with the application builder and does not appear to be a problem in the development environment.
    Given an open refnum for a config file one can loop through several read key operations while passing the data and the refnum to outputs on the for loop. If you disable indexing on the refnum output of the for loop you should get a usable refnum out. What happens instead when you try to close the refnum is an error indicating that the refnum is invalid. If you simply route the refnum around the loop avoiding the for loop output altogether this doesn't happen. It appears that somehow, going through the indexing output of the f
    or loop invalidates or changes the refnum when in a built application using the runtime.
    If anyone can reproduce this or prove me wrong it would be helpful. This bug cost me days of chasing down why my "major app" would only work when in development but fail when built. The lack of debug capability in a built app of course leant to the effort that it took to track this down.
    Thanks,

    Hello, i'm french so scuse for my writting...
    I don't find where put this question so i writte here.
    I want to do a soft who's objective is to writte config data (open config data + write key + close..).
    you can find it in the join piece.
    this soft run correctly but when i do an exe with the application builder, when i try to run the exe, that saying me error 7 about the Nex file in Open config data...
    How can i solve this problem???
    Tanks for all....
    Attachments:
    chconfexe.vi ‏32 KB

  • Java.lang.ClassNotFoundException  Failed to create delegate for component

    Hello Experts,
    I am expericing this problem on address iview of  ess. It was workign fine. But, suddenly. Its throwing this error. I am not able to figure whats going on with it. I restarted the server. But it didnt help. can any one suggest me Solution.
    project references : ess~per exists.
    ESS 600/ECC 6.0
    WAS 7.0.13.
    NWDS 7.0.13
    Your help is highly appreciated.
    Thanks,
    java.lang.ClassNotFoundException: com.sap.xss.hr.per.us.address.overview.wdp.InternalVcPerAddressUSOverview -
    Loader Info -
    ClassLoader name: [sap.com/essusaddr] Parent loader name: [Frame ClassLoader] References: common:service:http;service:servlet_jsp service:ejb common:service:iiop;service:naming;service:p4;service:ts service:jmsconnector library:jsse library:servlet common:library:IAIKSecurity;library:activation;library:mail;library:tcsecssl library:ejb20 library:j2eeca library:jms library:opensql common:library:com.sap.security.api.sda;library:com.sap.security.core.sda;library:security.class;library:webservices_lib;service:adminadapter;service:basicadmin;service:com.sap.security.core.ume.service;service:configuration;service:connector;service:dbpool;service:deploy;service:jmx;service:jmx_notification;service:keystore;service:security;service:userstore interface:resourcecontext_api interface:webservices interface:cross interface:ejbserialization sap.com/essper sap.com/pcui_gpxssutils sap.com/tcwddispwda sap.com/pcui_gpxssfpm sap.com/tcwdcorecomp service:webdynpro service:sld library:tcddicddicservices library:com.sap.aii.proxy.framework library:tcgraphicsigs library:com.sap.mw.jco library:com.sap.lcr.api.cimclient library:sapxmltoolkit library:com.sap.aii.util.rb library:com.sap.util.monitor.jarm library:tcddicddicruntime library:com.sap.aii.util.xml library:com.sap.aii.util.misc library:tccmi Resources: /usr/sap/DEP/JC41/j2ee/cluster/server0/apps/sap.com/essusaddr/webdynpro/public/lib/app.jar Loading model: {parent,references,local} -
        at com.sap.engine.frame.core.load.ReferencedLoader.loadClass(ReferencedLoader.java:382)
        at com.sap.tc.webdynpro.progmodel.generation.ControllerHelper.createDelegate(ControllerHelper.java:65)
        at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.<init>(DelegatingComponent.java:51)
        at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.init(ClientComponent.java:382)
        at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.createComponent(ClientComponent.java:940)
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Failed to create delegate for component com.sap.xss.hr.per.us.address.overview.VcPerAddressUSOverview. (Hint: Is the corresponding DC deployed correctly? Does the DC contain the component?)
         at com.sap.tc.webdynpro.progmodel.generation.ControllerHelper.createDelegate(ControllerHelper.java:110)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.<init>(DelegatingComponent.java:51)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.init(ClientComponent.java:382)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.createComponent(ClientComponent.java:940)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.createComponent(ClientComponent.java:177)
         at com.sap.tc.webdynpro.progmodel.components.ComponentUsage.createComponentInternal(ComponentUsage.java:149)
         at com.sap.tc.webdynpro.progmodel.components.ComponentUsage.createComponent(ComponentUsage.java:141)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$ComponentUsageManager.createVACComponentUsage(FPMComponent.java:747)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.doProcessEvent(FPMComponent.java:563)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.doEventLoop(FPMComponent.java:438)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.wdDoInit(FPMComponent.java:196)
         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:430)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:362)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.initApplication(ApplicationSession.java:756)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:291)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingPortal(ClientSession.java:733)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:668)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         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:1288)
         at com.sap.portal.pb.PageBuilder.createPage(PageBuilder.java:355)
         at com.sap.portal.pb.PageBuilder.init(PageBuilder.java:548)
         at com.sap.portal.pb.PageBuilder.wdDoRefresh(PageBuilder.java:592)
         at com.sap.portal.pb.PageBuilder$1.doPhase(PageBuilder.java:864)
         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:321)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:684)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         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:386)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         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(AccessController.java:215)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Caused by: java.lang.ClassNotFoundException: com.sap.xss.hr.per.us.address.overview.wdp.InternalVcPerAddressUSOverview
    Loader Info -
    ClassLoader name: [sap.com/essusaddr]
    Parent loader name: [Frame ClassLoader]
    References:
       common:service:http;service:servlet_jsp
       service:ejb
       common:service:iiop;service:naming;service:p4;service:ts
       service:jmsconnector
       library:jsse
       library:servlet
       common:library:IAIKSecurity;library:activation;library:mail;library:tcsecssl
       library:ejb20
       library:j2eeca
       library:jms
       library:opensql
       common:library:com.sap.security.api.sda;library:com.sap.security.core.sda;library:security.class;library:webservices_lib;service:adminadapter;service:basicadmin;service:com.sap.security.core.ume.service;service:configuration;service:connector;service:dbpool;service:deploy;service:jmx;service:jmx_notification;service:keystore;service:security;service:userstore
       interface:resourcecontext_api
       interface:webservices
       interface:cross
       interface:ejbserialization
       sap.com/ess~per
       sap.com/pcui_gp~xssutils
       sap.com/tcwddispwda
       sap.com/pcui_gp~xssfpm
       sap.com/tcwdcorecomp
       service:webdynpro
       service:sld
       library:tcddicddicservices
       library:com.sap.aii.proxy.framework
       library:tcgraphicsigs
       library:com.sap.mw.jco
       library:com.sap.lcr.api.cimclient
       library:sapxmltoolkit
       library:com.sap.aii.util.rb
       library:com.sap.util.monitor.jarm
       library:tcddicddicruntime
       library:com.sap.aii.util.xml
       library:com.sap.aii.util.misc
       library:tc~cmi
    Resources:
       /usr/sap/DEP/JC41/j2ee/cluster/server0/apps/sap.com/essusaddr/webdynpro/public/lib/app.jar
    Loading model: {parent,references,local}
         at com.sap.engine.frame.core.load.ReferencedLoader.loadClass(ReferencedLoader.java:382)
         at com.sap.tc.webdynpro.progmodel.generation.ControllerHelper.createDelegate(ControllerHelper.java:65)
         ... 57 more
    ====================================================
    ====================================================
    Now, If I run it again its giving me a negative cache error.
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Failed to create delegate for component com.sap.xss.hr.per.us.address.overview.VcPerAddressUSOverview. (Hint: Is the corresponding DC deployed correctly? Does the DC contain the component?)
         at com.sap.tc.webdynpro.progmodel.generation.ControllerHelper.createDelegate(ControllerHelper.java:110)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.<init>(DelegatingComponent.java:51)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.init(ClientComponent.java:382)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.createComponent(ClientComponent.java:940)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.createComponent(ClientComponent.java:177)
         at com.sap.tc.webdynpro.progmodel.components.ComponentUsage.createComponentInternal(ComponentUsage.java:149)
         at com.sap.tc.webdynpro.progmodel.components.ComponentUsage.createComponent(ComponentUsage.java:141)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$ComponentUsageManager.createVACComponentUsage(FPMComponent.java:747)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.doProcessEvent(FPMComponent.java:563)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.doEventLoop(FPMComponent.java:438)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.wdDoInit(FPMComponent.java:196)
         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:430)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:362)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.initApplication(ApplicationSession.java:756)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:291)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingPortal(ClientSession.java:733)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:668)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         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:1288)
         at com.sap.portal.pb.PageBuilder.createPage(PageBuilder.java:355)
         at com.sap.portal.pb.PageBuilder.init(PageBuilder.java:548)
         at com.sap.portal.pb.PageBuilder.wdDoRefresh(PageBuilder.java:592)
         at com.sap.portal.pb.PageBuilder$1.doPhase(PageBuilder.java:864)
         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:321)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:684)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         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:386)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         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(AccessController.java:215)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Caused by: java.lang.ClassNotFoundException: com.sap.xss.hr.per.us.address.overview.wdp.InternalVcPerAddressUSOverview
    Found in negative cache
    Loader Info -
    ClassLoader name: [sap.com/essusaddr]
    Parent loader name: [Frame ClassLoader]
    References:
       common:service:http;service:servlet_jsp
       service:ejb
       common:service:iiop;service:naming;service:p4;service:ts
       service:jmsconnector
       library:jsse
       library:servlet
       common:library:IAIKSecurity;library:activation;library:mail;library:tcsecssl
       library:ejb20
       library:j2eeca
       library:jms
       library:opensql
       common:library:com.sap.security.api.sda;library:com.sap.security.core.sda;library:security.class;library:webservices_lib;service:adminadapter;service:basicadmin;service:com.sap.security.core.ume.service;service:configuration;service:connector;service:dbpool;service:deploy;service:jmx;service:jmx_notification;service:keystore;service:security;service:userstore
       interface:resourcecontext_api
       interface:webservices
       interface:cross
       interface:ejbserialization
       sap.com/ess~per
       sap.com/pcui_gp~xssutils
       sap.com/tcwddispwda
       sap.com/pcui_gp~xssfpm
       sap.com/tcwdcorecomp
       service:webdynpro
       service:sld
       library:tcddicddicservices
       library:com.sap.aii.proxy.framework
       library:tcgraphicsigs
       library:com.sap.mw.jco
       library:com.sap.lcr.api.cimclient
       library:sapxmltoolkit
       library:com.sap.aii.util.rb
       library:com.sap.util.monitor.jarm
       library:tcddicddicruntime
       library:com.sap.aii.util.xml
       library:com.sap.aii.util.misc
       library:tc~cmi
    Resources:
       /usr/sap/DEP/JC41/j2ee/cluster/server0/apps/sap.com/essusaddr/webdynpro/public/lib/app.jar
    Loading model: {parent,references,local}
         at com.sap.engine.frame.core.load.ReferencedLoader.loadClass(ReferencedLoader.java:360)
         at com.sap.tc.webdynpro.progmodel.generation.ControllerHelper.createDelegate(ControllerHelper.java:65)
         ... 57 more

    Resolved by addign the missing references

Maybe you are looking for

  • Www and http not displaying in pdf files converted from MS Word

    When I convert a Word document to pdf using Acrobat Pro 9.0, the website addresses do not display correctly. For instance, if my document shows www.website.com - then the pdf only displays .website.com. Also, if I have the http://www.website.com - I

  • Sapscript for beginner

    Hi experts, May I request sites that have tutorials for building step by step SAPscript programs for beginners? Regards, Marc

  • Merge Statement Giving Error

    Hi Everyone, I am trying to use MERGE statement for my Data Load. But it is giving out an un-understandable error. It In the "ON" Part, it refuses to recognise the destination table columns... like I say ON(dest.Per_No = Src.Per_No), and it says "Inv

  • How to invoke an OSB service from a BPEL process

    I need help, to figure out how to invoke an OSB proxy service from a BPEL process. I found a blog which exactly does that; but I am unable to get it to work. I get the following error on my BPEL console. We are on OSB10gR3 and SOA 10134. "com.bea.wli

  • Generic extraction -Infoset

    Hello Gurus, I searched a lot on this but could not find Why  and when we do we use Infoset for Generic extraction? when i searched the SDN they give info about why a Table/View and Function Module is used but not on Infoset. Any document is helpful