ST03N and new BI Stats

Hello Everyone,
We have installed, activated and are filling all the new BI Stat 2004s Cubes.  Running the Business Content queries returns results just fine.
Problem is when running ST03N (BI Workload), the only thing that shows is Process Chain.  InfoCube/Queries is blank.
Can someone explain how to get InfoCube and queries to show up?  We have activated stats (X - 2 Detail) in transaction RSDDSTAT for Cubes and Queries, yet still nothing shows in ST03N.
We read that ST03N now reads the new tables RSDDSTAT_DM and RSDDSTAT_OLAP.  Both these tables have data and as mentioned above, the queries show results.
Why not ST03N?
Thanks

Hi Colleen,
   If you have to get data in ST03N you need to do some settings.
   In RSA1 select "Tools" from main menu select "BW statistics" option and select OLAP and WHM options of the cubes for which you want to get statistical data.
  When you select these option then statistical data(loading,deletion,compression,front end time etc..) will be saved in the tables RSDDSTAT,RSDDSTATAGGR etc.
  Load some data to those cubes after these settings, now you will be able find data in ST03N.
Assign points if it helps.
Regards
Prasad

Similar Messages

  • Electronic bank statement and new General ledger

    Hi all,
    we want to implement electronic bank statement and new G/L is active. While uploading the file, we receive an error: No Profit Center could be found. For us it is clear, because in the uplaod file there is no Profit Center. But how can we solve this problem? Can we activate like a user exit with a " dummy PC" for EBS? if yes, where and how? Or is there any SAP solution already provided? We assume this problem is a general problem for all SAP system with new G/L activation.
    Thanks in advance.
    Heidi

    I found the answer in Customizing new G/L. thanks anyway.
    Heiidi

  • Difference between At new and on change statement?

    What is the difference between at new and on change statement? Please explain with an example.

    hi
    on change of differs from at new in the following respects:
    It can be used in any loop construct, not just loop at. For example, it can be used within select and endselect, do and enddo, or while and endwhile, as well as inside get events.
    A single on change of can be triggered by a change within one or more fields named after of and separated by or. These fields can be elementary fields or field strings. If you are within a loop, these fields do not have to belong to the loop.
    When used within a loop, a change in a field to the left of the control level does not trigger a control break.
    When used within a loop, fields to the right still contain their original values; they are not changed to contain zeros or asterisks.
    You can use else between on change of and endon.
    You can use it with loop at it where . . ..
    You can use sum with on change of. It sums all numeric fields except the one(s) named after of.
    Any values changed within on change of remain changed after endon. The contents of the header line are not restored as they are for at and endat.
    REGARDS
    PRASANTH

  • The new "foreach" statement and maps

    The new "foreach" statement requires an object that implements the java.lang.Iterable<T> interface.
    But why do not extend "for" for accepting objects that implements the Map interface?
    Map<String,String> m = new TreeMap<String,String>();
    for (String key, String value : m) {
         System.out.println (key + "=" + value);   
    }The current alternative
    Map<String,String> m = new TreeMap<String,String>();
    for (Map.Entry<String,String> e : m.entrySet()) {
         System.out.println (e.getKey() + "=" + e.getValue());   
    }is not so clean.

    The new "foreach" statement requires an object that
    implements the java.lang.Iterable<T> interface.Incidentally, I believe "foreach" also allows an object that is an array.
    But why do not extend "for" for accepting objects that
    implements the Map interface?I think that the use of "Iterable" is a very good idea. The interface contains just one method (iterator) and that method is inherently linked to the concept of "foreach". This means anyone can write their own class that implements Iterable, and their class can then be used with "foreach".
    If we specified that "foreach" also worked with Map (with its umpteen methods, only one of which (entrySet) is relevant to "foreach"), this would prevent people writing their own classes which iterate through pairs of values (unless those classes happened to implement Map).
    Ideally, there would be a new interface Pair<A,B> in java.lang (with getFirst() and getSecond() methods), and then if the compiler came across something like this:
        for (String str, Widget widget : items) { ... }where items is an instance of Iterable<Pair<String,Widget>>, then for each iteration, the "Pair" would be split into its component parts and stored in the variables "str" and "widget".
    Unfortunately, it would be difficult to retrofit this concept to java.util.Map, since it would require Map to introduce a new method:
    interface Map<K,V> extends Iterable<Pair<K,V>> {
        Iterator<Pair<K,V>> iterator();
    }and Map.Entry would need to extend Pair, and therefore introduce two new methods:
    interface Entry<K,V> extends Pair<K,V> {
        K getFirst();
        V getSecond();
    }Both of these changes would break huge amounts of existing code that uses Map or Map.Entry.
    Maybe one for Java 3 :)
    Geoff

  • Macbook 13.3 with new battery and new magsafe adaptor will not charge above 80% no indicator light on charger display states "not charging" while attached to charger

    macbook 13.3 with new battery and new magsafe adaptor will not charge above 80% no indicator light on charger, display states "not charging" while attached to charger

    rgregoryadams wrote:
    macbook 13.3 with new battery and new magsafe adaptor will not charge above 80% no indicator light on charger, display states "not charging" while attached to charger
    You'll want to reset your SMC (System Management Controller). Instructions are simple:
    http://support.apple.com/kb/ht3964

  • New Provide statement in ECC 6.0

    Hi All,
    I am getting infotype 0001 information by using function module HR_READ_INFOTYPE.Now i need to check the Employee subgroup (PERSK) change from 11 to 12 .For this i need to use PROVIDE statment and if change happens i need to make a returning parameter false.
    How can i use the new provide statement
    l_sub is a flag.
    *provide fields * from p0001 into l_temp VALID l_sub*
    BOUNDS persk AND persk  BETWEEN l_begda AND l_endda.
    i am not getting any records while running this query.Can you please help me out.What l_temp returns if the loop pass success.In bound what  i need to give here i need to check the persk value.
    Thanks
    Chandu

    Hi Chandu,
    When you are using the bounds statement in a provide field statement,
    the two fields on which the bound condition is being applied have to be
    different columns of same type of the table from which you are selecting the values..
    For eg
    PROVIDE fields * from p0001 into itab valid flag1  BOUNDS begda AND endda
            BETWEEN pnpbegda AND pnpendda.
    What you are using is not giving any values is because it is referring to only
    one column of the table p0001.
    Get Back if u still have Doubts
    Ira !!

  • The new MERGE statement in Oracle 9i

    Has anyone used the new Merge statement to process large amounts of data? Currently we use PL/SQL to update/insert into our tables when we are loading large amounts of data (close to one million rows) because we can set commit points and avoid rollback problems. I am wondering if we use Merge instead how this will affect rollback? Are we still going to have to code for this problem?
    Thanks in advance!

    Thanks for the suggestions. Our problem is that the base table contains 50 million rows and seven indexes, and each month we try to insert/update one million rows. Some of the data in the base table is historical so if we implemented your solution we would lose any records not being updated.
    What I am really trying to determine is if the MERGE statement has any redo log ramifications. Will we run in rollback space problems if we implement it instead of running PL/SQL in the following format:
    FOR cur_rec in c1 LOOP
    UPDATE table a
    SET col a = cur_rec.col a, ...
    WHERE ...
    IF SQL%NOTFOUND THEN
    INSERT (col a , col b, col c...)
    VALUES (cur_rec.col a, cur_rec.col b...);
    END IF;
    We commit every 10,000 records (as determined by SQL%ROWCOUNT). This can be time comsuming and Oracle claims that the new MERGE command will avoid costly overhead and reduce data scans. However, I am concerned that we may hit rollback problems if we implement a straight SQL statement such as MERGE. Any thoughts?

  • Doc splitting and new Gl a/c

    Hi All,
    can any one tell me the difference between doc splitting and new gl concept. and explain me how will it useful in preparing profit center wise balance sheet.
    and pls explain me the configuration steps.
    Thanks In advance
    Sarayu

    Hi
    Document splitting enables a complex display of documents. Line items are split here for selected dimensions. This ensures that you can draw up complete financial statements for the selected dimensions at any time. Below example would further clear :-
    Suppose a vendor invoice containing the following items is entered:
    Posting Key Account Segment Amount
    31 Payable 100.00-
    40 Expense 0001 40.00
    40 Expense 0002 60.00
    Document splitting then creates the following document in the general ledger view:
    Posting Key Account Segment Amount
    31 Payable 0001 40.00-
    31 Payable 0002 60.00-
    40 Expense 0001 40.00
    40 Expense 0002 60.00
    Settings for Splitting are as follows :-
    In the IMG, choose Financial Accounting (New)->General Ledger Accounting (New)-> Business Transactions-> Document Splitting.
    1. Classify G/L Accounts for Document Splitting - You need to classify the individual document items so that the system knows how to handle them. You do this by assigning them to an item category. The item category is determined by the account number. In this IMG activity, you need to assign the appropriate accounts.
    2. Classify Document Types for Document Splitting - Every business transaction that is entered is analyzed during the document splitting process. In this process, the system determines which splitting rule is applied to the document. To enable the system to determine the splitting rule, you need to assign a business transaction variant to each document type.
    3. Define Zero-Balance Clearing Account - Here you define a clearing account for account assignment objects for which you want to have a zero balance setting when the balance is not zero.
    4. Define Document Splitting Characteristics for General Ledger Accounting - Here you specify to which document splitting characteristics document splitting applies, for example, profit center or segment. The characteristics that you specify should be maintained in at least one of your ledgers. You determine which characteristics are maintained in your ledger by assigning scenarios or customer fields to your ledgers.
    You also define how this characteristic is to be handled by specifying, for example, whether you want to apply a zero balance setting, whether the field is a required entry field, and the appropriate partner field.
    5. Define Document Splitting Characteristics for Controlling - Here you specify which additional characteristics you want to apply in document splitting. The additional characteristics are not relevant for General Ledger Accounting. Instead, they are relevant for components in Controlling that use documents transferred from General Ledger Accounting.
    6. Define Post-Capitalization of Cash Discount to Assets - Here you define whether the cash discount that is applied in the payment of an asset-relevant invoice should be capitalized to the asset. When you select this setting, the cash discount amount is not posted to the cash discount account in the payment document, but instead directly to the asset.
    7. Edit Constants for Nonassigned Processes - Here you define default account assignments (for example, a default segment) for specific line items in processes for which it is not possible to derive the correct account assignments at the time when the document is posted. This is the case if the required information is not yet available when the posting occurs.
    8. Activate Document Splitting - In this IMG activity, you activate document splitting. The splitting method used is that delivered by SAP as standard, which contains the splitting rules for the different business transactions. If this splitting method does not meet your requirements, you can first define and then select your own method in Customizing for document splitting (see the next step).
    Settings for Extended Document Splitting
    Here you define your own rules for document splitting and make the necessary settings so that the system applies the rules you defined and not the SAP standard rules.
    9. Define Splitting Method - Here you define your own method for document splitting. A splitting method contains the rules governing how the individual item categories are dealt with.
    10. Define Splitting Rule - Here you define the splitting rules for document splitting. You assign one or more business transaction variants, the account key for the zero balance setting, and the leading item categories for cross-company code transactions to a splitting method.
    11. Assign Splitting Method - Here you assign the splitting method to be used for document splitting after activation. If you want to activate your own splitting method, replace the standard method with your own method.
    12. Define Business Transaction Variants - Here you can define business transaction variants for the business transactions in document splitting.
    Regards,
    R.Ramakrishnaraj

  • Atlantic City, NJ and New York, NY calling area

     I have search the Internet for this and have not had any real luck.
    What is the local calling area for Atlantic City, NJ and New York, NY, that will not occur long distance charges.
    Mainly for Atlantic City, I'm worried about if Ocean City, Wildwood, and Ventnor City are all included or not.
    For New York, NY, I just need to know if the whole city local, I would assume, but New York, is setup completely different than most cities I've seen, with 5 boroughs in a city and it being fairly large with multiple area codes.
    Also, all this would be the exact same at a Verizon or possibly others payphone as well as just a Verizon landline correct?

    Same thing happened to me. It doesn't even matter if you ask explicitly for the weather in NYC.
    I asked for the weather in "New York City" and got the results for New York, TX.
    I then asked for the weather in "New York City, New York" and got the same results for New York, TX.
    Than I asked "What is the weather today in New York City in the state of New York?" and got the weather for New York, TX.
    I asked for "Manhattan, New York" and got the weather for TX.
    But when I asked for the weather in Brooklyn... I got the weather for Brooklyn, OH.
    Pretty impressive.

  • Putting in new solid state hard drive

    I'm trying to instal a new solid state hard drive into my Pavilion p-6. I ordered the re-installation disks from HP. The new solid state hard drive is smaller than the original drive. When I put in disk#1 the disk promt tells me the new hard drive is smaller than the original and it will not continue the process. HOW CAN I OVER RIDE THIS? And make this work?

    Hi,
    The information that I had last received from HP internal indicates that a 160 GB SSD would be the minimum size required before the HP external recovery media will work.
    HP DV9700, t9300, Nvidia 8600, 4GB, Crucial C300 128GB SSD
    HP Photosmart Premium C309G, HP Photosmart 6520
    HP Touchpad, HP Chromebook 11
    Custom i7-4770k,Z-87, 8GB, Vertex 3 SSD, Samsung EVO SSD, Corsair HX650,GTX 760
    Custom i7-4790k,Z-97, 16GB, Vertex 3 SSD, Plextor M.2 SSD, Samsung EVO SSD, Corsair HX650, GTX 660TI
    Windows 7/8 UEFI/Legacy mode, MBR/GPT

  • Creating new Connections/Statements/ResultSets

    Hi,
    RDMS = Sybase
    JDBC = Jconnect 5.5 obtained from Sybase website
    Purpose:
    To loop through the program below with different queries and produce
    a resultset.
    Details:
    I have a program that creates a query stores it in a static setter.
    The program calls the program below. The program below:
    (1) obtains the query from a static getter
    (2) creates a connection/statement/resultset
    (3) returns to the calling program where
    (a) resultset is displayed
    (b) calls close() in the program below which closes the
    connection/statement/resultset
    Problem:
    I thought that creating a new connection/statement/resultset
    each time the program below is called would work.
    The program below returns the correct resultset for the first query
    but when called with a different query returns the first resultset that
    was generated.
    Question:
    Do I have to use different objects for the connection/statement/resultset each time the program is called
    even though the existing connection/statement/resultset is closed
    before a new connection/statement/resultset is created ?
    if yes,
    I don't how to change the object for connection/statement/resultset
    dynamically each time the program below is called.
    Any assistance provided would be greatly appreciated !!
    Thanks for your time,
    YAM-SSM
    package ecmutl;
         import java.awt.*;
         import java.sql.*;
         public class DbConnect implements Runnable {     
              public static Thread queryThread = null;     
              public static Font        fntF;
              public static Connection conn = null;
              public static ResultSet rs = null;
              public static Statement stmt = null;      
              public static String nodename = EcmUtlLogicals.getNodeName();
              public static String password =     EcmUtlLogicals.getPassword();
              public String newline = "\n";
              public static String sqlstate;
              public static String message;
              public static String queryThreadDone = "false";
              public static String query = EcmUtlLogicals.getQuery();
              public static String dbname = EcmUtlLogicals.dbname;
              public static String username = EcmUtlLogicals.username;
                 public static int SybaseReturnCode; 
              void Connect() {               
                        try {                              
                        Class.forName("com.sybase.jdbc2.jdbc.SybDriver").newInstance();
                           conn = DriverManager.getConnection("jdbc:sybase:Tds:"+nodename+"/"+dbname,username,password);     
                   catch (SQLException exc) {
                        sqlstate = exc.getSQLState();          
                        message = exc.getMessage();
                        SybaseReturnCode = exc.getErrorCode();
                   catch (InstantiationException iste) {
                   catch (ClassNotFoundException cnfe) {
                   catch (IllegalAccessException iae) {
                   if (queryThread == null) {
                        queryThread = new Thread(this, "Query");
                        queryThread.start();               
                   } // close if                 
              } // close Connect method
              public void run() {               
                  try {                             
                                     stmt = DbConnect.conn.createStatement();                 
                        rs = stmt.executeQuery(query); 
                        queryThread = null;     
                   } // close try
                   catch (SQLException sqlex) {
                        sqlstate = sqlex.getSQLState();                     
                        message = sqlex.getMessage();
                        SybaseReturnCode = sqlex.getErrorCode();
                                    queryThread = null;
                            } // close catch
                            catch (java.lang.Exception ex) {
                          ex.printStackTrace ();
                   } // close catch
                   queryThreadDone = "true";
              } // close run method
              static void close() {     
                   try {
                         if ( rs != null){
                              rs.close();          
                         if ( stmt != null){
                              stmt.close();
                         if ( conn !=  null){
                              conn.close();     
                   } // close try
                   catch (SQLException error){     
              }// close close()          
    } // close DbConnect class     

    Then I'd say you should write a QueryThread object
    that extends Thread and takes an SQL statement in its
    constructor. In the run method, create a connection,
    statement, and result set to run that query, close
    them in reverse order when you're done, and provide a
    getter to give access to the results. Don't return a
    reference to the result set; put the results in a data
    structure or CachedRowSet and close out the result set
    as soon as you're done with it. ResultSets are
    database cursors, which are scarce resources.
    With this design, every thread has its own connection
    and resources. They can't conflict with each other. -
    MODHi MOD,
    I finished coding a QueryThread object exactly as you instructed
    and IT WORKS !!!!! The calling program calls QueryThread by:
    QueryThread qt = new QueryThread(query);
    qt.start();
    QueryThread code:
    package ecmutl;
         import java.awt.*;
         import java.sql.*;
         import java.util.List;
         import java.util.*;
         public class QueryThread extends Thread {
              public static Thread queryThread = null;     
              public static Font        fntF;
              public static Connection conn = null;
              public static ResultSet rs = null;
              public static Statement stmt = null;      
              public static String nodename = EcmUtlLogicals.getNodeName();
              public static String password = EcmUtlLogicals.getPassword();
              public String newline = "\n";
              public static String sqlstate;
              public static String message;
              public static String queryThreadDone = "false";
              public String query;
              public static String dbname = EcmUtlLogicals.dbname;
              public static String username = EcmUtlLogicals.username;     
              public static int SybaseReturnCode;
              public QueryThread(String query) {
                   this.query = query;                 
              public void run() {               
                   try {              
                        Class.forName("com.sybase.jdbc2.jdbc.SybDriver").newInstance();
                        conn = DriverManager.getConnection("jdbc:sybase:Tds:"+nodename+"/"+dbname,username,password);                                                                                                         
                        stmt = conn.createStatement();                 
                        rs = stmt.executeQuery(query);
                        List resultSetArray = new LinkedList();
                        resultSetArray = new ArrayList(); 
                        if (rs != null) {     
                             int i;
                             ResultSetMetaData rsmd = rs.getMetaData ();
                             int numCols = rsmd.getColumnCount ();
                             for (i=1; i<=numCols; i++) {
                                  if (i > 1) resultSetArray.add(",");
                                  resultSetArray.add(rsmd.getColumnLabel(i));
                             resultSetArray.add(newline);
                             boolean more = rs.next ();
                             while (more) {
                                  for (i=1; i<=numCols; i++) {
                                       if (i > 1) resultSetArray.add(",");
                                       resultSetArray.add(rs.getString(i)); 
                                  resultSetArray.add(newline);
                                  more = rs.next ();
                             EcmUtlLogicals.setResultSetArray(resultSetArray);
                             if (rs != null){
                                  rs.close();
                             if (stmt != null) {
                                  stmt.close();
                             if (conn != null) {
                                  conn.close();
                        queryThread = null;                                            
                   catch (SQLException sqlex) {
                        sqlstate = sqlex.getSQLState();                     
                        message = sqlex.getMessage();
                        SybaseReturnCode = sqlex.getErrorCode();
                        queryThread = null;
                   catch (java.lang.Exception ex) {
                                     ex.printStackTrace ();
                   queryThreadDone = "true";
         }I have only be using Java for three months. Sometimes one needs a teacher to go along with the APIs.
    Thanks for your patience/help/time
    YAM-SSM

  • Where are my order number and new number?!

    So I ordered a sim card kit and go phone plan. And I never receive any email about my order numbers and new phone number. I thought my order didn't went through. So I checked my bank statement saying at&t took out the amount I paid for the stuff I bought. But where are my order number? And when I called customer service, they put me on hold for over 20 minutes. I called them 3 times and all they did was put me on hold or transferred my calls to this department and then they hung up me. I'm over here, clueless about my order.

    Hi there
    I’m sorry to hear you have not received a confirmation of your order! I’d be happy to help! Can you please send me a private message by Clicking Here and include the following information?
    Full name
    Cell number
    Best time to reach you
    Thanks,
    Charise

  • JBO-27122 - How to replace ESTCOUNT query and other SQL statements

    Hi,
    Env - JDeveloper 11.1.1.1.0
    I'm trying to run simple CRUD application (Dept --<Emp) with unsuported database (Informix 11.5). The problem is that ADF runs following query on startup:
    SELECT (1) FROM
        (SELECT Emp1.empno,        
                Emp1.ename,        
                Emp1.job,        
                Emp1.mgr,        
                Emp1.hiredate,        
                Emp1.sal,        
                Emp1.comm,        
                Emp1.deptno
           FROM emp Emp1
          WHERE Emp1.deptno = ?) ESTCOUNTbut Informix don't understand SELECT (1) clause and need SELECT (*). Is there any way to replace this. Further - is this possible to customize queries passed to database. I think, that my general problem is that Informix has problems with SQL dialect used by ADF. I noticed also JBO-27122 with filtering table:
    SELECT Emp1.empno,        
           Emp1.ename,        
           Emp1.job,        
           Emp1.mgr,        
           Emp1.hiredate,        
           Emp1.sal,        
           Emp1.comm,        
           Emp1.deptno
    FROM emp Emp1
    WHERE ( ( ( (Emp1.job LIKE ? )
      AND (Emp1.deptno = ? ) ) ) )
      AND Emp1.deptno = ?and also UPDATE statement.
    It's very important for me to run ADF 11 app with Informix 11.5 beacause it's main database in y company.
    Kuba

    Hi Steve,
    Now I have following builder:
    public class InformixSQLBuilder extends SQL92SQLBuilderImpl{  
        @Override
        protected boolean getSupportsAliasInUpdateStatements() {
            return false;
        @Override
        public String getQueryHitCountSQL(RowSet rs){
            return null;
        public static SQLBuilder getInterface() {
          return new InformixSQLBuilder();
    Update, Insert, Delete works !!! but it seems that getQueryHitCountSQL() method can not returns null. When after DML operation when I try to scroll to another Dept in BC tester I get following exception:
    Exception in thread "AWT-EventQueue-0" oracle.jbo.AttributeLoadException: JBO-27022: Nie udało się wczytać wartości o indeksie 1 z obiektem Javy typu java.lang.Integer z powodu java.sql.SQLException.
         at oracle.jbo.server.AttributeDefImpl.loadFromResultSet(AttributeDefImpl.java:2187)
         at oracle.jbo.server.ViewRowImpl.populate(ViewRowImpl.java:3475)
         at oracle.jbo.server.ViewDefImpl.createInstanceFromResultSet(ViewDefImpl.java:2067)
         at oracle.jbo.server.ViewObjectImpl.createRowFromResultSet(ViewObjectImpl.java:4912)
         at oracle.jbo.server.ViewObjectImpl.createInstanceFromResultSet(ViewObjectImpl.java:4761)
         at oracle.jbo.server.QueryCollection.populateRow(QueryCollection.java:3099)
         at oracle.jbo.server.QueryCollection.fetch(QueryCollection.java:2959)
         at oracle.jbo.server.QueryCollection.get(QueryCollection.java:2072)
         at oracle.jbo.server.ViewRowSetImpl.getRow(ViewRowSetImpl.java:4568)
         at oracle.jbo.server.ViewRowSetIteratorImpl.getRowInternal(ViewRowSetIteratorImpl.java:3387)
         at oracle.jbo.server.ViewRowSetIteratorImpl.hasNext(ViewRowSetIteratorImpl.java:1873)
         at oracle.jbo.server.ViewRowSetImpl.hasNext(ViewRowSetImpl.java:3197)
         at oracle.jbo.server.ViewObjectImpl.hasNext(ViewObjectImpl.java:8604)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.isOperationEnabled(JUCtrlActionBinding.java:439)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.isActionEnabled(JUCtrlActionBinding.java:296)
         at oracle.jbo.uicli.controls.JUNavigationBar._isEnabled(JUNavigationBar.java:1341)
         at oracle.jbo.uicli.controls.JUNavigationBar._updateButtonStates(JUNavigationBar.java:1330)
         at oracle.jbo.jbotester.NavigationBar._updateButtonStates(NavigationBar.java:99)
         at oracle.jbo.uicli.controls.JUNavigationBar$3.run(JUNavigationBar.java:1245)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:597)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    Caused by: java.sql.SQLException: ResultSet not open, operation not permitted.
         at com.informix.util.IfxErrMsg.getSQLException(IfxErrMsg.java:407)
         at com.informix.jdbc.IfxResultSet.a(IfxResultSet.java:648)
         at com.informix.jdbc.IfxResultSet.b(IfxResultSet.java:638)
         at com.informix.jdbc.IfxResultSet.getInt(IfxResultSet.java:1088)
         at oracle.jbo.common.IntegerTypeSQLNativeImpl.getDataFromResultSet(JboTypeMapEntries.java:504)
         at oracle.jbo.server.AttributeDefImpl.loadFromResultSet(AttributeDefImpl.java:2178)
         ... 26 more
    ## Detail 0 ##
    java.sql.SQLException: ResultSet not open, operation not permitted.
         at com.informix.util.IfxErrMsg.getSQLException(IfxErrMsg.java:407)
         at com.informix.jdbc.IfxResultSet.a(IfxResultSet.java:648)
         at com.informix.jdbc.IfxResultSet.b(IfxResultSet.java:638)
         at com.informix.jdbc.IfxResultSet.getInt(IfxResultSet.java:1088)
         at oracle.jbo.common.IntegerTypeSQLNativeImpl.getDataFromResultSet(JboTypeMapEntries.java:504)
         at oracle.jbo.server.AttributeDefImpl.loadFromResultSet(AttributeDefImpl.java:2178)
         at oracle.jbo.server.ViewRowImpl.populate(ViewRowImpl.java:3475)
         at oracle.jbo.server.ViewDefImpl.createInstanceFromResultSet(ViewDefImpl.java:2067)
         at oracle.jbo.server.ViewObjectImpl.createRowFromResultSet(ViewObjectImpl.java:4912)
         at oracle.jbo.server.ViewObjectImpl.createInstanceFromResultSet(ViewObjectImpl.java:4761)
         at oracle.jbo.server.QueryCollection.populateRow(QueryCollection.java:3099)
         at oracle.jbo.server.QueryCollection.fetch(QueryCollection.java:2959)
         at oracle.jbo.server.QueryCollection.get(QueryCollection.java:2072)
         at oracle.jbo.server.ViewRowSetImpl.getRow(ViewRowSetImpl.java:4568)
         at oracle.jbo.server.ViewRowSetIteratorImpl.getRowInternal(ViewRowSetIteratorImpl.java:3387)
         at oracle.jbo.server.ViewRowSetIteratorImpl.hasNext(ViewRowSetIteratorImpl.java:1873)
         at oracle.jbo.server.ViewRowSetImpl.hasNext(ViewRowSetImpl.java:3197)
         at oracle.jbo.server.ViewObjectImpl.hasNext(ViewObjectImpl.java:8604)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.isOperationEnabled(JUCtrlActionBinding.java:439)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.isActionEnabled(JUCtrlActionBinding.java:296)
         at oracle.jbo.uicli.controls.JUNavigationBar._isEnabled(JUNavigationBar.java:1341)
         at oracle.jbo.uicli.controls.JUNavigationBar._updateButtonStates(JUNavigationBar.java:1330)
         at oracle.jbo.jbotester.NavigationBar._updateButtonStates(NavigationBar.java:99)
         at oracle.jbo.uicli.controls.JUNavigationBar$3.run(JUNavigationBar.java:1245)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:597)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    [466] loadFromResultSet failed (1)
    [467] DCBindingContainer.reportException :oracle.jbo.AttributeLoadException
    [468] oracle.jbo.AttributeLoadException: JBO-27022: Nie udało się wczytać wartości o indeksie 1 z obiektem Javy typu java.lang.Integer z powodu java.sql.SQLException.
         at oracle.jbo.server.AttributeDefImpl.loadFromResultSet(AttributeDefImpl.java:2187)
         at oracle.jbo.server.ViewRowImpl.populate(ViewRowImpl.java:3475)
         at oracle.jbo.server.ViewDefImpl.createInstanceFromResultSet(ViewDefImpl.java:2067)
         at oracle.jbo.server.ViewObjectImpl.createRowFromResultSet(ViewObjectImpl.java:4912)
         at oracle.jbo.server.ViewObjectImpl.createInstanceFromResultSet(ViewObjectImpl.java:4761)
         at oracle.jbo.server.QueryCollection.populateRow(QueryCollection.java:3099)
         at oracle.jbo.server.QueryCollection.fetch(QueryCollection.java:2959)
         at oracle.jbo.server.QueryCollection.get(QueryCollection.java:2072)
         at oracle.jbo.server.ViewRowSetImpl.getRow(ViewRowSetImpl.java:4568)
         at oracle.jbo.server.ViewRowSetIteratorImpl.getRowInternal(ViewRowSetIteratorImpl.java:3387)
         at oracle.jbo.server.ViewRowSetIteratorImpl.hasNext(ViewRowSetIteratorImpl.java:1873)
         at oracle.jbo.server.ViewRowSetImpl.hasNext(ViewRowSetImpl.java:3197)
         at oracle.jbo.server.ViewObjectImpl.hasNext(ViewObjectImpl.java:8604)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:967)
         at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:2120)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:693)
         at oracle.jbo.uicli.jui.JUActionBinding.actionPerformed(JUActionBinding.java:193)
         at oracle.jbo.uicli.controls.JUNavigationBar.doAction(JUNavigationBar.java:411)
         at oracle.jbo.jbotester.NavigationBar.doAction(NavigationBar.java:111)
         at oracle.jbo.uicli.controls.JUNavigationBar$NavButton.actionPerformed(JUNavigationBar.java:117)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
         at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:272)
         at java.awt.Component.processMouseEvent(Component.java:6134)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3265)
         at java.awt.Component.processEvent(Component.java:5899)
         at java.awt.Container.processEvent(Container.java:2023)
         at java.awt.Component.dispatchEventImpl(Component.java:4501)
         at java.awt.Container.dispatchEventImpl(Container.java:2081)
         at java.awt.Component.dispatchEvent(Component.java:4331)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4301)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3965)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3895)
         at java.awt.Container.dispatchEventImpl(Container.java:2067)
         at java.awt.Window.dispatchEventImpl(Window.java:2458)
         at java.awt.Component.dispatchEvent(Component.java:4331)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    Caused by: java.sql.SQLException: ResultSet not open, operation not permitted.
         at com.informix.util.IfxErrMsg.getSQLException(IfxErrMsg.java:407)
         at com.informix.jdbc.IfxResultSet.a(IfxResultSet.java:648)
         at com.informix.jdbc.IfxResultSet.b(IfxResultSet.java:638)
         at com.informix.jdbc.IfxResultSet.getInt(IfxResultSet.java:1088)
         at oracle.jbo.common.IntegerTypeSQLNativeImpl.getDataFromResultSet(JboTypeMapEntries.java:504)
         at oracle.jbo.server.AttributeDefImpl.loadFromResultSet(AttributeDefImpl.java:2178)
         ... 45 more
    ## Detail 0 ##
    java.sql.SQLException: ResultSet not open, operation not permitted.
         at com.informix.util.IfxErrMsg.getSQLException(IfxErrMsg.java:407)
         at com.informix.jdbc.IfxResultSet.a(IfxResultSet.java:648)
         at com.informix.jdbc.IfxResultSet.b(IfxResultSet.java:638)
         at com.informix.jdbc.IfxResultSet.getInt(IfxResultSet.java:1088)
         at oracle.jbo.common.IntegerTypeSQLNativeImpl.getDataFromResultSet(JboTypeMapEntries.java:504)
         at oracle.jbo.server.AttributeDefImpl.loadFromResultSet(AttributeDefImpl.java:2178)
         at oracle.jbo.server.ViewRowImpl.populate(ViewRowImpl.java:3475)
         at oracle.jbo.server.ViewDefImpl.createInstanceFromResultSet(ViewDefImpl.java:2067)
         at oracle.jbo.server.ViewObjectImpl.createRowFromResultSet(ViewObjectImpl.java:4912)
         at oracle.jbo.server.ViewObjectImpl.createInstanceFromResultSet(ViewObjectImpl.java:4761)
         at oracle.jbo.server.QueryCollection.populateRow(QueryCollection.java:3099)
         at oracle.jbo.server.QueryCollection.fetch(QueryCollection.java:2959)
         at oracle.jbo.server.QueryCollection.get(QueryCollection.java:2072)
         at oracle.jbo.server.ViewRowSetImpl.getRow(ViewRowSetImpl.java:4568)
         at oracle.jbo.server.ViewRowSetIteratorImpl.getRowInternal(ViewRowSetIteratorImpl.java:3387)
         at oracle.jbo.server.ViewRowSetIteratorImpl.hasNext(ViewRowSetIteratorImpl.java:1873)
         at oracle.jbo.server.ViewRowSetImpl.hasNext(ViewRowSetImpl.java:3197)
         at oracle.jbo.server.ViewObjectImpl.hasNext(ViewObjectImpl.java:8604)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:967)
         at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:2120)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:693)
         at oracle.jbo.uicli.jui.JUActionBinding.actionPerformed(JUActionBinding.java:193)
         at oracle.jbo.uicli.controls.JUNavigationBar.doAction(JUNavigationBar.java:411)
         at oracle.jbo.jbotester.NavigationBar.doAction(NavigationBar.java:111)
         at oracle.jbo.uicli.controls.JUNavigationBar$NavButton.actionPerformed(JUNavigationBar.java:117)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
         at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:272)
         at java.awt.Component.processMouseEvent(Component.java:6134)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3265)
         at java.awt.Component.processEvent(Component.java:5899)
         at java.awt.Container.processEvent(Container.java:2023)
         at java.awt.Component.dispatchEventImpl(Component.java:4501)
         at java.awt.Container.dispatchEventImpl(Container.java:2081)
         at java.awt.Component.dispatchEvent(Component.java:4331)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4301)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3965)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3895)
         at java.awt.Container.dispatchEventImpl(Container.java:2067)
         at java.awt.Window.dispatchEventImpl(Window.java:2458)
         at java.awt.Component.dispatchEvent(Component.java:4331)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    [469] JUErrorHandlerDlg.reportException(oracle.jbo.AttributeLoadException)
    Exception in thread "AWT-EventQueue-0" oracle.jbo.AttributeLoadException: JBO-27022: Nie udało się wczytać wartości o indeksie 1 z obiektem Javy typu java.lang.Integer z powodu java.sql.SQLException.
         at oracle.jbo.server.AttributeDefImpl.loadFromResultSet(AttributeDefImpl.java:2187)
         at oracle.jbo.server.ViewRowImpl.populate(ViewRowImpl.java:3475)
         at oracle.jbo.server.ViewDefImpl.createInstanceFromResultSet(ViewDefImpl.java:2067)
         at oracle.jbo.server.ViewObjectImpl.createRowFromResultSet(ViewObjectImpl.java:4912)
         at oracle.jbo.server.ViewObjectImpl.createInstanceFromResultSet(ViewObjectImpl.java:4761)
         at oracle.jbo.server.QueryCollection.populateRow(QueryCollection.java:3099)
         at oracle.jbo.server.QueryCollection.fetch(QueryCollection.java:2959)
         at oracle.jbo.server.QueryCollection.get(QueryCollection.java:2072)
         at oracle.jbo.server.ViewRowSetImpl.getRow(ViewRowSetImpl.java:4568)
         at oracle.jbo.server.ViewRowSetIteratorImpl.getRowInternal(ViewRowSetIteratorImpl.java:3387)
         at oracle.jbo.server.ViewRowSetIteratorImpl.hasNext(ViewRowSetIteratorImpl.java:1873)
         at oracle.jbo.server.ViewRowSetImpl.hasNext(ViewRowSetImpl.java:3197)
         at oracle.jbo.server.ViewObjectImpl.hasNext(ViewObjectImpl.java:8604)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.isOperationEnabled(JUCtrlActionBinding.java:439)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.isActionEnabled(JUCtrlActionBinding.java:296)
         at oracle.jbo.uicli.controls.JUNavigationBar._isEnabled(JUNavigationBar.java:1341)
         at oracle.jbo.uicli.controls.JUNavigationBar._updateButtonStates(JUNavigationBar.java:1330)
         at oracle.jbo.jbotester.NavigationBar._updateButtonStates(NavigationBar.java:99)
         at oracle.jbo.uicli.controls.JUNavigationBar$3.run(JUNavigationBar.java:1245)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:597)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    Caused by: java.sql.SQLException: ResultSet not open, operation not permitted.
         at com.informix.util.IfxErrMsg.getSQLException(IfxErrMsg.java:407)
         at com.informix.jdbc.IfxResultSet.a(IfxResultSet.java:648)
         at com.informix.jdbc.IfxResultSet.b(IfxResultSet.java:638)
         at com.informix.jdbc.IfxResultSet.getInt(IfxResultSet.java:1088)
         at oracle.jbo.common.IntegerTypeSQLNativeImpl.getDataFromResultSet(JboTypeMapEntries.java:504)
         at oracle.jbo.server.AttributeDefImpl.loadFromResultSet(AttributeDefImpl.java:2178)
         ... 26 more
    ## Detail 0 ##
    java.sql.SQLException: ResultSet not open, operation not permitted.
         at com.informix.util.IfxErrMsg.getSQLException(IfxErrMsg.java:407)
         at com.informix.jdbc.IfxResultSet.a(IfxResultSet.java:648)
         at com.informix.jdbc.IfxResultSet.b(IfxResultSet.java:638)
         at com.informix.jdbc.IfxResultSet.getInt(IfxResultSet.java:1088)
         at oracle.jbo.common.IntegerTypeSQLNativeImpl.getDataFromResultSet(JboTypeMapEntries.java:504)
         at oracle.jbo.server.AttributeDefImpl.loadFromResultSet(AttributeDefImpl.java:2178)
         at oracle.jbo.server.ViewRowImpl.populate(ViewRowImpl.java:3475)
         at oracle.jbo.server.ViewDefImpl.createInstanceFromResultSet(ViewDefImpl.java:2067)
         at oracle.jbo.server.ViewObjectImpl.createRowFromResultSet(ViewObjectImpl.java:4912)
         at oracle.jbo.server.ViewObjectImpl.createInstanceFromResultSet(ViewObjectImpl.java:4761)
         at oracle.jbo.server.QueryCollection.populateRow(QueryCollection.java:3099)
         at oracle.jbo.server.QueryCollection.fetch(QueryCollection.java:2959)
         at oracle.jbo.server.QueryCollection.get(QueryCollection.java:2072)
         at oracle.jbo.server.ViewRowSetImpl.getRow(ViewRowSetImpl.java:4568)
         at oracle.jbo.server.ViewRowSetIteratorImpl.getRowInternal(ViewRowSetIteratorImpl.java:3387)
         at oracle.jbo.server.ViewRowSetIteratorImpl.hasNext(ViewRowSetIteratorImpl.java:1873)
         at oracle.jbo.server.ViewRowSetImpl.hasNext(ViewRowSetImpl.java:3197)
         at oracle.jbo.server.ViewObjectImpl.hasNext(ViewObjectImpl.java:8604)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.isOperationEnabled(JUCtrlActionBinding.java:439)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.isActionEnabled(JUCtrlActionBinding.java:296)
         at oracle.jbo.uicli.controls.JUNavigationBar._isEnabled(JUNavigationBar.java:1341)
         at oracle.jbo.uicli.controls.JUNavigationBar._updateButtonStates(JUNavigationBar.java:1330)
         at oracle.jbo.jbotester.NavigationBar._updateButtonStates(NavigationBar.java:99)
         at oracle.jbo.uicli.controls.JUNavigationBar$3.run(JUNavigationBar.java:1245)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:597)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    [470] loadFromResultSet failed (1)Kuba

  • Old iMac,new solid state drive?

    Is it possible to replace the hard drive in my 2008 Intel iMac with a newer solid state drive?
    Processor           2.66 Ghz Intel Core 2 Duo
    Memory             4GB 667 Mhz DR2 SDRAM
    Graphics            ATI Radeon HD 2600 Pro 256 MB
    Software           OSX 10.8.1 (12B19)
    Thanks!
    <Image Edited by Host to Remove Serial Number>

    Hi Nick,
    I'm sure you "could" just double sided tape it - but I would fear it interferes with the air flow around other components/out the back slot.  Plus, not sure the wires will reach, though they might be able to. 
    I used the NewerTechnologies Adaptadrive unit.  It works perfectly and holds the SSD firmly.  The little circuit board on the adapter just lines the SATA ports up perfectly with there they would be for a 3.5 inch drive.  Was super simple, and I know the SSD won't come loose behind my screen.  Be sure to get a full size adapatet like this.  The little blue ones OWC also sells don't have the length needed for Apple's mounting brackets. 
    Here's the link, and I'll attach a photo of it pre-install and post install with the temp sensor back on. 
    http://eshop.macsales.com/item/NewerTech/ADPTADRV/

  • [svn:fx-trunk] 5473: Fix for bug around handling of constraints during and after effects were run , both for old and new effects.

    Revision: 5473
    Author: [email protected]
    Date: 2009-03-20 16:02:58 -0700 (Fri, 20 Mar 2009)
    Log Message:
    Fix for bug around handling of constraints during and after effects were run, both for old and new effects. Fix was to correctly record and handle styles that were set or not set in either state and to temporarily set width/height values for the duration of an effect if we disabled the relevant styles that affect width/height.
    QE Notes: None
    Doc Notes: None
    Bugs: SDK-17809
    Reviewer: Jason
    Testing: checkintests, Mustella Effects, ListDataEffects
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-17809
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/effects/effectClasses/FxAnimateInstance.a s
    flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/Effect.as

    Revision: 5473
    Author: [email protected]
    Date: 2009-03-20 16:02:58 -0700 (Fri, 20 Mar 2009)
    Log Message:
    Fix for bug around handling of constraints during and after effects were run, both for old and new effects. Fix was to correctly record and handle styles that were set or not set in either state and to temporarily set width/height values for the duration of an effect if we disabled the relevant styles that affect width/height.
    QE Notes: None
    Doc Notes: None
    Bugs: SDK-17809
    Reviewer: Jason
    Testing: checkintests, Mustella Effects, ListDataEffects
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-17809
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/effects/effectClasses/FxAnimateInstance.a s
    flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/Effect.as

Maybe you are looking for