Will too many instances created problem in production?

Hi,
  I have a approval workflow for customer creation. It is transported to production. Now a 500 customers are created at a stretch in production. will this affect the performance of the workflow?
How do we check the performance of the workflow ? what are the ways that we can follow for effective performance of workflow?
Thanks,
Sivagami.R

Hi,
In production, the workflow was working fine. Suddenly the dialog workitem text is not getting replaced with variable values. it is shown as Customer &customer.number& instead of the values.
At a small span of time nearly 1000 customers have been created and this workflow has been triggered for all instances. Can this be a reason for the probelm.
Thanks,
Sivagami

Similar Messages

  • Creat too many instance when writing an oracle database

    Hi
    I want to write Oracle database with database toolkits;
    but..i found there are too many instance or called session(exceed the upper limit) created when the program running .  that makes the Orace server stop responding
    Is there anything  i need to modify?
    Attachments:
    Oracle DB.vi ‏36 KB

    Frankly I have never seen this problem, but then I make a point of never using the database connectivity toolkit. Assuming a Windows platform, Windows implements something called connection pooling so when you "close" a connection the OS inserts it into a pool so If you ask for another connection it doesn't actually open a new one it just gives you back a reference to one of the ones you "closed" before.
    What OS are you running on?
    What version of Oracle?
    Is the instance of Oracle local or on another computer?
    How are you communicating with Oracle (odbc, oledb, etc)?
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • Can 119 phantom asslys at one bom level  create problem in product costing

    I am going through a scenario where there r 119 phantom assemlies at one bom level. Can this create problem in product costing? It has been told to me by somebody that there can not be more than 99 phantom asslys at one level of bom? Is that true? My problem is that when i am doing product costing it is showing error-" too many dummies at bom level". Is this related to no. of phantom asslys at one bom level?

    HI bala,
    all the materials are costing relevent. I thik this problem is releteted with no. of phantom assemlies allowed at one bom level.
    I had 119 phantom assemlies at bom level 3 of a varient material. At that time it gives me abap runtime error during product costing.
    Now I have removed special procurment key 50 from material master of 20 number of phantom asslys. so now there r now 99 phantom assemlies at bom level 3.
    I have taken costing run and its not giving error.
    so i reached to conclusion that statndard limit of no. of phantom assemlies at one bom level can not exeed 99.
    Now customer requires 119 phantom assleys at this level 3 of bom.
    So can u suggest me whether i should contact sap to increase this limit for this perticular case?
    will they solve my problem or there is any other solution to this?
    please reply.
    nitin

  • How many instance created for 100 request in servlet?

    Let me know the answer

    STM12 wrote:
    Subject: how many instance created for 100 request in servlet?
    Let me know the answerInstances of what?

  • FindByPK creates too many instances

    Hi all,
    When using JBoss (I don't know other servers behavior) the findByPrimaryKey method creates a "home instance".
    I think that JBoss need a "home instance" for finder methods and it could create only one to do that, but, in fact, it creates a new instance for each call and doesn't reuse it.
    For example:
    Integer pk = new Integer(1);
    First findByPrimaryKey(pk): 2 instances created (Home instance and Bean instance)
    Secound findByPrimaryKey(pk): 1 instance created (Home instance)
    Third findByPrimaryKey(pk): 1 instance created (Home instance)
    The ejbLoad method is called only on the first call (it's my configuration).
    Any idea?
    Thank you,
    Denis.

    Hi Denis,
    Check your deployment descriptor - maybe you've
    mistyped the remote interface for the home interface.
    If I'm not mistaken, finder methods should return
    remote, not home interfaces.
    DimitarI think Denis meant a new HomeImpl (or whatever it's called) instance is created each time in the container to receive the home.findByPrimaryKey() request.
    As such requests are stateless, one would expect the container to direct several of them (at least when they are serial and not in parallel) to only one instance of HomeImpl.
    But it's a container decision. The container is free to instantiate a pool of HomeImpl, or one HomeImpl for each request,...
    As far as EntityImpl instances go, it's not surprising that only one instance is created and that ejbLoad() is called only once, as long as the instance created first is still alive and active.
    Not surprising but not obvious either : the container would be free to create several instances representing the same entity, provided it ensures transactionality (that seems one way of ensuring isolation of concurrent container-managed transactions on the same entity).
    So in general one shouldn't rely on the instantiation of the Java object representing the implementation of a Home or a Remote as it may vary per container.
    Now I think Denis' concern may be : does such an approach of creating a HomeImpl instance each time scale?

  • Can't Solve the "Too Many Clients Tasks" Problem

    Hello All ,
    I am creating a java desktop application , and i keep getting this error message:
    [Microsoft][ODBC Microsoft Access Driver] Too many client tasks.
    Any way ,i googled for this error and i found that because i creates many connections with database "more than 10 i think " , and that why i get this error message ..
    The problem is that i do not know how to solve it , i tried to close the connections and i still getting the same error
    I searched this forum , and someone suggest to close the connections and the statements and the resultset , but still not working
    this is the code
    public class Database_Mangement {
        private String User_ID;
        private String  user_name;
        private String password;
        private Admin_Connection c;
        private Connection conn;
        private Connection uni_conn;
        private ArrayList<Admin_TableEntry> data;
        public Database_Mangement() throws SQLException
          conn = null;
          uni_conn = null;
          conn = DriverManager.getConnection("jdbc:odbc:smart_database");// Connect with database no 1 through ODBC
          uni_conn = DriverManager.getConnection("jdbc:odbc:uni_database");//Connect with database no 2 through ODBC
          data = new ArrayList<Admin_TableEntry>();
         ArrayList<Admin_TableEntry> getInformation(int type)throws SQLException
             Statement stm = null;
             ResultSet getInfo = null;
           try{
             //get User Information
                if(type==1)
                     stm = conn.createStatement();
                    String temp;
                    temp = "select * from Students";
                    getInfo = stm.executeQuery(temp);
                else if(type==2)
                     stm = uni_conn.createStatement();
                    String temp;
                    temp = "select * from Students";
                    getInfo = stm.executeQuery(temp);
                 while(getInfo.next())
                      Admin_TableEntry tempclass = new Admin_TableEntry();
                      if(type==1)
                      {tempclass.ID = getInfo.getString("Student_ID");
                       tempclass.Name =getInfo.getString("Student_Name");
                       tempclass.balance=getInfo.getString("Student_Balance");}
                      else if(type==2)
                          tempclass.ID =getInfo.getString("Student_ID");
                          tempclass.Name = getInfo.getString("First_Name");
                          tempclass.Last_Name =getInfo.getString("Last_Name");
                          tempclass.haveaccount=getInfo.getBoolean("Have_SmartCard");
                       data.add(tempclass);
    catch(Exception e)
    {System.out.println(e.getMessage();}
    finally
         conn.close();
         uni_conn.close();
        stm.close();
    //    getInfo.close();  Please note that i get an error message when i try to close the ResultSet
    //and this is the error message
    // Exception in thread "main" java.sql.SQLException: ResultSet is closed
                   return data;
    }and thank you for your time..

    Thanks , but it only solved the ResultSet.close() problem ,
    i am still getting the Too Many Clients error
    and i am closing every connection i created after the end of every function .
    i think i will switch to SQl server 2008 ... Hope it will be better

  • Appstore: too many HTTP redirection problem / túl sok HTTP-átirányítás probléma

    HY / sziasztok,
    When I open the appstore, and choose a program, and open the info page, after that the page didnt open,  just say "too many HTTP-redirect.".
    Why??
    szeretnék megoldást a következő problémára
    mikor belépek az appstore-ba és kiválasztok egy programot , nem nyitja meg a tájékoztató lapot, hanem kiírja hogy "túl sok HTTP-átirányítás".
    MIért van ez???

    Best Fixes for ‘Cannot Connect to iTunes Store’ Errors
    by Patrick Jordan on August 30, 2012 in iPad Tips & Tricks
    I first posted about ‘Cannot connect to iTunes Store’ errors on the iPad back in May of this year. I was getting this error when trying to update or install new iPad apps.
    Since then the issue has continued to trouble many iPad and iDevice users – and thanks to our excellent readers and commenters we’ve learned a number of effective fixes for this problem.
    Here are the best ones I’ve seen – each of these has proven successful for many users:
    DNS Settings Change
    This fix has been recommended by Apple support and has proven successful for many commenters on my previous post. The way this works is to change DNS settings on your iPad or whichever iOS device is affected – by adding Google’s DNS server/s.  Here’s how to do this:
    – Go to the Settings app and tap on the Wi-Fi section in the left sidebar
    – Then look at the ‘Choose a Network’ section in the main right-hand side area of the page and look for the network name that has a check mark next to it and rendered in blue text – the WiFi network you are currently using
    – Tap on the blue arrow at the right-hand side of the listing for that network.
    – On the next screen you’ll see a section labeled ‘IP Address’ with three large buttons below it. Make sure the DHCP button is selected. Below that you’ll see fields for IP Address, Subnet Mask, and others. Tap on the DNS field (the fourth one down).
    – This will bring up the iPad’s on-screen keyboard and place the cursor at the end of the IP address for the DNS server currently being used by the iPad. Backspace until all the numbers for that address are gone. Then type this in:
    8.8.8.8
    Please note the periods after the first three 8s. You can also use 8.8.4.4 – both are valid addresses for Google’s DNS servers.
    Download an App Via the Purchased Tab in the App Store
    – Open the App Store app on your iPad or whichever iOS device is having this issue.
    – Tap on the Purchased button in the bottom navigation bar.
    – This will show you all the apps you’ve purchased on the iPad. Those that are already installed with a greyed out label. Others will display a small download icon, showing a cloud with a downward facing arrow in it.
    – Tap on one of the download icons and download a purchased app.
    For many users this has cleared some sort of App Store queue and allowed them to resume with normal updates. Some have had to repeat the download with a few apps in the Purchased section.
    Set the Date Forward and Revert Back
    – Open the Settings app and go to General > Date & Time
    – On the Date & Time screen, tap to turn off ‘Set Automatically’
    – Tap on ‘Set Date & Time’ and enter a date a couple of years or more in the future.
    – Go out of Settings and then straight back in and turn  ‘Set Automatically’ to restore the current date and time.
    (update me if work's)

  • "Too Many Cards Open" Problem

    since I updated the last update on my pre whenever I try to use a email link I get a too many cards open message even if there is only one card open. Then when I close everything and try to open a new email card or web card I get the same message until I restart the phone. Has anyone heard if this?
    Post relates to: Pre p100eww (Sprint)

    Hello paktec,
    Are you using an HP Touchpad?
    If you are experiencing the issue on a TouchPad try closing the applications and relaunching whatever new applicatiion you was trying to use.
    If you are done with an application that you are not going to use again for while try completely closing the application before launching a new one.
    There are two ways to close applications on the device.
    1. Swipe the application up off the top of the screen
    2. Pull the application down and slingshot it off the top of the screen.
    By doing option 1 you are suspending the application in the background allowing it to open quicker subsequent times. By doing option 2 you are completely closing the application out. Opening the application later will take a little while longer, but if the application has a memory leak you will not run into any problems of it using memory while being in a suspended state.
    If I have helped you in any way click the Kudos button to say Thanks.
    The community works together, click Accept as Solution on the post that solves your issue for other members of the community to benefit from the solution.
    - Friendship is magical.

  • Special Ledger Roll up: too many records created in receiver table

    Hello,
    When I execute roll up from 1 special ledger to another special ledger (leaving out a number of fields) 4 records (postings) are selected but in the receiver table there are 92 records created (4*23) so 88 records too many. For each selected record in the sender table 7 records contain only 0 amounts and have an incorrect RPMAX value (starting with 16 till 336). The 8th record has an amount and has the correct RPMAX value: 352). In Sender and Receiver Ledger fiscal year variant Daily Balance is assigned (= each day is a period). Any hint how to prevent the empty records?

    Installing the patch, re- importing the SAP Provisioning framework (I selected 'update') and recreating the jobs didn't yield any result.
    When examining pass 'ReadABAPRoles' of Job 'AS ABAP - Initial Load' -> tab 'source', there are no scripts used .
    After applying the patch we decided anyway to verify the scripts (sap_getRoles, sap_getUserRepositories) in our Identity Center after those of 'Note 1398312 - SAP NW IdM Provisioning Framework for SAP Systems' , and they are different
    File size of SAP Provisioning Framework_Folder.mcc of SP3 Patch 0 and Patch 1 are also exactly the same.
    Opening file SAP Provisioning Framework_Folder.mcc with Wordpad : searched for 'sap_getRoles'  :
    <GLOBALSCRIPT>
    <SCRIPTREVISIONNUMBER/>
    <SCRIPTLASTCHANGE>2009-05-07 08:00:23.54</SCRIPTLASTCHANGE>
    <SCRIPTLANGUAGE>JScript</SCRIPTLANGUAGE>
    <SCRIPTID>30</SCRIPTID>
    <SCRIPTDEFINITION> ... string was too long to copy
    paste ... </SCRIPTDEFINITION>
    <SCRIPTLOCKDATE/>
    <SCRIPTHASH>0940f540423630687449f52159cdb5d9</SCRIPTHASH>
    <SCRIPTDESCRIPTION/>
    <SCRIPTNAME>sap_getRoles</SCRIPTNAME>
    <SCRIPTLOCKSTATE>0</SCRIPTLOCKSTATE>
    -> Script last change 2009-05-07 08:00:23.54 -> that's no update !
    So I assume the updates mentioned in Note 1398312 aren't included in SP3 Patch 1. Manually replaced the current scripts with those of the note and re- tested : no luck. Same issue.
    Thanks again for the help,
    Kevin

  • SQLException :Too many client tasks problem

    Hi,
    In my Standalone Java Swing application, iam using connections to the MS-Access Database using Connection pooling..Iam initializing around 10 connections. After executing, performing some operations on application, after sometime...i get the SQL Exception Too many client tasks exception..
    I have checked my programs..iam closing all my result set and prepared statements..
    Where am i going wrong?
    Can anybody pls advice me to solve this problem?
    Regards,
    SRhodes.

    remember access has a max number of connection to handle which you are not closing. you close only resultset and statements
    ivo

  • Too many instances.

    When I add a .png to the library and convert it to a MovieClip, afterwords Im left with 3 instances. A bitmap, a symbol and a MC. Do I need all of these. If I delete either one all the rest become usless. Why?  Do I need all 3? If someone could help me understand I would be greatful.

    You need the image you imported unless you trace it as a bitmap (see the Modify menu).  It is possible you do not need the image in any other form than that.
    If you need the image as a symbol, then you can probably just use the graphic symbol that was created automatically, though chances are you could eliminate that and take the image and convert it to a movie clip as you seem to have done.

  • TOO MANY OPEN CURSORS PROBLEM ... PLEASE HELP

    Hi,
    my problem is the following :
    I got data from a system in flat file format. ( ascii, semicolon separated )
    I wrote mapping classes to different tables and insert via Oracle thin driver.
    The data I got isn't 100% consistent. It may happen that there are double
    records for tables whith unique indexes.
    I catched the Exception like in the segment below
    Statement insertStmnt = null;
    try{
    insertStmnt = connection.createStatement();
    insertStmnt.execute(insertString);
    connection.commit(); // autocommit is diabled
    } catch ( Exception sql ) {
    System.out.println(sql.toString());
    connection.rollback();
    insertStmnt.close();
    The Problem : when receiving the SQLException ( UNIQUE CONSTRAINT VIOLATED )
    the cursor remains open.
    After exeeding the open_cursors system property ( Oracle )
    no more data is loaded.
    ( the input files contains sometimes more than one million rows )
    Any suggestion to my Mail
    [email protected]
    Thanks

    Hi!
    Now you only close your statement when you catch an error. You will have to close it if things works out fine as well:
    Statement insertStmnt = null;
    try{
    insertStmnt = connection.createStatement();
    insertStmnt.execute(insertString);
    connection.commit(); // autocommit is diabled
    insertStmnt.close();
    } catch ( Exception sql ) {
    System.out.println(sql.toString());
    connection.rollback();
    insertStmnt.close();
    Good luck!
    /Tale

  • Too many contacts = sms problems

    Hi, i bought and 16GB iPhone last week and i'm having some problems with SMS.
    When I click on the SMS, it takes about 40 seconds to open (when it opens, because normally just returns to the home screen), everything is really slow (opening conversations, writing/reading messages..). The problem only occur when my big list of contacts its in the phone (+- 4000 names).
    My sister bought and 16GB in the same day, everything is equal, but she only have 100 contacts and her iPhone work perfectly. I already tried restoring my iPhone and reseting, but after syncing my contacts, the SMSs just stop working right. When i sync MY contacts in HERs iPhone, the SMSs of hers phone also starts having problems.
    I feel like if it wasnt prepared for that ammount of data. What should i do? Does the iPhone has limitations regarding the number of contacts?
    Thanks in advance.

    My life would be a lot easier if the iPhone had a spotlight, but in the time been, my fingers are getting stronger from all the scrolling...
    I cant delete contacts because most of them are business relations/ hotels/ restaurants/ tennis partners... My contacts are my office on the road. But thanks for trying to help...
    Anyone have a solution for my SMS problem?

  • Will too many "xsl:include"s affect performance?

    I have one main stylesheet which includes 5 other stylesheets. I would like to know which way is better for the performance:
    use 5 <xsl:include href="file.xsl"/> in the main stylesheet?
    or put all the codes from those 5 files directly into the main stylesheet?
    Thanks!
    Wenqi

    Hi Wenqi!
    I'm using up to 15 include files. This makes utvecklingen easier. I didn't find a loss in the perfomance. The stylesheet cache has to be big enough.

  • Too many files open when parsing xml

    HI,
    I have an application which needs to parse about 13 XML files multiple times.After parsing the XML and creating a DOM I put in values to create an XML message which is then put onto a message queue.I am getting a 'Too many files open' problem.I have run the loop a maximum of 105 times after which i get the problem.However I will need to do this atleast more than 10000 times.Can someone suggest a solution to read the XML, create a DOM and populate the DOM without encountering the above mentioned problem.If I just parse the XML and store the 13 DOMs in a HashMap and use the same, the text values from the previous call get appended resulting in an invalid XML.To overcome this we parse the XML each time a message is to be sent.We also tried increasing the system memory as suggested at some sites but the solution was of no help.
    Thanks & Regards

    Don't know what this has to do with Web Start but you should make sure that, after parsing a file, the corresponding InputStream is properly closed.

Maybe you are looking for