Error found in component h:selectOneMenu

Hi,
I think i found an error in in JSF1.2_04-b16-P02 (tomcat 6.0.13)
-------------------------------- class persistent bean
public abstract class PersistentBean<T extends PersistentBean> implements Serializable {
     private long id;
     public long getId() {
          return id;
     public void setId(long id) {
          this.id = id;
     public boolean equals(Object object) {
          if (this == object){
               return true;
          if ((object == null) || !(object instanceof PersistentBean)){
               return false;
          return ((PersistentBean) object).getId() == id;
     public int hashCode() {
          return super.hashCode();
-------------------------------- class a
public class A extends PersistentBean<A>{
-------------------------------- class b
public class B extends A{
-------------------------------- Handler myJSFBean
public class MyJSFBean{
     private B b;
     private ArrayList<SelectItem> options;
     // ----------------- init
          b = new B();
          b.setId(2);
     // ----------------- GETTERS + SETTERS
     public B getB() {
          return b;
     public void setB(B b) {
          this.b = b;
     public ArrayList<SelectItem> getOptions() {
          if(options == null){
               options = new ArrayList<SelectItem>();
               A a = new A();
               a.setId(1);
               A a2 = new A();
               a2.setId(2);
               options.add(new SelectItem(a, "First value"));
               options.add(new SelectItem(a2, "Second value"));
          return options;
     public void setOptions(ArrayList<SelectItem> options) {
          this.options = options;
------------------------------------ JSP code
          <h:selectOneMenu
               value="#{myJSFBean.b}"
               converter="pbConverter">
               <f:selectItems value="#{myJSFBean.options}" />
          </h:selectOneMenu>
----------------------------------- pbConverter
public class PersistentBeanConverter implements Converter, Serializable {
     public static final String CONVERTER_ID = "pbConverter";
     private static final long serialVersionUID = 1L;
     public Object getAsObject(FacesContext context, UIComponent component,
               String value) {
          if (value == null || value.equals(StringUtils.EMPTY)) {
               return null;
          long id;
          try {
               id = Long.parseLong(value);
          } catch (NumberFormatException e) {
               id = 0;
               e.printStackTrace();
          if (((UIInput) component).getValue() == null) {
               return createNewValue(context, component, id);
          } else {
               PersistentBean pk = (PersistentBean) ((UIInput) component)
                         .getValue();
               //To be sure the valueChangeListener is called
               if(pk.getId() != id){
                    return createNewValue(context, component, id);
               return pk;
     private Object createNewValue(FacesContext context, UIComponent component, long id){
          ValueExpression ve = component.getValueExpression("value");
          try {
               PersistentBean pk = (PersistentBean) ve.getType(context.getELContext())
                         .newInstance();
               pk.setId(id);
               return pk;
          } catch (Exception e) {
               e.printStackTrace();
               throw new RuntimeException(
                         "pbConverer error could not instanciate the assignable object of the persistent bean",
                         e);
     public String getAsString(FacesContext context, UIComponent component,
               Object value) {
          if (value == null || value.equals(StringUtils.EMPTY)) {
               return StringUtils.EMPTY;
          if (value instanceof PersistentBean) {
               return String.valueOf(((PersistentBean) value).getId());
          } else {
               throw new RuntimeException(
                         "The pbConverter required a value of PersistentBean");
}---------------------------------------- Expected result
I expect that the second value (Second value) of my listbox is selected.
----------------------------------------- Result
No value is selected
Strange I think, somebody knows why?
Thanks in advance,
Pieter
Belgium

I found a sollution by changing the core JSF libraries.
I changed the following:
--------------------- class javax.faces.component.UISelectOne starting at line 185
               Class type = value.getClass();
                Object newValue = getFacesContext().getApplication().
                    getExpressionFactory().coerceToType(item.getValue(), type);
                if (value.equals(newValue)) {
                    return (true);
                }.......................... in
                if(value.equals(item.getValue())){
                     return (true);
                }The second class i changed is the
--------------------- class com.sun.faces.renderkit.html_basic.MenuRenderer starting at line 580
          Object newValue = context.getApplication().getExpressionFactory().
              coerceToType(itemValue, type);
          isSelected = isSelected(newValue, valuesArray);.......................... in
isSelected = isSelected(itemValue, valuesArray);I'm not sure this is the correct way of handeling this error.
So my question is if somebody have some advice.
Thanks in advance,
Pieter

Similar Messages

  • Error in Solar02 " Error - No system found for component SAP LEARNING.....

    Hi,
    I have selected the Business repository from the Tcode Solar01c, and i can see the list of configuration under Business Scenario,
    when i am trying to execute any Tcode,(My understanding is that this Tcode must execute in Development system) it gives the following Error,
    " No system Found for Component SAP Learning Solution and Role Evaluation system in project ZPROJ.
    In SMSY i have created Two systems Dev :100 and Qas:300  Which are assigned to one logical component whose producted Version in SAP ERP.
    Please advise by reviewing above scenario.
    Regards,
    SM

    Hi Irfanl,
    I've had the same issue with regards to getting the error below when assigning transactions to a Blueprint business process.
    "No system found for component and Evaluation system in the Project"
    But I think I have solved it and seems pretty simple to change the system role from Evaluation System to any other that is relevant in your landscape.
    Go to transaction SOLAR01 > Click on the first level of the Project Name (Under Business Blueprint Structure) to select the Project.
    Click Business Blueprint in the Menu > System Role > Choose the relevant System Role (in my case Development)
    Click Copy
    This should replicate to all nodes and then you should be able to assign transaction to the business processes.
    Quite strange and seems simple, I checked the Solution Directory, Solar Project Admin etc etc but couldn't find the solution until this which should work.
    If not, there is a similar work around which also works.
    Go to transaction SOLAR_PROJECT_ADMIN
    System Landsacpe Tab
    Systems subtab
    Click System Role Assignment
    Remove the Evaluation System (or all those not relevant to your Project and Logical Components)
    Save Project
    Go to SOLAR01 and it should reflect it in the Blueprint.
    You can always go back to this and add the System Roles you removed and the Blueprint will reference the correct Role.
    Hope this helps,
    -Rohan

  • JSP : Tiles Error �tag.getAsString� : component context is not defined

    JSP : Tiles Error �tag.getAsString� : component context is not defined
    I�m working with Struts 1.1 and Tiles, under Tomcat 5.0.16
    My application works fine using Struts 1.1 alone, however, when attempting to run the application in a �Tiles� environment, I get an error:

    javax.servlet.jsp.JspException: Error - tag.getAsString : component context is not defined. Check tag syntax

    I have �defined� this in my �tiles-defs.xml� file, and as far as I can tell, everything else is configured properly (I have looked over the included Struts document examples, and others on the web, and I seem to have everything configured identically).
    What am I missing???
    I have created a series of �mostly� empty JSP files, for simplicity sake.
    JSP FILES:
    -     header.jsp
    -     footer.jsp
    -     menu.jsp
    -     rootLayout.jsp
    -     user.jsp
    -     show_user.jsp
    -     error.jsp
    -     defaultContentPage.jsp
    All JSP files contain:
    <%@ taglib uri="/WEB-INF/lib/struts-tiles.tld" prefix="tiles" %>
    and

    <title>
    <tiles:getAsString name="title"/>
    </title>

    My �tiles-defs.xml�: =================================================
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE tiles-definitions PUBLIC
    "-//Apache Software Foundation//DTD Tiles Configuration 1.1//EN"
    "http://jakarta.apache.org/struts/dtds/tiles-config_1_1.dtd">
    <tiles-definitions>
    <!-- ================ RootLayout ======================= -->
    <definition name=".root.layout" path="/jsp/rootLayout.jsp" >
    <put name="title" value="Default title"/>
    <put name="header" value="/jsp/header.jsp"/>
    <put name="menu" value="/jsp/menu.jsp"/>
    <put name="content" value="/jsp/defaultContentPage.jsp"/>
    <put name="footer" value="/jsp/footer.jsp"/>
    </definition>
    <!-- ================ Extentions ======================= -->
    <!-- User -->
    <definition name=".view.user" extends=".root.layout">
    <put name="title" value="Welcome to the User Form."/>
    <put name="content" value="/jsp/user.jsp"/>
    </definition >
    <!-- Save -->
    <definition name=".view.save" extends=".root.layout">
    <put name="title" value="Welcome to the Show User Form."/>
    <put name="content" value="/jsp/show_user.jsp"/>
    </definition >
    <!-- Error -->
    <definition name=".view.error" extends=".root.layout">
    <put name="title" value="Error Message."/>
    <put name="content" value="/jsp/error.jsp"/>
    </definition >
    </tiles-definitions>
    My �struts-config.xml�: ==============================================
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE struts-config PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 1.1//EN"
    "http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd">
    <struts-config>
    <!-- ========== FormBeans =================================== -->
    <form-beans>
    <form-bean name="userForm" type="biz.seamrog.strutstest.model.state.UserForm"/>
    </form-beans>
    <!-- ========== Action Mapping Definitions=================== -->
    <action-mappings>
    <!-- Action using normal forward syntax...
    <action path="/user"
    forward="/jsp/user.jsp">
    </action>
    -->
    <!-- Action using a "Tiles" forward syntax...
    The "forward" path mappings are defined in a file named
    "../WEB-INF/tiles-defs.xml
    -->
    <action path="/user"
    forward=".view.user">
    </action>
    <!-- Action using normal forward syntax...
    <action path="/save"
    type="biz.seamrog.strutstest.model.logic.SaveAction"
    name="userForm" scope="request"
    input="/jsp/user.jsp">
    <forward name="success" path="/jsp/show_user.jsp"/>
    <forward name="failure" path="/jsp/error.jsp"/>
    </action>
    -->
    <!-- Tiles syntax -->
    <action path="/save"
    type="biz.seamrog.strutstest.model.logic.SaveAction"
    name="userForm" scope="request"
    input="/jsp/user.jsp">
    <forward name="success" path=".view.show_user"/>
    <forward name="failure" path=".view.error"/>
    </action>
    </action-mappings>
    <!-- ============== Global Forwards ======================== -->
    <global-forwards>
    <!-- NOTE: paths with "." syntax are Tiles defined paths,
    all other paths follow conventional "/path/to/file.jsp syntax
    -->
    <forward name="user" path=".view.user"/>
    <forward name="show_user" path=".view.show_user"/>
    <forward name="error" path=".view.error"/>
    <forward name="cssBase" path="/stylesheets/common.css"/>
    </global-forwards>
    <!-- ============= Plug-ins =============== -->
    <!-- Tiles Plug-in -->
    <plug-in className="org.apache.struts.tiles.TilesPlugin" >
    <set-property property="definitions-config" value="/WEB-INF/tiles-defs.xml"/>
    <set-property property="definitions-parser-validate" value="true" />
    <set-property property="moduleAware" value="true" />
    </plug-in>
    </struts-config>
    My �web.xml�: =====================================================
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE web-app PUBLIC '-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN' 'http://java.sun.com/dtd/web-app_2_3.dtd'>
    <web-app>
    <servlet>
    <!--
    MyController extends org.apache.struts.action.ActionServlet
    NOTE: The servlet could also be specified specifying the
    default Struts ActonServlet...
    <servlet-name>controller</servlet-name>
    <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
    ...I have chosen to extend here just for practice sake.
    -->
    <!--
    <servlet-name>MyController</servlet-name>
    <servlet-class>biz.seamrog.strutstest.controller.MyController</servlet-class>
    -->
    <servlet-name>MyController</servlet-name>
    <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
    <!--
    Point to Struts configuration file(s)
    -->
    <init-param>
    <param-name>config</param-name>
    <param-value>/WEB-INF/struts-config.xml</param-value>
    </init-param>
    <!-- Tiles config -->
    <init-param>
    <param-name>definitions-config</param-name>
    <param-value>/WEB-INF/tiles-defs.xml</param-value>
    </init-param>
    <!-- This is the added Application parameter: -->
    <init-param>
    <param-name>application</param-name>
    <param-value>ApplicationResource</param-value>
    </init-param>
    <!-- end -->
    <load-on-startup>5</load-on-startup>
    </servlet>
    <!--
    All incoming requests that end in .do, send to MyController.
    -->
    <servlet-mapping>
    <servlet-name>MyController</servlet-name>
    <url-pattern>*.do</url-pattern>
    </servlet-mapping>
    <!--
    Send initial requests to the login page for this application
    -->
    <welcome-file-list>
    <welcome-file>/jsp/user.jsp</welcome-file>
    </welcome-file-list>
    <!--
    Make all of the necessary related Struts JSP custom tag libraries
    available and define where to find them.
    -->
    <taglib>
    <taglib-uri>/WEB-INF/lib/struts-bean.tld</taglib-uri>
    <taglib-location>/WEB-INF/lib/struts-bean.tld</taglib-location>
    </taglib>
    <taglib>
    <taglib-uri>/WEB-INF/lib/struts-html.tld</taglib-uri>
    <taglib-location>/WEB-INF/lib/struts-html.tld</taglib-location>
    </taglib>
    <taglib>
    <taglib-uri>/WEB-INF/lib/struts-logic.tld</taglib-uri>
    <taglib-location>/WEB-INF/lib/struts-logic.tld</taglib-location>
    </taglib>
    <taglib>
    <taglib-uri>/WEB-INF/lib/struts-tiles.tld</taglib-uri>
    <taglib-location>/WEB-INF/lib/struts-tiles.tld</taglib-location>
    </taglib>
    </web-app>
    My �rootLayout.jsp�: ================================================
    <%@page contentType="text/html"%>
    <%@ taglib uri="/WEB-INF/lib/struts-tiles.tld" prefix="tiles" %>
    <html>
    <header>
    <title>
    <tiles:getAsString name="title" />
    </title>
    <body>
    <tiles:get name="header"/>
    <tiles:get name="menu"/> <tiles:get name="content"/>
    <tiles:get name="footer"/>
    </body>
    </html>

    I found an entry in the Mail Archive for Struts. I got it working. My working code is below. You need to in the base JSP import the header and put the 'title' out to it.
    tiles:def file:
    <!DOCTYPE tiles-definitions PUBLIC
    "-//Apache Software Foundation//DTD Tiles Configuration 1.1//EN"
    "http://jakarta.apache.org/struts/dtds/tiles-config_1_1.dtd">
    <tiles-definitions>
    <definition name=".petstore.Base" path="/common/petstorecommon.jsp">
    <put name="title" value ="${title}"/>
    <put name="header" value="/common/header.jsp"/>
    <put name="message" value="/common/message.jsp"/>
    <put name="content" value="${content}"/>
    <put name="navbar" value="/common/navbar.jsp"/>
    </definition>
    <definition name="petstore.Login" extends=".petstore.Base" >
    <put name="title" value="Login Page" />
    <put name="content" value="/Logon.jsp"/>
    <put name="test1" value="test1value"/>
    </definition>
    base tile def:
    <%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles"%>
    <%@ page contentType="text/html;charset=windows-1252"%>
    <html:html>
    <head>
    <html:base/>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <title>pet store common (jsp)</title>
    </head>
    <body>
    <tiles:insert attribute="header">
    <%-- both of these attributes are accessible from header.jsp It works!!! --%>
    <tiles:put name="title" beanName="title" beanScope="tile" />
    <tiles:put name="test1" beanName="test1" beanScope="tile" />
    </tiles:insert>
    <%-- <tiles:get name="header" /> --%>
    <tiles:get name="message" />
    <tiles:get name="content" />
    <tiles:get name="navbar" />
    </body>
    </html:html>
    Getting access to the title value in the header.jsp file:
    <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%>
    <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%>
    <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%>
    <%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles"%>
    <html>
    <head>
    <tiles:getAsString name="title" />
    <tiles:getAsString name="test1" />
    </head>
    <body>
    </body>
    </html>

  • Runtime Error '429': ActiveX component can't create object

    Hi,
    I am using below code in vb6 application but this is throwing an "Runtime Error '429': ActiveX component can't create object" error.
    CreateObject("OracleInProcServer.XoraSession")
    is that due to any dll or reference error ?
    I have an Oracle client installed on my PC
    please share your solution
    Thanks in advance

    Are either of those 64 bit? If so, your problem is likely related to that.
    A 64 bit Oracle client doesn't support OO4O at all, so this code will never work with that client. You need to use a 32 bit one.
    If you are using a 32 bit client but on a 64 bit OS, I've found the 11.2.03 installer doesn't properly register the files. Manually registering OraOleDB11.dll may fix it, though we had to do some other registry stuff and it got very ugly. Backing up to a slightly older client should also fix the problem.

  • No system found for component and Evaluation system in the Project

    Hi Folks ,
    Im facing this problem when im trying to Execute the T-codes from Solar01 of the Transactins Tab by Selecting the Line item and clicking on Execute button. Following is the Error and there no logs for it.
    No system found for component and Evaluation system in the Project
    Even i have checked with the RFC settings and Logical components are right
    Please do suggest me - This is PRD issue . Try to do the needful .
    Thanks in Advance
    Amrita
    Edited by: Amrita Amrita on Dec 3, 2009 12:53 AM

    Hi all,
    I've had the same issue with regards to getting the error below when assigning transactions to a Blueprint business process.
    "No system found for component and Evaluation system in the Project"
    But I think I have solved it and seems pretty simple to change the system role from Evaluation System to any other that is relevant in your landscape.
    Go to transaction SOLAR01 > Click on the first level of the Project Name (Under Business Blueprint Structure) to select the Project.
    Click Business Blueprint in the Menu > System Role > Choose the relevant System Role (in my case Development)
    Click Copy
    This should replicate to all nodes and then you should be able to assign transaction to the business processes.
    Quite strange and seems simple, I checked the Solution Directory, Solar Project Admin etc etc but couldn't find the solution until this which should work.
    If not, there is a similar work around which also works.
    Go to transaction SOLAR_PROJECT_ADMIN
    System Landsacpe Tab
    Systems subtab
    Click System Role Assignment
    Remove the Evaluation System (or all those not relevant to your Project and Logical Components)
    Save Project
    Go to SOLAR01 and it should reflect it in the Blueprint.
    You can always go back to this and add the System Roles you removed and the Blueprint will reference the correct Role.
    Hope this helps everyone,
    -Rohan

  • 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

  • Required component home not found for component 'oracle.as.jrf'

    I am getting the above error message during unpacking a template. Below is what I have done..
    First machine:
    OS is Oracle Linux 64 bit version 6.4. Weblogic version 11g is installed with 2 managed servers up and running fine.
    echo $MW_HOME
    /u01/app/oracle/middleware
    echo $WLS_HOME
    /u01/app/oracle/middleware/wlserver_10.3
    echo $DOM_HOME
    /u01/app/oracle/middleware/user_projects/domains/ClassicDomain
    Want to create another managed server on a second machine where the First machine has the Admin server..
    Second machine:
    OS is Oracle Linux 64 bit version 6.4. Weblogic version 11g is installed
    echo $MW_HOME
    /u01/app/oracle/middleware
    echo $WLS_HOME
    /u01/app/oracle/middleware/wlserver_10.3
    echo $DOM_HOME
    /u01/app/oracle/middleware/user_projects/domains/ClassicDomain
    I go to the first machine and do a ./pack.sh command to create a template with a name of test.jar and it is successful. Use the -log command to see the logs.(everything is fine)
    I copy the above created template test.jar to the second machine..
    Than on the second machine, I do the ./unpack.sh command in the $WLS_HOME/common/bin folder and I get the following error message:
    fail: read template from "/u01/app/oracle/middleware/wlserver_10.3/common/bin/test.jar"
    CFGFWK-60550:  Script execution aborted. The script may contain an error.
    Required component home not found for component 'oracle.as.jrf' version '11.1.1.6.0'
    Any ideas would really appreciate it. Both of the machines have the same weblogic installation and paths. The only difference is the amount of memory each machine has that is all.. Thank you

    I am getting the above error message during unpacking a template. Below is what I have done..
    First machine:
    OS is Oracle Linux 64 bit version 6.4. Weblogic version 11g is installed with 2 managed servers up and running fine.
    echo $MW_HOME
    /u01/app/oracle/middleware
    echo $WLS_HOME
    /u01/app/oracle/middleware/wlserver_10.3
    echo $DOM_HOME
    /u01/app/oracle/middleware/user_projects/domains/ClassicDomain
    Want to create another managed server on a second machine where the First machine has the Admin server..
    Second machine:
    OS is Oracle Linux 64 bit version 6.4. Weblogic version 11g is installed
    echo $MW_HOME
    /u01/app/oracle/middleware
    echo $WLS_HOME
    /u01/app/oracle/middleware/wlserver_10.3
    echo $DOM_HOME
    /u01/app/oracle/middleware/user_projects/domains/ClassicDomain
    I go to the first machine and do a ./pack.sh command to create a template with a name of test.jar and it is successful. Use the -log command to see the logs.(everything is fine)
    I copy the above created template test.jar to the second machine..
    Than on the second machine, I do the ./unpack.sh command in the $WLS_HOME/common/bin folder and I get the following error message:
    fail: read template from "/u01/app/oracle/middleware/wlserver_10.3/common/bin/test.jar"
    CFGFWK-60550:  Script execution aborted. The script may contain an error.
    Required component home not found for component 'oracle.as.jrf' version '11.1.1.6.0'
    Any ideas would really appreciate it. Both of the machines have the same weblogic installation and paths. The only difference is the amount of memory each machine has that is all.. Thank you

  • Can't save BISM file pointing to excel sheet (data source). ErrMsg: "There were errors found while validating the page: Cannot connect to the server or database."

    Hi,
    Me and a collegue is administrering our new enterprise BI portal in SharePoint 2013 (On Premise) and have a problem with using a specific Excel file including general ledger data as data source through a BISM file.
    This particular BISM file can't be saved without getting the error message "There were errors found while validating the page: Cannot connect to the server or database."
    BISM files against other Excel sheets and sources (for example SSAS tabular databases) works well.
    Can anyone help us pinpointing whats wrong here, this is a really important stakeholder in our organization requesting this reporting?
    Cheers!

    Hi E.SWARD ,
    My self created a Power pivot excel then i want to use this excel to create BI file . Still i am getting the same error . Pls help me to resolve this issue
    Cannot connect to the server or database.
    I am getting the similar error , if i use Tabular analysis server instance .
    Subhash

  • Runtime error 429, activeX component cant create object while using netbet pro on windows 7 & 8.1 HELP!!!

    runtime error 429, activeX component cant create object while using netbet pro
    does anyone know what I could do to fix this problem??? netbet pro was't available for a while then it's back but has yet to run

    What's netbet pro?
    I'd recommend asking questions about third party applications in the vendor's forum, not a Microsoft forum meant for admin scripting.
    EDIT: Ah, some gambling website...
    Don't retire TechNet! -
    (Don't give up yet - 12,950+ strong and growing)

  • Errors Found after Server Diagnostics

    Hi All 
    I am in Outlooksoft 4.2 with SP1 ,  After Creating a new application set when I try to access the Manage Members it pop up with the following errors  1) Runt time error ' 429' : ActiveX component can't create object
    So I followed to do server diagnostics where it shows me lot of errors
    1)  Current user name does not have permission for OLAP Administrators group. (I am in Admin  )
    2)  Sql  reporting services server version -- required : 8.0.878.00 or higher, currently : 8.0.743.00   status incorrect 
    3)  DTS package - status incorrect
    Please provide me some solutions  to slove this isssues.
    Regards
    SN

    What is your version of SQL?
    Run this against Query Analyzer:
    SELECT SERVERPROPERTY('ProductLevel')
    SELECT @@VERSION
    SELECT SERVERPROPERTY('ProductVersion')
    What version of AS are you running?
    How do I check the version of Analysis Services on the server or Pivot Table Services on a client machine?
    1.  Open windows explorer and navigate to the  x:\Program Files\Common Files\System\Ole DB directory.
    2.  Right click on the msolap80.dll.
    3.  Select Properties.
    4.  Select the Version tab.
    5.  Look at the File Version.  
    The installation id should be a member of the local admins group and the OLAP admin group. 
    Does this happen for all appsets?

  • G3 imac can't update past 10.4.6 "errors found during update"

    I'm issues with a slot-loading g3 imac updating past 10.4.6 (the version i installed from the dvd). the boot rom number is 4.9.f1. I tried to format after the first incident to no avail. It runs pretty good as is but I need to get Ilife 08 on it(which claims to need 10.4.10 i believe). The first go at this I ran software update, it updated everything but the 10.4.11 combined, which rendered my Itunes unusable because it needs 10.4.9 or later. I even went as far as just downloading the 10.4.7 combined update with the same outcome. Instalation on the os x update runs normal and the just stops, saying there were errors found try updating again.
    Please help!!!
    Thanks in advance,
    Dan

    A G3 won't see more than 128 GB of a drive. You can put in a larger drive but the computer won't see anything beyond the first 128GB, not even if you partition. I know with G4s you can put in ATA PCI cards which will allow you to use bigger drives, and there's a utility called [SpeedTools|http://www.speedtools2.com> which is a software solution (read carefully before using as there are drawbacks vs. hardware).
    A hard drive is one place where I am hesitant about buying used, especially if it is one that is the same vintage as your computer with who knows how many hours on it. I am saying this because I don't think if you buy new that you will find anything less than 7200, 8MB, 160 GB, etc. I also see people asking $30 for used 120GB drives, and you can get a new 160GB drive for not much more if you hunt around and fill out your rebate coupons.
    You can get a bigger drive, use the first 128 GB with this computer, then when you get a new computer move the drive into it and use the whole thing (assuming you get a computer that supports big drives as just about any computer made in the past 4 years will do).
    Personally I like Seagate drives, but you'll get all kinds of responses on this.
    Since this is moving more into the hardware realm you might consider reposting the issue in the imac and/or G3 forum.
    Oh, one more thing, I wouldn't necessarily kiss the drive goodbye. If you have given up on directory repair why not try reformatting it with the erase option (to do a scan for bad blocks) and see if it still has some life left in it? I am still running two 120GB drives in this computer, at least one of which is 5 years old.

  • Arithmetical errors or conversion errors found in routine ROUTINE_0011

    Hi,
    I am having a problem when trying to load a cube from an DSO. In the PSA 90 record appears with the error "Arithmetical errors or conversion errors found in routine ROUTINE_0011 record XXX"
    I simulated and debbug the load and this routine have the code:
    RESULT = ( COMM_STRUCTURE-/bic/zom_icoci
      / COMM_STRUCTURE-/bic/zom_icnrv ) * c_hundred.
    I know that the field COMM_STRUCTURE-/bic/zom_icnrv can come with value zero and return me the msg error but I saw that none of the 90 fields are zero (value <> 0) in the DSO. And besides there are others records equals to the records with error that not generate the arithmetical error.
    Could you help me to solve this problem?
    Regards,

    Hi,
    Check if the c_hundred variable has same type as that of two keyfigures used in the formula.
    Regards
    Akhan

  • Macbook pro slow finder apps not working many errors found in console

    Problem description:
    finder is slow very at startup many errors found in console and after fixing some show up again and when fixed others show up. I run etrecheck here is the report.
    Thank you for any help
    EtreCheck version: 2.0.4 (89)
    Report generated 15 ottobre 2014 10:30:35 CEST
    Hardware Information: ℹ️
      MacBook Pro (17-inch, Early 2011) (Verified)
      MacBook Pro - model: MacBookPro8,3
      1 2.2 GHz Intel Core i7 CPU: 4-core
      8 GB RAM Upgradeable
      BANK 0/DIMM0
      4 GB DDR3 1333 MHz ok
      BANK 1/DIMM0
      4 GB DDR3 1333 MHz ok
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      Intel HD Graphics 3000 - VRAM: 512 MB
      Color LCD 1680 x 1050
      AMD Radeon HD 6750M - VRAM: 1024 MB
    System Software: ℹ️
      OS X 10.9.5 (13F34) - Uptime: 10:25:47
    Disk Information: ℹ️
      TOSHIBA MK7559GSXF disk0 : (750,16 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted> : 210 MB
      Macintosh HD (disk0s2) /  [Startup]: 701.48 GB (464.15 GB free)
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      BOOTCAMP (disk0s4) /Volumes/BOOTCAMP : 47.81 GB (6.82 GB free)
      MATSHITADVD-R   UJ-898 
    USB Information: ℹ️
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Inc. BRCM2070 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Configuration files: ℹ️
      /etc/hosts - Count: 15
    Gatekeeper: ℹ️
      Anywhere
    Kernel Extensions: ℹ️
      /Applications/TechTool Pro 7.app
      [not loaded] com.micromat.driver.spdKernel (1 - SDK 10.8) Support
      /Applications/Toast 10 Titanium/Toast Titanium.app
      [not loaded] com.roxio.BluRaySupport (1.1.6) Support
      [not loaded] com.roxio.TDIXController (1.7) Support
      /Library/Application Support/MacKeeper/AntiVirus.app
      [not loaded] net.kromtech.kext.AVKauth (2.3.7 - SDK 10.9) Support
      [loaded] net.kromtech.kext.Firewall (2.3.7 - SDK 10.9) Support
      /System/Library/Extensions
      [loaded] com.Cycling74.driver.Soundflower (1.5.3 - SDK 10.6) Support
      [not loaded] com.devguru.driver.SamsungComposite (1.4.18 - SDK 10.6) Support
      [loaded] com.globaldelight.driver.BoomDevice (1.1 - SDK 10.1) Support
      [loaded] com.globaldelight.driver.VoilaDevice (1.1 - SDK 10.1) Support
      /System/Library/Extensions/ssuddrv.kext/Contents/PlugIns
      [not loaded] com.devguru.driver.SamsungACMControl (1.4.18 - SDK 10.6) Support
      [not loaded] com.devguru.driver.SamsungACMData (1.4.18 - SDK 10.6) Support
      [not loaded] com.devguru.driver.SamsungMTP (1.4.18 - SDK 10.5) Support
      [not loaded] com.devguru.driver.SamsungSerial (1.4.18 - SDK 10.6) Support
      /Users/[redacted]/Library/Parallels/Parallels Service.app
      [not loaded] com.parallels.kext.prl_hid_hook (5.0 9376.599993) Support
      [not loaded] com.parallels.kext.prl_hypervisor (5.0 9376.599993) Support
      [not loaded] com.parallels.kext.prl_netbridge (5.0 9376.599993) Support
      [not loaded] com.parallels.kext.prl_usb_connect (5.0 9376.599993) Support
      [not loaded] com.parallels.kext.prl_vnic (5.0 9376.599993) Support
    Launch Agents: ℹ️
      [invalid?] com.adobe.AAM.Updater-1.0.plist Support
      [running] com.micromat.TechToolProAgent.plist Support
      [invalid?] com.oracle.java.Java-Updater.plist Support
    Launch Daemons: ℹ️
      [invalid?] com.ambrosiasw.ambrosiaaudiosupporthelper.daemon.plist Support
      [loaded] com.barebones.authd.plist Support
      [running] com.micromat.TechToolProDaemon.plist Support
      [invalid?] com.oracle.java.Helper-Tool.plist Support
      [loaded] com.rogueamoeba.hermes.plist Support
      [loaded] com.rogueamoeba.instanton-agent.plist Support
      [running] com.zeobit.MacKeeper.AntiVirus.plist Support
      [running] com.zeobit.MacKeeper.plugin.AntiTheft.daemon.plist Support
    User Launch Agents: ℹ️
      [invalid?] com.epson.epw.agent.plist Support
      [invalid?] com.Livestation.plist Support
      [invalid?] com.parallels.desktop.launch.plist Support
      [running] com.spotify.webhelper.plist Support
      [running] com.zeobit.MacKeeper.Helper.plist Support
    User Login Items: ℹ️
      iTunesHelper Applicazione (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
      Dropbox Applicazione (/Applications/Dropbox.app)
      WashingMachineHelper UNKNOWN (missing value)
      RealPlayer Downloader Agent Applicazione (/Users/[redacted]/Library/Application Support/RealNetworks/RealPlayer Downloader Agent.app)
      Launch Nikon Message Center 2 Applicazione (/Applications/Nikon Software/Nikon Message Center 2/Nikon Message Center 2.app/Contents/SharedSupport/Launch Nikon Message Center 2.app)
      KiesAgent ApplicazioneHidden (/Applications/Kies.app/Contents/MacOS/KiesAgent.app)
      fuspredownloader ApplicazioneHidden (/Users/[redacted]/Library/Application Support/.FUS/fuspredownloader.app)
      Launch Nikon Message Center 2 Applicazione (/Applications/Nikon Software/Nikon Message Center 2/Nikon Message Center 2.app/Contents/SharedSupport/Launch Nikon Message Center 2.app)
      WDQuickView Applicazione (/Library/Application Support/WDSmartWare/WDQuickView.app)
    Internet Plug-ins: ℹ️
      Default Browser: Version: 537 - SDK 10.9
      Flip4Mac WMV Plugin: Version: 3.2.0.16   - SDK 10.8 Support
      AdobeAAMDetect: Version: AdobeAAMDetect 1.0.0.0 - SDK 10.6 Support
      FlashPlayer-10.6: Version: 15.0.0.152 - SDK 10.6 Support
      AdobePDFViewerNPAPI: Version: 11.0.09 - SDK 10.6 Support
      DivXBrowserPlugin: Version: 1.4 Support
      Flash Player: Version: 15.0.0.152 - SDK 10.6 Mismatch! Adobe recommends 15.0.0.189
      QuickTime Plugin: Version: 7.7.3
      AmazonMP3DownloaderPlugin101749: Version: Unknown
      SharePointBrowserPlugin: Version: 14.3.9 - SDK 10.6 Support
      AdobePDFViewer: Version: 11.0.09 - SDK 10.6 Support
      Silverlight: Version: 5.1.20125.0 - SDK 10.6 Support
      JavaAppletPlugin: Version: 14.9.0 - SDK 10.7 Check version
    User Internet Plug-ins: ℹ️
      QuickTime Plugin: Version: 7.6.6
      EPPEX Plugin: Version: 3.0.5.0 Support
      AdobePDFViewer: Version: 10.0.0 Support
      SharePointBrowserPlugin: Version: 14.1.0 Support
      RealPlayer Plugin: Version: (null) Support
      Google Earth Web Plug-in: Version: 7.1 Support
      JavaPlugin2_NPAPI: Version: 14.9.0 - SDK 10.7
      iPhotoPhotocast: Version: 7.0
    Safari Extensions: ℹ️
      AdBlock (Disabled)
      HelloSign-for-Gmail
      Awesome Screenshot
      Evernote Web Clipper
      Ghostery
    3rd Party Preference Panes: ℹ️
      DivX  Support
      Flash Player  Support
      Flip4Mac WMV  Support
      TechTool Protection  Support
      WDQuickView  Support
    Time Machine: ℹ️
      Mobile backups: OFF
      Auto backup: YES
      Volumes being backed up:
      Macintosh HD: Disk size: 701.48 GB Disk used: 237.34 GB
      Destinations:
      TimeMachine [Network]
      Total size: 1 TB
      Total number of backups: 15
      Oldest backup: 2014-08-22 12:02:11 +0000
      Last backup: 2014-10-15 08:18:34 +0000
      Size of backup disk: Adequate
      Backup size 1 TB > (Disk used 237.34 GB X 3)
    Top Processes by CPU: ℹ️
          6% WindowServer
          5% com.apple.WebKit.Networking
          3% Safari
          2% cookied
          1% hidd
    Top Processes by Memory: ℹ️
      275 MB Finder
      275 MB AntiVirus
      215 MB com.apple.IconServicesAgent
      146 MB MacKeeper Helper
      146 MB Safari
    Virtual Memory Information: ℹ️
      2.22 GB Free RAM
      4.17 GB Active RAM
      797 MB Inactive RAM
      1.40 GB Wired RAM
      695 MB Page-ins
      0 B Page-outs

    A number of problems exist including the notorious MacKeeper. Start by removing it according to the instructions below.
    Follow these instructions to uninstall MacKeeper. They have been tested with the most recent version of MacKeeper. Earlier versions than the one released in 2012 require more extensive work to uninstall all its components.
    If you actually used MacKeeper to alter your system, e.g. "remove excess binaries" or such, you will need to reinstall OS X as well as all your additional software. Uninstalling MacKeeper is insufficient to reverse the corruption it is capable of - once again, that is if you used it.
    If you merely installed MacKeeper but did not use it to perform any particular action, the following instructions will suffice.
    If you used MacKeeper to encrypt any files or folders, use MacKeeper to un-encrypt them first.
    Quit the MacKeeper app if it is running.
    Open your Applications folder: Using the Finder's Go menu, select Applications.
    Drag the MacKeeper icon from your Applications folder (not the Dock) to the Trash.
    You will be asked to authenticate (twice).
    You do not need to provide a reason for uninstalling it.
    Just click the Uninstall MacKeeper button. You will be asked to authenticate again.
    After it uninstalls you may empty the Trash and restart your Mac. All that will remain is an inert log file that does nothing but occupy space on your hard disk.
    An apparently modified Hosts file is another concern, which is apparently blocking Adobe software requests to contact its server for whatever reason it needs to do that. If you know the reason for altering Hosts then you can troubleshoot it on the basis of that knowledge. If you do not know the reason, it often occurs as a result of installing pirated or "cracked" software to circumvent its ability to contact an external host to verify their software was legitimately obtained. If that's the case then anything is possible as a result of having installed illegally obtained software.
    Awesome Screenshot is adware. Most people don't install such things unless they are deceived into doing so.
    Don’t install browser extensions unless you understand their purpose. For Safari, go to the Safari menu > Preferences > Extensions. If you see any extensions that you do not recognize or understand, simply click the Uninstall button and they will be gone. For browsers other than Safari, perform the equivalent actions.
    For an explanation or how this may have occurred and how to avoid it in the future read How to install adware.
    Uninstall the following according to their respective instructions.
    MicroMat "TechTool Pro"
    Western Digital "drive utility" software
    Intego "Washing Machine"
    You need to be much more circumspect regarding the software you choose to install on your Mac. May I suggest that you review the following setting in System Preferences?
    Although you may easily override that setting, it will serve to protect you from inadvertently installing garbage.

  • "Errors Found During Burning Process"

    Hi,
    Having sucessfully burned AVI movies using iDVD in the past I have started getting errors. iDVD now does the same thing regardless of the movie i'm trying to burn and the media I use.
    Having selected Best Quality (due to the film size), the menu rendering works fine, as does the prolonged job of encoding the video. When iDVD gets to the Audi encoding bit, just before it starts to burn the DVD itself, iDVD ejects the disc and states: Errors Found During Burning Process.
    Clicking on the arrow to get more info it states: "The recording device reported the hardware error: Tracking servo failure. (0x09, 0x01.)" Bizarrely, the main iDVD progress window states both 'Cleaning Up' and 'Writing Lead-In' and the only way to get out if it is to force quit.
    I've read a few posts on here and tried a couple of things such as trashing the plist file and reparing permissions. I also booted up the diagnostic disc to see if it could see a problem with the optical drive. But nothing has solved the problem.
    Any ideas?
    For reference, I'm running iDVD 5.0.1 on Tiger on a 1.8 G5 iMac with 1GB RAM.
    Appreciate any help you can give me.
    Neil

    Colleagues:
    Ran into the same error, # -34506. Definitely frustrating as I was burning a DVD of an iMovie that I'd spent many hours editing. The iMovie is only 30 miniutes in length, so I don't think it's a size issue. iDVD went through each one of it's steps in burn DVD sequence. However, 45 minutes later when processing is finished, the message reads: "Burning Finished, Errors were found during the burning process." Clicked to see the detail: "The error # -34506 was reported." Checked the DVD and nothing was burned!!! The same thing happens when I opt for disk image. No img file is produced. This is especially frustrating as it looks like it all but completed processing.
    Does anyone know what Error # -34506 specifically indicates? How do you fix this? Does it only happen in a specific sequence? And, is Apple aware of the problem?
    Thanks!

  • "Error loading Business Component" in all projects (10.1.3 EA)

    I have just started getting the following error message prompt when I attempt to expand any of my projects in the Appplication Navigator:
    Error loading Business Component:
    <path to>\Model.jpr
    Exception: java.lang.NullPointerException
    Here is a sample stack trace:
    java.lang.NullPointerException
         at oracle.jbo.dt.jdevx.ui.JdxVcsListener.<init>(JdxLoader.java:1723)
         at oracle.jbo.dt.jdevx.ui.JdxJboAddin.initVCSListener(JdxJboAddin.java:684)
         at oracle.jbo.dt.jdevx.ui.JdxJboAddin.initJboProject(JdxJboAddin.java:203)
         at oracle.jbo.dt.jdevx.ui.JdxLoader.doOpenProject(JdxLoader.java:1500)
         at oracle.jbo.dt.jdevx.ui.JdxLoader.openProject(JdxLoader.java:1454)
         at oracle.jbo.dt.jdevx.ui.JdxLoader.update(JdxLoader.java:147)
         at oracle.ide.model.IdeSubject.notifyObservers(IdeSubject.java:94)
         at oracle.ide.model.Node.notifyObservers(Node.java:458)
         at oracle.ide.model.UpdateMessage.fireObjectOpened(UpdateMessage.java:681)
         at oracle.ide.model.Node$1$4.run(Node.java:1527)
         at oracle.ide.model.Node$1.invokeLaterIfNeeded(Node.java:1587)
         at oracle.ide.model.Node$1.nodeOpened(Node.java:1520)
         at oracle.ide.model.Node.fireNodeOpened(Node.java:1139)
         at oracle.ide.model.Node.open(Node.java:573)
         at oracle.ide.model.Node.ensureOpen(Node.java:976)
         at oracle.ide.model.DataContainer$2.run(DataContainer.java:147)
         at oracle.ide.model.Node.runWhileSynchronized(Node.java:809)
         at oracle.ide.model.DataContainer.getSharedPropertiesOnly(DataContainer.java:152)
         at oracle.ide.model.Project.getPropertiesImpl(Project.java:1047)
         at oracle.ide.model.Project.getProperties(Project.java:320)
         at oracle.jdeveloper.model.PathsConfiguration.getInstance(PathsConfiguration.java:89)
         at oracle.jdeveloper.model.PathsConfiguration.getInstance(PathsConfiguration.java:84)
         at oracle.jdeveloper.library.ProjectLibrary.getSourcePath(ProjectLibrary.java:67)
         at oracle.jdeveloper.model.PathsConfiguration.getSourcePath(PathsConfiguration.java:146)
         at oracle.jdeveloper.model.JavaProject$5.getValue(JavaProject.java:523)
         at oracle.jdeveloper.model.JavaProject$CachingProjectChangeListener.projectOpened(JavaProject.java:478)
         at oracle.ide.model.Project$StorageListener.fireProjectOpened(Project.java:1118)
         at oracle.ide.model.Project$StorageListener.mav$fireProjectOpened(Project.java)
         at oracle.ide.model.Project$NL.nodeOpened(Project.java:1077)
         at oracle.ide.model.Node.fireNodeOpened(Node.java:1139)
         at oracle.ide.model.Node.open(Node.java:573)
         at oracle.adf.dt.providers.DCXDataControlProvider.addControlsToArrayList(DCXDataControlProvider.java:51)
         at oracle.adf.dt.DataControlManager.getAllDataControls(DataControlManager.java:128)
         at oracle.adf.dt.controls.treemodel.DataControlsTreeModel.<init>(DataControlsTreeModel.java:50)
         at oracle.adf.dt.controls.treemodel.DataControlsTreeModel.<init>(DataControlsTreeModel.java:35)
         at oracle.adf.dt.controls.treemodel.DataControlsTreeModel.<init>(DataControlsTreeModel.java:30)
         at oracle.adf.dt.controls.treemodel.DataControlsTreeModel.<init>(DataControlsTreeModel.java:25)
         at oracle.adf.dt.controls.DataControlsTree.createDataControlsTreeModel(DataControlsTree.java:81)
         at oracle.adf.dt.controls.ModelCreator.run(DataControlsTree.java:113)
         at oracle.adf.dt.controls.DataControlsTree.internalPopulateFromActiveWorkSpace(DataControlsTree.java:76)
         at oracle.adf.dt.dbpanel.DataBindingPanelTree.update(DataBindingPanelTree.java:102)
         at oracle.ide.model.IdeSubject.notifyObservers(IdeSubject.java:94)
         at oracle.ide.model.Node.notifyObservers(Node.java:458)
         at oracle.ide.IdeViewHandler.fireActiveProjectChanged(IdeViewHandler.java:147)
         at oracle.ide.IdeViewHandler.activateProjectInWorkspace(IdeViewHandler.java:135)
         at oracle.ide.IdeViewHandler.viewSelectionChanged(IdeViewHandler.java:166)
         at oracle.ide.view.View.fireViewSelectionChanged(View.java:531)
         at oracle.ideri.navigator.DefaultNavigatorWindow.fireViewSelectionChanged(DefaultNavigatorWindow.java:613)
         at oracle.ide.view.View.updateSelectionImpl(View.java:484)
         at oracle.ide.view.View.updateSelection(View.java:324)
         at oracle.ideri.navigator.DefaultNavigatorWindow$3.viewSelectionChanged(DefaultNavigatorWindow.java:1011)
         at oracle.ide.view.View.fireViewSelectionChanged(View.java:531)
         at oracle.ide.view.View$4.actionPerformed(View.java:356)
         at javax.swing.Timer.fireActionPerformed(Timer.java:271)
         at javax.swing.Timer$DoPostEvent.run(Timer.java:201)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    I am unable to edit any of my business components. I get NullPointerExceptions when I try.
    Any clue what's going on here and how to fix it? If I need to re-install, which directories do I need to copy over from the original installation to the new one in order to pick up where I left off (minus the errors, of course! )?
    Thanks for any help!
    Andy

    Pardon the -bump-. I figured I'd give it one more try for feedback before I re-install and transfer all my settings, connections etc.
    Thanks,
    Andy

Maybe you are looking for

  • Multiple computers with iPod

    Hello, I'm new to the forum, hope you folks can holp out. I am planning to purchase a new iPod video. I want to sync it with tunes and photos here at home on my iMac. In a few months I will be going overseas for at least a year and will be getting a

  • How can i Filter a column in my iPad 2?

    I bought numbers and I'm trying to Filter rows chosing a valué of a column. Can youtube help me?? Thanks in advance

  • Assets Transfer

    Hi Gurus, My client want to  transfer the assets from the company code, (we are having only one company code)  but with out other company code. We have tried with t-code ABAON but some error we are facing.  And we are not ready to create a one more d

  • SRM program running too long BBP_GET_STATUS_2 and is locking carts

    Program BBP_GET_STATUS_2 appears to be running for more than 7-8 minutes at a time, and apparently is locking carts (especially those that buyers are in the process of approving)/ The variant we are using is wide open (i.e. there are not selections)

  • Swapping to a new machine

    I'm about to have to give up my corporate macbook for an iMac.  I have an external hard drive that has kept up as my time machine.  Can I use this to move out and move in?