Holding object stats in multi tired system

I wonder how forrms handle the states of objects in multi tired system.
Suppose I have a trigger in form level which excutes when we open form. now every times I press a button it makes some action. How does server knows about the state and values of the items.
Message was edited by:
purusingh

The form is running on the Forms Runtime, so the Application Server. I presume that one of its several roles is to maintain the value of each object in memory...
Francois

Similar Messages

  • How to highlight State of Multi-State object?

    hi,
    I have created 3 states of object State1, State2, State 3. and want to highlight state in object state panel programmatically. can any one have idea abt it?

    @Priyanka – you did not mention a specific scripting language.
    In ExtendScript (JavaScript) you can set the "active" property of the 3rd state of your MultiStateObject to value "true".
    //ExtendScript (JavaScript) example
    //Make sure a MultiStateObject is selected; nothing else, then run this JavaScript:
    app.selection[0].states[2].active = true;
    The expression from left to wright (for lurkers who never saw a line of code):
    app => application (that's InDesign, of course)
    selection => your current selection in the UI (could be one item, could be many)
    [0] => index number 0 is the first item in your selection; be cautious with the expression "first", it depends on the InDesign version what that does exactly mean, if you selected more than one object
    states => obviously the "state" object (always with the plural "s", it's the collection of all states in that selected MultiStateObject)
    [2] => index number 2 is the 3rd element of the states collection
    active => property for the active status; boolean, could be "true" or "false"
    = => with the "=" sign, you are setting the value
    true => the value of the property; self-explanatory, I hope…
    ; => end of expression, all that comes after is a different expression.
    The different parts are held together with a dot-notation. The index  is directly glued to its object, no dot notation between object and index.
    If you want learn more about ExtendScript and the InDesign DOM see Jongwares' documentation at:
    http://www.jongware.com/idjshelp.html
    Uwe

  • Object states in interactive PDF?

    Is it possible or will it be a feature soon?  I know I can essentially accomplish the same thing hiding buttons, but I have some very complicated object states in my interactive swf files and would like to publish them to PDF so they can be viewed on an iPad.  Will this feature ever happen?

    Don't hold your breath. PDF is now an ISO standard which means that it won't change quickly. There is no concept in PDF to support object states.
    Also you should know that the PDF readers on the iPad don't support much if any interactivity.
    You best best is creating a publication with the Adobe Digital Publishing Suite.  That would be more difficult to learn than PDF and more expensive. To learn more about it, see this link:
    http://help.adobe.com/en_US/digitalpubsuite/using/WS67cb9e293e2f1f60174dc2eb12f2ca67c28-80 00.html
    This technology supports slides shows like you can create with the Object Styles panel.

  • Testing Process for Gathering Single Object stats.

    Hello Oracle Experts,
    I work a critical system and due to some high stakes all and every change is very heavily scrutinized here whatever the level is. And one of such changes which is currently under scrutiny is gathering object stats for single objects. Just to give you a background its an Oracle eBusiness site so fnd_stats is used instead of usual dbms_stats and we've an inhouse job that depending on the staleness of the objects gather stats on them using FND_STATS. (RDBMS : 10.2.0.4 Apps Release 12i).
    Now, we've seen that occasionally it leaves some of the objects that should ideally be gathered so they need to be gathered individually and our senior technical management wants a process around it - for gathering this single object stats (I know!). I think I need to explicitly mention here that this need to gather stale object stats has emerged becs one of the plans has gone pretty poor (from 2 ms to 90 mins) and sql tuning task states that stats are stale and in our PROD copy env (where the issue exists) gathering stats reverts to original good plan! So we are not gathering just because they are stale but instead because that staleness is actually causing a realtime problem!
    Anyway, my point is that it has been gathered multiple times in the past on that object and also it might get gathered anytime by that automatic job (run nightly). There arguments are:
    i. There may be several hundred sql plans depending on that object and we never know how many, and to what, those plan change and it can change for worse causing unexpected issues in the service!
    ii. There may be related objects whose objects have gone stale as well (for example sales and inventory tables both see related amount of changes on column stock_level) and if we gather stats only on one of them and since those 2 cud be highly related (in queries etc.) that may mess up the join cardinality etc. messing up the plans etc.
    Now, you see they know Oracle as well !
    My Oracle (and optimizer knowledge) clearly suggests me that these arguments are baseless BUT want to keep an open mind. So my questions are :
    i. Do the risks highlighted above stand any ground or what probably do you think is there of happening any of the above?
    ii. Any other point that I can make to convince the management.
    iii. Or if those guys are right, Do you guys use or recommend any testing strategy/process that you can suggest to us pls?
    Another interesting point is that, they are not even very clear at this stage how they are gonna 'test' this whole thing as the 'cost' option like RAT (Real Application Testing) is out of question and developing an inhouse testing tool still need analyzing in terms of efforts, worth and reliability.
    In the end, Can I request top experts from the 'Oak Table' network to make a comment so that I can take their backings!? Well I am hoping here they'll back me up but that may not necessarily the case and I obviously want an honest expert assessment of the situation and not merely my backing.
    Thanks so much in advance!

    >
    I work a critical system and due to some high stakes all and every change is very heavily scrutinized here whatever the level is.
    Another interesting point is that, they are not even very clear at this stage how they are gonna 'test' this whole thing as the 'cost' option like RAT (Real Application Testing) is out of question and developing an inhouse testing tool still need analyzing in terms of efforts, worth and reliability.Unfortunately your management's opinion of their system as expressed in the first paragraph is not consistent with the opinion expressed in the second paragraph.
    Getting a stable strategy for statistics is not easy, requires careful analysis, and takes a lot of effort for complex systems.
    >
    In the end, Can I request top experts from the 'Oak Table' network to make a comment so that I can take their backings!? Well I am hoping here they'll back me up but that may not necessarily the case and I obviously want an honest expert assessment of the situation and not merely my backing.
    The ideal with stats collection is to do something simple to start with, and then build on the complex bits that are needed - something along the lines suggested by Dan Morgan works: a table driven approach to deal with the special cases which are usually: the extreme indexes, the flag columns, the time-based/sequential columns, the occasional histogram, and new partitions. Unfortunately you can't get from where you are to where you need to be without some risk (after all, you don't know which bits of your current strategy are causing problems).
    You may have to progress by letting mistakes happen - in other words, when some very bad plans show up, work out WHY they were bad (missing histogram, excess histogram, out of date high values) to work out the minimum necessary fix. Put a defensive measure in place (add it to the table of special cases) and run with it.
    As a direction to aim at - I avoid histograms unless really necessary, I like introducing function-based indexes where possible, and I'm perfectly happy to write small programs to fix columns stats (low/high/distinct) or index stats (clustering_factor/blevel/distinct_keys) and create static histograms.
    Remember that Oracle saves old statistics when you create new ones, so any new stats that cause problems can be reversed out very promptly.
    Regards
    Jonathan Lewis

  • BMP question : got javax.ejb.EJBException error Object state not saved

    Could anybody please help me? I could not figure out what i did wrong.
    I got the javax.ejb.EJBException error: Object state not saved
    when i test the getname() method for findByPrimaryKey() and findAll() methods.
    Here is my code:
    package org.school.idxc;
    import javax.sql.*;
    import javax.naming.*;
    import javax.ejb.*;
    import javax.sql.*;
    import java.sql.Connection;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Statement;
    import java.util.ArrayList;
    import java.util.Collection;
    import java.util.Enumeration;
    import java.util.Vector;
    * Bean implementation class for Enterprise Bean: status
    public class statusBean implements javax.ejb.EntityBean {
         private javax.ejb.EntityContext myEntityCtx;
         private int id;
         private String name;
         private DataSource ds;
         private String dbname = "jdbc/idxc";
         private Connection con;
         * ejbActivate
    public void ejbActivate() {
         * ejbLoad
         public void ejbLoad() {
         System.out.println("Entering EJBLoad");
         try
         Integer primaryKey = (Integer) myEntityCtx.getPrimaryKey();
         String sqlstmt = "select id, name from from status where id =?";
         con = ds.getConnection();
         PreparedStatement stmt = con.prepareStatement(sqlstmt);
         stmt.setInt (1,primaryKey.intValue());
         ResultSet rs = stmt.executeQuery();
         if (rs.next())
              this.id = rs.getInt(1);
              this.name = rs.getString (2).trim();
              stmt.close();
         } // if
         else
              stmt.close();
              throw new NoSuchEntityException ("Invalid id " + id);
         }// else
              } // try
         catch (SQLException e)
         System.out.println("EJBLOad : " + e.getMessage());
              } // catch
         finally
         try
              if (con != null)
              con.close();
              }// try
         catch (SQLException e)
              System.out.println("EJBLOad finally" + e.getMessage());
              } // catch
              }// finally
         * ejbPassivate
         public void ejbPassivate() {
         * ejbRemove
         public void ejbRemove() throws javax.ejb.RemoveException {
         System.out.println ("Entering ejb Removed");
         try
         String sqlstmt = "delete from status where id=" + id;
         con = ds.getConnection();
         Statement stmt = con.createStatement();
         stmt.executeUpdate(sqlstmt);
         stmt.close();
         }// try
         catch (SQLException e)
         System.out.println("Ejb Remove" + e.getMessage());     
         } // catch
         finally
         try
              if (con!=null)
                   con.close();
         }// try
         catch (SQLException e)
              System.out.println ("EJBRemoved " + e.getMessage());
         } // catch
         } // finally
         * ejbStore
         public void ejbStore() {
         System.out.println("Entering the ejbStore");
         try
    String sqlstmt = "update status set id=" + id + ",name='" + name + "' where id=" + id;
         con = ds.getConnection();
         Statement stmt = con.createStatement();
         if (stmt.executeUpdate(sqlstmt) != 1)
              throw new EJBException ("Object state not saved");
    stmt.close();     
         } // try
         catch (SQLException e)
              System.out.println ("EJBStore : " + e.getMessage());
         }// catch
         finally
         try
              if (con != null)
              con.close();
         } // try
         catch(SQLException e)
              System.out.println ("EJBStore finally " + e.getMessage());
         } // catch
         } // finally
         * getEntityContext
         public javax.ejb.EntityContext getEntityContext() {
              return myEntityCtx;
         * setEntityContext
         public void setEntityContext(javax.ejb.EntityContext ctx) {
              myEntityCtx = ctx;
              try
              InitialContext initial = new InitialContext();
              ds = (DataSource)initial.lookup(dbname);
    } // try
              catch (NamingException e)
              throw new EJBException ("set Entity context : Invalid database");     
              }// catch
         * unsetEntityContext
         public void unsetEntityContext() {
              myEntityCtx = null;
         * ejbCreate
         public Integer ejbCreate(Integer key, String name) throws javax.ejb.CreateException {
    this.id = key.intValue();
    this.name = name;
              System.out.println ("Entering ejbCreated!!!");
              try
              String sqlstmt = "insert into status(id,name) values (" + id + ",'" + (name == null ? "" : name) + "')";
              con = ds.getConnection();
              Statement stmt = con.createStatement();
              stmt.executeUpdate(sqlstmt);
              stmt.close();
              }// try
              catch (SQLException e)
              System.out.println("EJBCreate : SQLEXception ");     
              }// catch
              finally
              try
              if (con!=null)
                   con.close();
              }// try
              catch (SQLException e)
              System.out.println ("EJB Created Finally : SQLException");
              e.getMessage();
              } // catch
              }// finally
              this.id = key.intValue();
              this.name = name;
              return key ;
         * ejbPostCreate
         public void ejbPostCreate(Integer id, String name) throws javax.ejb.CreateException {
         * ejbFindByPrimaryKey
         public Integer ejbFindByPrimaryKey(
              Integer key) throws javax.ejb.FinderException {
              try
              String sqlstmt = "select id from status where id=" + key.intValue();
              con = ds.getConnection();
              Statement stmt = con.createStatement();
    ResultSet rs = stmt.executeQuery(sqlstmt);
              if (!rs.next())
              throw new ObjectNotFoundException();     
              } // if
              rs.close();
              stmt.close();
              } // try
              catch (SQLException e)
              System.out.println ("EJBFindBYPrimaryKey " + e.getMessage());     
              } // catch
              finally
              try
              if (con!=null)
                   con.close();
              }// try
              catch (SQLException e)
              System.out.println ("EJB Find by primary key" + e.getMessage());
              }// catch
              }// finally
              return key;
         * @return Returns the name.
         public String getName() {
              return this.name;
         * @return Returns id
         public int getId() {
              return this.id;
         * @param name The name to set.
         public void setName(String xname) {
              this.name = xname;
         * ejbFindByLastnameContaining
         public Enumeration ejbFindAllNamne () throws javax.ejb.FinderException
         try
         String sqlstmt = "select id from status order by id";
         con = ds.getConnection();
         Statement s = con.createStatement();
         ResultSet rs = s.executeQuery(sqlstmt);
         Vector keys = new Vector();
         while (rs.next())
              keys.add(new Integer(rs.getInt(1)));
         }// while
         rs.close();
         s.close();
         con.close();
         return keys.elements();
         } // try
         catch (SQLException e)
              throw new FinderException (e.toString());
         } // catch
    }

    Hi,
    if you look at your error message you will see the problem. In your code you've missed to implement
    public void ejbPassivate {}
    so your code looks like this
    import java.lang.Object;
    import javax.ejb.SessionBean;
    import javax.ejb.SessionContext;
    import java.rmi.RemoteException;
    import java.lang.Math;
    import java.util.Random;
    import java.io.*;
    /** * Title: * Description: * Copyright: Copyright (c) 2001 * Company: * @author * @version 1.0 */
    public class DiceEJB implements SessionBean, Serializable
         public int[] Roll()
              Random rng = new Random();
              int[] diceArray = new int[5];
              for(int i =0; i < diceArray.length;i++)
                   diceArray[i] = (Math.abs (rng.nextInt()) % 6) +1;
              return diceArray;
         public DiceEJB(){}
         public void ejbCreate() {}
         public void ejbRemove() {}
         public void ejbActivate() {}
         public void ejbPassivate() {}
         public void setSessionContext (SessionContext sc)
         private void writeObject(ObjectOutputStream oos) throws IOException
              oos.defaultWriteObject();
         private void readObject(ObjectInputStream ois) throws ClassNotFoundException, IOException
              ois.defaultReadObject();
    bye

  • Invalid Object State

    Hej All
    We have a problem with our Q server. There is not possible to log on to any repository. When we use what ever user ID (can be dummy) we got information: "Invalid Object State".
    There is no passwd on server.
    Our system is 7.1 SP6, and of course we use correct client to connect.
    Thank you for any suggestions.
    BR
    Rafal

    Hi
    Exactly that helped
    Thank you.
    Have a nice day.
    BR
    Rafal

  • Concurrency in Swing,  Multi-processor system

    I have two questions:
    1. This is a classic situation where I am looking for a definitive answer on: I've read about the single-thread rule/EDT, SwingWorker, and the use of invokeLater()/invokeAndWait(). The system I am designing will have multiple Swing windows (JInternalFrames) that do fairly complex GUI work. No direct interaction is needed between the windows which greatly simplifies things. Some windows are horrendously complex, and I simply want to ensure that one slow window doesn't bog the rest of the UIs. I'm not entirely clear on what exactly I should be threading: the entire JInternalFrame itself should be runnable? The expensive operation within the JInternalFrame? A good example of this is a complex paint() method: in this case I've heard of spawning a thread to render to a back-buffer of sorts, then blitting the whole thing when ready. In short, what's the cleanest approach here to ensure that one rogue window doesn't block others? I apologize if this is something addressed over and over but most examples seem to point to the classic case of "the expensive DB operation" within a Swing app.
    2. Short and sweet: any way to have Swing take advantage of multi-processor systems, say, a system with 6 processors available to it? If you have one Swing process that spawns 10 threads, that's still just one process and the OS probably wouldn't be smart enough to distribute the threads across processors, I'm guessing. Any input on this would be helpful. Thank you!

    (1) You need to use a profiler. This is the first step in any sort of optimization. The profiler does two important things: First, it tells you where are the real bottlenecks (which is usually not what you expect), and eliminates any doubt as to a certain section of code being 'slow' or 'fast'. Second, the profilter lets you compare results before and after. That way, you can check that your code changes actually increased performance, and by exactly how much.
    (2) Generally speaking, if there are 10 threads and 10 CPU's, then each thread runs concurrently on a different CPU.
    As per (1), the suggestion to use double buffering is the likely best way to go. When you think about what it takes to draw an image, 90% of it can be done in a worker thread. The geometry, creating Shapes, drawing then onto a graphics object, transformations and filters, all that can be done offline. Only copying the buffered image onscreen is the 10% that needs to happen in the EDT thread. But again, use a profiler first.

  • How can i enlarge a graphic within an existing object state

    Hi all.
    I am currently building a swf file for my daughters homework.
    I need to enlarge the scroll so the viewer can read it properly. The text either side and the scroll are grouped together and are currently part of an object state hence the green button. I thought this would be straight forward but because the scroll is already part of an object state im unable to create another object state for the scroll to enlarge.
    I have tried various different work arounds but nothing is working out. It might mean i should have constructing it a different way so im more than happy to rearrange my document to get this thing working.
    If you can help i will be more than happy to email you my swf file so you can view it properly.
    Thanks all
    Andy

    Make two instances, large and small, of the scroll
    Make the small instance a button
    Make the larger instance a button
    Add both instances to a Multi-state object (MSO)
    Name the states Small and Large appropriately
    Click the Small State in the MSO panel
    Double click the MSO to access that State
    On the Buttons Panel click the Plus Sign Beside the Action
    Name = Enlarge
    Event = On Click
    Object = MSO
    State = Large
    Then go the Large MSO in the Panel
    and do the same but activating the Small image instead
    That should do it

  • Reconciling garbage collection, heap overview, and object stats

    First, both the JRockit RuntimeAnalyzer and Console are great tools. We use
    them extensively so thank you.
    I'm trying to reconcile the numbers in these three tabs.
    1. How do I reconcile the Runtime Analyzer and Console output?
    - The Heap overview tab in our application profile shows Heap Overview as
    83% free.
    - However, the Garbage Collection tab of the profile and Console shows the
    application as oscillating between 50 Meg and 200 Meg of heap used. That's
    25% (50Meg/200Meg) to 100%(200Meg/200Meg) used. How do I interpret the 83%
    vs. the 100%?
    I don't believe the 83% free, but I'm skeptical that we consume 150Meg of
    memory in 50 seconds.
    2. How do I reconcile the Object stats with the Garbage collection?
    - Take the top heap user at end of recording, character buffer. It's 22.8%
    of heap using 6,328 KB. If the heap is actually only 34Meg ( 17% of 200Meg.
    I get the 17% from the 83% free), then 22.8% makes sense.
    - So what's in the 200Meg of heap?
    I sent this recording to the JRA team if you want to look at it.
    Thanks
    Jeff

    I've never heard it put that way. Very interesting.
    "Johan Walles" <johan@spamalamadingdong> wrote in message
    news:41bf0be3@mail...
    Note that the time it takes for the garbage collector to do its thing
    grows with the amount of live data.
    What the garbage collector really does is more like retaining the live
    data than disposing of the garbage.
    Regards //Johan
    Jeff wrote:
    Staffan,
    Thanks - you clearly answered my questions. Now the follow-on questions:
    1. Is there a way to get insight into what the 'dead' data is composed
    of?
    2. Is this pattern of consuming 3x the live data in about a minute
    'typical' or a disaster in the making?
    I'm trying to get a sense of what a reasonable target of 'dead' data is.
    The system processes about a meg of data per second, including database
    writes.
    Thanks
    Jeff
    "sla" <[email protected]> wrote in message
    news:33533893.1102952170368.JavaMail.root@jserv5...
    Hi Jeff,
    I'll try to answer the questions.
    1) The Heap overview in the application profile is a snapshot of the heap
    at the end of a garbage collection. At this time only live data is still
    on the heap. So it looks like you have 17% of the heap filled with live
    data (and some overhead as seen in the Heap overview).
    In the garbage collection tab you can see the heap usage oscillating
    between 35-40MB and 200MB. The lower value is right after a garbage
    collection and the higher value is right before a garbage collection. The
    garbage collector clears out about 160MB of "dead" data from the heap.
    This is the amount of temporary objects that you created during the
    garbage collection cycles.
    2) The Object statistics are also taken right after a garbage collection.
    At this time there is 34M of live data on the heap and of these about 22%
    is taken up by character arrays (not unusual).
    At this time the rest of the 200MB heap is empty. It's been cleared of
    all temporary objects and is ready for allocation of new objects.
    I hope this answered your questions.
    Regards,
    /Staffan

  • Object state improper for request

    We have a serious problem with our directory servers lately. We have custom code that, on a nightly basis, collates corporate information from various sources (primarily DB2 data accessed via ODBC) into an iPlanet Directory Server 4.16 SP1 (NT4 based currently). Suddenly (over the past two weeks) we have been having replication and performance issues - some during the nightly loading but also during normal operations. At no time is the machine greatly stressed.
    A number of applications which use the directory servers to authenticate users are getting errors that the app cannot talk to the directory servers. Looking at the log files, we see a number of "Object state improper for request" errors... These programs have run fine for over 18 months � no code changes have been done in over a month (an occasional glitch of course). We are unable to figure out what the error codes really are pointing to. These errors were encountered back when we ran 4.13 � but during upgrades, the errors disappeared.
    Configuration:
    =========
    The servers are three (3) NT-based servers with 4 processors and 2 GB RAM - they never break a sweat performance-wise. Windows Load Balancing S/W (WLBS) is used to offer a virtual address for requests which are brokered by WLBS and returned. All connections to the directory servers are over a 128-bit SSL channel and authenticated via X.509 certificates (BindDN/password are often used in the authentication as well since few vendors use certificates for authentication at this point - not even the iPlanet Certificate Management System! � aarrrggggg!).
    As a lot of applications are now dependent upon the directory servers, this is critical to us to rectify. Does anyone have
    1) a good explanation for the -5931 error code and why does it happen? (I read Achim Krisinger's post
    titled "Error code list or description for -5931 -5990" and the responses were of no help.)
    2) Any ideas as to how to go about fixing this? Getting a handle on it???
    Any suggestions would be greatly appreciated
    Rich
    Below is a sample of an error encountered during the nightly loading:
    [28/Aug/2002:04:12:13 -0400] conn=739 op=32 RESULT err=O tag=103 nentries=O etime=O
    [28/Aug/2002:04:12:14 -0400] conn=739 op=33 SRCH base="ou=People,ou=org2,ou=orgl,o=Organization,c=US" scope=2
    filter=" (| (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (empl oyeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=#### ) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenu mber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=#### ) (employeenumber..."
    [28/Aug/2002:04:12:14 -0400] conn=739 op=33 RESULT err=O tag=lOl nentries=50 etime=O
    [28/Aug/2002:04:12:15 -0400] conn=739 op=34 MOD dn="cn=Common
    Name,ou=People,ou=org2,ou=orgl,o=Organization,c=US"
    [28/Aug/2002:04:12:15 -0400] conn=739 op=34 RESULT err=O tag=103 nentries=O etime=O
    [28/Aug/2002:04:12:15 -0400] conn=739 op=35 MOD dn="cn= Common
    Name,ou=People,ou=org2,ou=orgl,o=Organization,c=US"
    [28/Aug/2002:04:12:15 -0400] conn=739 op=35 RESULT err=O tag=103 nentries=O etime=O
    [28/Aug/2002:04:12:15 -0400] conn=739 op=36 SRCH
    base="ou=People,ou=org2,ou=orgl,o=Organization,c=US" scope=2
    filter=" (| (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (empl oyeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=#### ) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (e mployeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenu mber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (empl oyeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=#### ) (employeenumber..."
    [28/Aug/2002:04:12:16 -0400] conn=739 op=36 RESULT err=O tag=lOl nentries=50 etime=l
    [28/Aug/2002:04:12:16 -0400] conn=739 op=37 MOD dn="cn=Common_Name,ou=People,ou=org2,ou=orgl,o=Organization,c=US"
    [28/Aug/2002:04:12:16 -0400] conn=739 op=37 RESULT err=O tag=103 nentries=O etime=O
    [28/Aug/2002:04:12:17 -0400] conn=739 op=38 SRCH base="ou=People,ou=org2,ou=org1,o=Organization,c=US" scope=2
    filter=" (| (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (empl oyeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=#### ) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employe enumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenu mber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=#### ) (employeenumber..."
    [28/Aug/2002:04:12:17 -0400] conn=739 op=38 RESULT err=O tag=101 nentries=47 etime=O
    [28/Aug/2002:04:12:18 -0400] conn=739 op=39 fd=1184 closed error -5931 (Object state improper for request.) -A1
    [28/Aug/2002:04:12:18 -0400] conn=740 fd=896 slot=896 SSL connection from 162.45.10.31 to 162.45.10.31
    [28/Aug/2002:04:12:18 -0400] conn=740 SSL 128-bit RC4
    [28/Aug/2002:04:12:18 -0400] conn=740 op=O BIND dn="cn=Directory_Manager_Account" method=128 version=2
    [28/Aug/2002:04:12:18 -0400] conn=740 op=O RESULT err=O tag=97 nentries=O etime=O
    [28/Aug/2002:04:12:18 -0400] conn=740 op=l MOD dn="cn= Common Name,ou=People,ou=org2,ou=orgl,o=Organization,c=US"
    [28/Aug/2002:04:12:18 -0400] conn=740 op=l RESULT err=O tag=103 nentries=O etime=O
    [28/Aug/2002:04:12:19 -0400] conn=740 op=2 SRCH base="ou=People,ou=org2,ou=org1,o=Organization,c=US" scope=2
    filter=" (| (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (empl oyeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=#### ) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=#### ) (employeenumber..."
    r28/Auq/2002:04:12:19 -0400] conn=740 op=2 RESULT err=O taq=101 nentries=49 etime=O
    [28/Aug/2002:04:12:20 -0400] conn=740 op=3 aRCH
    base="ou=People,ou=org2,ou=orgl,o=Organization,c=US" scope=2
    filter=" (| (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (empl oyeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=#### ) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenu mber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=#### ) (employeenumber..."
    [28/Aug/2002:04:12:20 -0400] conn=740 op=3 RESULT err=O tag=101 nentries=50 etime=O
    [28/Aug/2002:04:12:21 -0400] conn=740 op=4 MOD dn="cn= Common Name,ou=People,ou=org2,ou=orgl,o=Organization,c=US"
    [28/Aug/2002:04:12:21 -0400] conn=740 op=4 RESULT err=O tag=103 nentries=O etime=O
    [28/Aug/2002:04:12:22 -0400] conn=740 op=5 aRCH
    base="ou=People,ou=org2,ou=orgl,o=Organization,c=US" scope=2
    filter=" (| (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (empl oyeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=#### ) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employe enumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=####) (employeenumber=#### ) (employeenumber..."
    [28/Aug/2002:04:12:22 -0400] conn=740 op=5 RESULT err=O tag=101 nentries=49 etime=O
    [28/Aug/2002:04:12:23 -0400] conn=740 op=6 MODRDN dn="cn= Common
    Name,ou=People,ou=org2,ou=orgl,o=Organization,c=US"
    [28/Aug/2002:04:12:23 -0400] conn=740 op=6 RESULT err=O tag=109 nentries=O etime=O
    [28/Aug/2002:04:12:23 -0400] conn=740 op=7 fd=896 closed error -5931 (Object state improper for
    request.) -Al

    If memory serves - I think this was a bug on Windows with SSL enabled replication. It would show this error on the consumer and a SDK error ninety something (91 I think) on the supplier? Is that what you are seeing?
    -Chris Larivee

  • Diff between two-level infrastructure and multi-level system landscape

    Hi Experts,
    Can Anyone explain me what exactly is meant by two-level infrastructure (SAP and customer solutions) and multi-level system landscape (SAP, country-specific versions, industry solutions, partner, customer, and so on) in the below statement
    In contrast to customer exits, Business Add-Ins no longer assume a two-level infrastructure (SAP and customer solutions), but instead allow for a multi-level system landscape (SAP, country-specific versions, industry solutions, partner, customer, and so on). You can create definitions and implementations of Business Add-Ins at any level of the system landscape

    Hi
    The user-exit can be implemented once, i.e. it can be used once: so it can be used to solve a particular customer situation.
    The BADI can have several implemantations, so the same BADI can be used several times, and so it can be used to solve problem of customer, for business (so different implemantion for every SAP vertical, for example one for AFS, one for OIL,......), for a specific for a country (it's the case for the FI BADIs used to solve different legal specific of every country where SAP is implemented), .......
    Max

  • Error: ExecuteNonQuery requires an open and available Connection. The connection's current state is closed.(System.Data)

    Dear all,
    Can any one explain about this error,
    2014-11-02 19:19:29.58    *** Error: Could not log history/error message.(Microsoft.SqlServer.Management.LogShipping) ***
    2014-11-02 19:19:29.58    *** Error: ExecuteNonQuery requires an open and available Connection. The connection's current state is closed.(System.Data) ***
    2014-11-02 19:19:29.58    Deleting log backup file. File: '\\Jdccb-mis\logshipping\JDCCBPROD_20141030134512.trn', Last Write Time (UTC): '10/30/2014 1:45:13 PM'
    2014-11-02 19:19:29.60    *** Error: Could not log history/error message.(Microsoft.SqlServer.Management.LogShipping) *****
    This errors comes on My Secondary server during log shipping and database goes to restore mode.
    satish Kumar

    Hi Krishnp,
    These are the latest jobs in queue:
    89 Quadro de Horários 28/6/2014 1:45  N/D Arquivar Configurações do Sistema Aguardando Processamento 0%  
     88 Quadro de Horários 28/6/2014 1:30  N/D Arquivar Modos de Exibição do Project Web App Aguardando Processamento 0%  
     87 Quadro de Horários 28/6/2014 1:00  N/D Arquivar Campos Personalizados Aguardando Processamento 0%  
    When I delete the last work automatically related are excluded.
    Currently the queue is 406 jobs.
    David Soares MCTS:MBS - MCTS - MCITP

  • How to control Object States of different objects with single button?

    I have a set of Images, stacked one on the other. I have selected all of them & created Object States for them. I also have a set of Text Objects, each containing a description of the images. These text objects are also stacked on top of each other & I've created object states for them too. I have two buttons which go to previous state & next state. When I do a mouse release operation on these buttons, only my images are moving from state to state.
    My question is how do I control the states of these different types of objects (images & type) so that they change states in sync with each other - I want to have an image 1 with its description, then image 2 with its description & so on. Thanks in advance.

    You just group your description with images

  • Multi-Processor Systems vs Single Processor systems

    In general, is it better to run Weblogic on a fast single processor system
    or on a multi-processor system where the individual cpus are less powerful?
    I am assuming that the platforms are WINTEL and all other things (memory,
    disk channels etc) are equal.
    What are the licensing implications of one philosophy over the other?

    Jim Ewing wrote:
    >
    In general, is it better to run Weblogic on a fast single processor system
    or on a multi-processor system where the individual cpus are less powerful?
    I am assuming that the platforms are WINTEL and all other things (memory,
    disk channels etc) are equal.You'll hate me for saying this, but it depends on your application and
    your client load.
    I'd suggest that you run a load test against both systems and compare
    the results.
    >
    What are the licensing implications of one philosophy over the other?You pay for WLS by the number of CPUs.
    -- Rob
    Coming Soon: Building J2EE Applications & BEA WebLogic Server
    by Michael Girdley, Rob Woollen, and Sandra Emerson
    http://learnweblogic.com

  • Problem with object state...

    Hi guys
    So I have this grid with 25 pictures.
    And I would like to use each of these pictures as a button. This button will trigger a frame with text in the center of the grid, like so :
    The X close the text frame and the user go back to the grid.
    But, I have 2 problems. I can mak a object state of the text frame and the button triggers one state (open/close for exemple) and it work. But if I click on the second square without closing the first text frame, the text frame linked to the first square is still there, underneath...
    Is there a way to 1 : a click triggers the texte square link to it AND close all the other
    Or is there an easier way to do it without object state?
    Thanks

    You have the grid of pics as your background. Then buld a state for each photo/description.
    If you have have 16 pictures  you'd build 16 different states for them. Combine them all into one MSO.
    You'll need to put the buttons into each state to make it work and you'll need one state with only the buttons with no fill or stroke over the background grid.
    You'll need to experiment to decide if you want the buttons to be live for all of the images in each state. It's lots of buttons and there's no automated way to do it, but it works well and avoids the problem that you're having now.
    Bob

Maybe you are looking for

  • Interval 01 was not created for number range object HRTEM_REFN

    Dear expert! Now, I'm getting some issues in Training and event management module. - The first, I created business event - Second, I process to book for business event by tcode: PSV1 --> book --> book/payment info --> activity allocation. But when I

  • Creation of cProjects automatically from creation of Portfolio Item in xRPM

    Hi, If we check out the box for the automatic creation of cProject along with creation of Portfolio item then the cProject as well as an internal order is created in the system. While I am creating an item and selecting for automatic creation, I am n

  • Classification view in MM01 with LSMW

    Hi all, I am trying to upload Material Master data from LSMW using Direct Input method. When I am using Direct Input method, I am not able to find fields such as KLART and CLASS_01 regarding Classification View(3rd view). So I tried Batch Recording ,

  • ITunes displaying non-existing TV-Shows on iPhone

    Hi, when I connect my iPhone4 (5.0.1) to iTunes, it displays two old TV-Shows on my iPhone. But the TV-Shows don't show up in my iTunes library (I have no TV-Show at all in my library) and they don't show up on my iPhone when I open the Videos app (n

  • WiFi on my MacBook Pro works in one room but not in others

    If I bring my MacBook Pro next to an iMac in one room it will connect (albeit slowly) to the internet. When I walk 2 metres into my own bedroom it simply disconnects and stops working, while my phone stays connected and at a similar speed. The MacBoo