Additional Agents Starting Databank at Different Records (configurable?)

I've noticed that for some reason a 2nd agent starts reading a databank from the 21st record.
The situation I had was that although I was only testing 10VUs (spread over 2 agents), one agent would always fail. I realised that what was happening was that although the 1st agent gets it's credentials from the 1st record of the databank (which has 400 records), the 2nd agent tries to use the 21st record. The problem being that the SUT currently only has 20 actual users configured (PT001-PT020) so trying to use PT021 will obviously fail! Eventually this testing will move to a different environment when all the users will be configured.
I'm working round this for the moment but is there a way of configuring this behaviour? i.e. how many records additional agents "skip"?
Regards, Ian.

Hi Ian,
Have you tried using the Range option in the databank configuration to limit the used records in the databank (1 to 20)?
Cheers,
Jamie

Similar Messages

  • Quality info records: different pack configurations for same raw material

    how can i differentiate different pack configuration for same raw material in quality info records, as one might approved and the other not? that is, besides creating different material master for each packaging?
    thanks
    Alisa

    You need to use the MPN profile functionality that is a standard part of SAP.
    In Config under the purchasing define the MPN profile.  There are several options you can turn on/off including info records.
    You assign the MPN profile to your material. It now is considered by SAP to be an internal material number. 
    You then create a HERS material type for each separate manufacturer material number you have.  You only need the purchasing view for these materials.  You can also create purchasing text views, classification and some others if you wish.
    In the SAP approved vendors list (AVL), you then assign each manufacturer vendor(s) with the HERS material created.
    You create a Q-info record for each manufacturer/HERS material combination.
    Now, when you specify the internal material number in a PO, the system will tell you to order the MPN material.  When you do the drop down for the material now, it will show you the approved manufacturers allowed in the AVL for the ordering plant.
    When the 01 inspection lot is created you will have a vendor number as well as a manufacturer's number in the inspection lot.  The DMR can be done by the manufacturer or the vendor depending on how you set up the inspection plan. Q-info record will be used accordingly.
    Take a look at it and research it.  It's not hard to set up.
    FF

  • Getting error:  java.lang.IllegalStateException: Service has been started by a different configurable cache factory.

    We are trying to implement host name based security for our Coherence cluster. This is mainly to prevent processes running in one environment (UAT for example) connecting to the Coherence cluster running in another environment (PROD for example).
    We wanted to ensure that 1) Only Coherence nodes running on specific machines can join the cluster as members. To accomplish this, we added the list of authorized hosts to the override file (see marketrisk-coherence-override.xml) This works as expected with no issues
    We also want to ensure that we allow client connections from some specific machines. All of our clients connect to the cluster through the proxy. So, we added added a host filter to the cache config file (see marketrisk-cache-config.xml) to control the list of client machines that can are allowed to connect to the cluster. The host filter is pretty simple. If the incoming host address is found in a cache, it allows the connection else it refuses the connection. Please see AuthorizedClientHostsFilter.java for more details.
    When we start the cluster, the storage nodes are failing to come up with the following error message:
    Exception in thread "main" java.lang.IllegalStateException: Service "ReferenceDataCacheService" has been started by a different configurable cache factory.
                    at com.tangosol.net.ExtensibleConfigurableCacheFactory.validateBackingMapManager(ExtensibleConfigurableCacheFactory.java:829)
                    at com.tangosol.net.ExtensibleConfigurableCacheFactory.ensureService(ExtensibleConfigurableCacheFactory.java:585)
                    at com.tangosol.net.ExtensibleConfigurableCacheFactory.startServices(ExtensibleConfigurableCacheFactory.java:666)
                    at com.tangosol.net.DefaultCacheServer.startServicesInternal(DefaultCacheServer.java:369)
                    at com.tangosol.net.DefaultCacheServer.initialStartServices(DefaultCacheServer.java:466)
                    at com.tangosol.net.DefaultCacheServer.startAndMonitor(DefaultCacheServer.java:74)
                    at com.tangosol.net.DefaultCacheServer.main(DefaultCacheServer.java:260)
    This error goes away and the cluster starts normally if we remove host filter from the cache config file or we modify AuthorizedClientHostsFilter.java to not get a handle to the cache when it is instantiated. Please see AuthorizedClientHostsFilter1.java which has this change.
    We believe this is happening because the storage node is creating two cache factories when we use the host filter (AuthorizedClientHostsFilter.java). The storage nodes creates only one cache factory if  we do not use the host filter or if I use AuthorizedClientHostsFilter1.java.
    I do not understand why this is happening. Can you please help? The attached zip file should have all the information that you will probably need.

    public class AuthorizedClientHostsFilter implements Filter {
        //private static final Logger logger = LoggerFactory.getLogger(AuthorizedClientHostsFilter.class);
        public static final String ALL_HOSTS = "ALL_HOSTS";
        private static NamedCache hostsCache = new ContinuousQueryCache(
                CacheFactory.getCache("client-auth-hosts"), AlwaysFilter.INSTANCE, false);
        public AuthorizedClientHostsFilter() {
        public boolean evaluate(Object o) {
            logger.info("hostsCache.size() = "+hostsCache.size());
            Set<String> authorizedHostsinCache = hostsCache.keySet();
            for (String hostName : authorizedHostsinCache) {
                logger.info("Host: "+hostName);
            if (hostsCache.containsKey("ALL_HOSTS")) return true;
            InetAddress address = (InetAddress) o;
            //logger.info("Incoming Host: "+address.getHostAddress());
            return hostsCache.containsKey(address.getHostAddress());
    public class AuthorizedClientHostsFilter1 implements Filter {
        //private static final Logger logger = LoggerFactory.getLogger(AuthorizedClientHostsFilter.class);
        public static final String ALL_HOSTS = "ALL_HOSTS";
        private static NamedCache hostsCache = null;
        public AuthorizedClientHostsFilter1() {
        public boolean evaluate(Object o) {
            if (hostsCache == null) {
                hostsCache = new ContinuousQueryCache(
                        CacheFactory.getCache("client-auth-hosts"), AlwaysFilter.INSTANCE, false);
            logger.info("hostsCache.size() = "+hostsCache.size());
            Set<String> authorizedHostsinCache = hostsCache.keySet();
            for (String hostName : authorizedHostsinCache) {
                logger.info("Host: "+hostName);
            if (hostsCache.containsKey("ALL_HOSTS")) return true;
            InetAddress address = (InetAddress) o;
            //logger.info("Incoming Host: "+address.getHostAddress());
            return hostsCache.containsKey(address.getHostAddress());

  • Accounting-Start and Accounting-Stop recorded on diffrent RADIUS server.

    1.If a NAS configured to have a primary and a backup RADIUS server. To start with all the “Accounting-Start” records will be in the primary RADIUS server. Later on the primary server goes down (Primary server won’t tell the NAS?). When sessions stop, the NAS sends the “Accounting-Stop” to the secondary. I understand the “Start-Stop” record with the same “user name” and “session-id” ideally should be recorded in the same server. If this situation happens what should both the NAS and RADIUS server do?
    2.A NAS configured to have a primary and backup RADIUS server. To start with all the “Accounting-Start” records will be in the primary RADIUS server. Later on the administrator decided to change the primary server (as there are problems with the previous primary). sessions stop, the NAS sends the “Accounting-Stop” to the new primary. This ends up the “Accounting-Start” and “Accounting-Stop” with the same “user name” and “session Id” in two RADIUS servers.
    To summarize, how to avoid the ”start-stop” pair ends up in different servers ? If it does, is it  an issue for RADIUS application ?
    Cheers,

    It is my understanding that the 'NAS_PORT' value in authentication and accounting request are unique and a different value for each authentication request allows it to identify those users that are logged in. However, sending one Acct-Unique-Session-Id at the Start and a different one at stop does sound fishy. However, I could not find any bugs related to this problem. Do let me know if you manage to locate something.

  • 1390717.1 - 12c Cloud Control Agent: Is it possible to Re-configure ...

    Can anyone get to this note "1390717.1: 12c Cloud Control Agent: Is it possible to Re-configure a 12c Agent to a Different 12c OMS Without Re-installation?"
    I do a search in Metalink and I see it listed in "How to Point a 10g/11g Grid Agent to a Different Grid Control OMS and Repository without Re-installation? [ID 413228.1]" but that is the only doc a search returns.
    I have a test environment with agents pointed to an old OMS 12c. I'd like to utilize the same agents but point them to our new, production, OEM 12c environment. Has anyone had any success with this? I've followed the 10g/11g OEM steps without luck, thus far (early testing).
    I was excited to see "emctl switchOMS REPOSITORY_URL" in the emctl options until I read the next line...
    This command is not supported.
    Drat :-)
    Regards,
    Rich

    Hi,
    The steps you need to follow are documented here:-
    http://docs.oracle.com/cd/E24628_01/install.121/e24089/appdx_repoint_agent.htm#BABICJCE
    Regards, Mark.

  • Ruleframe + Updates in same table on different records

    I have following problem :
    Change event with DML for one column in one record have to result in an update of different records in same table
    if business rule is validated, I get a problem in the cg$AUS trigger, No data found.
    In the business rule (on after row triggering level), I call a procedure, which do the updates on the same table.
    What do I do wrong. Do I have to start a new transaction for this ?
    I hope someone can help me.
    Regards
    Jo-an

    Jo-an,
    You definitely don't have to start a new transaction, you should just use the tapi upd procedure to perform the update, as described in the Headstart User's Guide.
    Could you try again and report back if you still have the problem?
    kind regards,
    Sandra

  • How can we assign different colours to different records(line items) in alv

    how can we assign different colours to different records(line items) in alv reporting?

    Hi Friend,
    Please see this SDN Wiki  for setting the color in ALV :[http://wiki.sdn.sap.com/wiki/display/ABAP/ABAP-DevelopingInteractiveALVReportusing+OOABAP]
    There are so many SDN Wiki's on this  just try with search  Alv Color display in SDN,
    Regards,

  • Reading fixed length file with different record types

    Hi,
    I need to read a fixed-length file with different record types, but the record identifier is in 31st position and not in 1st position.
    But if I give 31 as position in File adpater wizard, BPEL takes whole 1-31 as identifier.
    How we need to read such files.
    Thanks
    Ravdeep

    hi ,
    u cannot use the default wzard for this
    use some thing like this nxsd:lookAhead="30" nxsd:lookFor="S"have a look at the below link it has some examples
    http://download.oracle.com/docs/cd/B31017_01/integrate.1013/b28994/nfb.htm

  • PC went south. Geeks brought it back. PS elements and premier 11 can't start. Error msg sez configuration incorrect needs to be reinstalled. When I load the disk I get a blank screen. Try to uninstall and can't find apps i control panel. How can I get the

    PC went south. Geeks brought it back. PS elements and premier 11 can't start. Error msg sez configuration incorrect needs to be reinstalled. When I load the disk I get a blank screen. Try to uninstall and can't find apps i control panel. How can I get the apps back?

    adobeamatuer
    Thanks for the reply.
    Although the security of Windows XP SP3 32 bit is compromised by Microsoft no longer supporting XP, if Windows XP was restored as claimed, you should still be able to install/uninstall Premiere Elements versions of it that you did before the Microsoft support removal.
    I think a revisit to the Geeks would be in order. It may be that they could not restore Windows XP because of the Microsoft non support. I would take along the Premiere Elements installation disks so that you do not leave there without actually seeing Premiere Elements (or a non Adobe program) running on your restored Windows XP. What was the other software that you tried to use that did not work?
    Please update us on your progress when you get a chance.
    Best wishes
    Thanks.
    ATR
    Add On...spelling correct 12 03 2014.

  • Store agent started to transfer large amounts of data, eating all my bandwidth.  Seemed to just start 5-6 days ago.

    About5-6 days ago store agent started to continuously run, sending and receiving large amounts of data.  This eats all my bandwidth quickly, essentially rendering my internet access worthless since I have to use satellite internet.  I have tried stopping it in the Activity Monitor , but it restarts again. I thought I might have had a virus or something.  I downloaded trend micro for Mac, but found its core services essentially did the same thing. I uninstalled, but found that store agent is still running non stop. Ideas?

    The storeagent process is a normal part of Mac OS X, not a virus. Remove Trend Micro, which is a quite poor choice for protecting yourself against malware in the first place (see the results of my Mac anti-virus testing 2014), and which isn't really necessary anyway (see my Mac Malware Guide).
    As for what it might be doing, as babowa points out, it should be present when the App Store app is open, and at that time, it might be occupied with downloading updates or something similar. If you keep force-quitting it in Activity Monitor, that probably ruins whatever download it was working on, so it has to start all over again, perpetuating the cycle. In general, it is a very bad idea to force-quit processes that are part of Mac OS X without a very good reason and an understanding of what they are.
    Go to System Preferences -> App Store:
    You will probably want to turn off automatic download of newly available updates, as well as automatic download of apps purchased on other Macs (if you have other Macs). I do not advise turning off the master "Automatically check for updates" box, or the one for installing security updates, as disabling those will reduce the security of your system. These security updates are typically small, so they should have very little impact on your total internet usage.

  • Converting File Content: 2 different record structures

    Dear all,
    I have the following question: Is the PI 7.0 file adapter capable to convert the file content of a file which has two different record types? E.g.
    Rekord 1: String(2) String(4) String(19)
    Rekord 2: String(2) String(7) String(8)
    In the XML structure I need for each of the record set, an own record structure e.g.
    <documentName>...
    <recordset1>
    <NameA>
    <field-nameA1>field-value</field-nameA1> // String(2)
    <field-nameA2>field-value</field-nameA2> // String(4)
    <field-nameA3>field-value</field-nameA3> // String(19)
    </NameA>
       </recordset1>
    <recordset2>
    <NameA>
    <field-nameA1>field-value</field-nameA1> // String(2)
    <field-nameA2>field-value</field-nameA2> // String(7)
    <field-nameA3>field-value</field-nameA3> // String(8)
    </NameA>
      </recordset2>
    The different record sets can be determined by the value of field 1 (string(2))
    Thanks and best regards
    Florian

    HI,
    I can see that.
    The number of characters in the file for TABLE2 is lesser then the number of field size given.
    for eg. if the table2 fixed field length sum is 20 ,your file contains only 10 characters. Please give complete data for table2
    Test file
    100WELCOME 0430000960603201321
    <b>2000000000040008000803</b>
    Table2.fieldFixedLengths: 1,10,10,10,3,3,4,1,38
    Ragards
    vijaya
    Message was edited by: vijaya kumari

  • Result recording configuration with automatic close indicator

    Hi Guys,
    I was testing this automatic result configuration in my system.
    I selected the u201C1u201D (i.e. Automatic Close) Recording Configuration indicator on the plant level in SPRO > QM > Basic Settings > Maintain Settings at Plant Level> plant > Result recording tab > Recording configuration > maintain Automatic Close.
    Next, I entered the three user parameter ID QAE, QAN, and QAS in the user parameter SU3. However, I leave the parameter value for these three ID blank as I donu2019t know what to put in.
    During result recording, I tested this MIC characteristic on both reject and accept scenarios (i.e. fall under lower/upper limit, and fall outside lower/upper limit). To my surprise, nothing happens. In another word, there is no automatic close incurs on the inspection characteristics (i.e. both the accepted and rejected checkbox still remain unchecked even I navigate around, and hit the u201Ccontinueu201D, u201Cbacku201D, or u201Csaveu201D button).
    Further, I have fulfilled the following prerequisite as specified in the SAP help portal on this topic:
    1 - The inspection scope is fixed scope of this MIC.
    2 - I entered the target sample size (i.e. both the value in the u201CInspectu201D and u201CInspectedu201D field is similar).
    3 - I think I should have the authorization because I have entered the three parameter IDs on the SU3.
    May I know what is wrong?
    Can it be the parameter values for the three parameter ID are blank in my SU3? If so, what value I should enter for these three param ID? If not whatu2019s going wrong?
    Thanks
    YY

    Hi Gajesh,
    For some reason, it doesnu2019t work.
    I think I will tell my guys to perform manually pressing the Lock icon button to force it to valuate and also become status 5, since this the two valuation checkboxes, i.e. accept and reject checkbox is either ticked correctly according to the sampling plan setup in the sampling schema.
    Further, I donu2019t see why this extra manual step is so difficult for my worker.
    Thanks for your help
    YY

  • How to start a systemd with certain configuration options?

    Hello,
    I do not understand what wiki page at arch that can help me to understand how I can start a daemon with certain configuration options. I know I can start with
    # systemctl enable unit
    , but for example, if I whanted to start "xboxdrv" with the option [--mimic-xpad-wireless --silent], or any other custom options I might need. I presume it can be done simple by dropping a .conf file somewhere, but I do not follow what wiki page that adress this - if it at all is possible?
    Regards
    Martin

    Hello,
    I followed the drop in option now in https://wiki.archlinux.org/index.php/Sy … n_snippets
    I tried to copy the whole xboxdrv.service and replace the ExecStart, and also only with ExecStart, like this:
    [Service]
    ExecStart=
    ExecStart= ExecStart = /usr/bin/xboxdrv -D -c /etc/default/xboxdrv --mimic-xpad-wireless --silent
    The drop in examples above is in: /etc/systemd/system/xboxdrv.service.d/override.conf
    Reatarting
    I then made sure the new .conf file was loaded by:
    # systemctl daemon-reload
    # systemctl restart xboxdrv
    # system status xboxdrv
    Result
    In both cases, the service fails to restart and I recive this error
    xboxdrv.service has more than one ExecStart= setting, which is only allowed for Type=oneshot services. Refusing.
    Anyone know how I can start "xboxdrv" with my custom options "--mimic-xpad-wireless --silent" using this drop in function for systemd?
    Regards
    Martin
    Last edited by onslow77 (2015-02-01 18:27:31)

  • DW repeat region start from the second record

    Hi,
    iam a beginner in DW can anyone help me in my news page, iam using repaet region for the archive
    How could I start from the second record instead of the first
    using php mySQL
    Thanks in advance.

    The simplest way I can think of depends on the recordset. If your querying the entire recordset and each record has incrementing ID numbers, then add a filer to return records greater than 1, if one is the first record. If you've already applied another filer though, we'll have to get a little more creative to find the best solution.

  • Count(*) giving different record count than Group by

    I have a table which is giving me different record counts as below:
    SELECT COUNT(1) FROM tbl_A --45104 records
    SELECT ID,COUNT(*) FROM tbl_A GROUP BY ID ORDER BY 1   --42084 records(ID is the primary key)
    Any idea why this will happen?

    Can you quickly show us what the below are returning?
    SELECT COUNT(ID) FROM tbl_A
    SELECT ID,COUNT(ID) FROM tbl_A GROUP BY ID ORDER BY 1

Maybe you are looking for

  • My computer will no longer stream videos? The videos are choppy and show static?

    Hello! My macbook pro just recently stopped streaming videos from facebook, youtube, hulu, etc... The videos are choppy and show static. The sound play back is fine but the picture is definitely unclear. I was hoping that there was a simple solution

  • Acrobat Standard gives "Adobe acrobaat has stopped working" immediatly after clicking the icon .

    The computer is running Windows 7 x64 Below are the problem details: Problem signature:   Problem Event Name:    BEX   Application Name:    Acrobat.exe   Application Version:    11.0.7.79   Application Timestamp:    536b812b   Fault Module Name:    a

  • How to use Web Serivce for not jsr 172 phone

    Hi: Is anyone know, how to use web service for phones that only have standard J2ME package installed (without jsr 172 web service packagenstalled)? thank you

  • Printing graphics - URGENT!

    Hi all, I am trying to send a Java2D graphics to a printer. I am reading the file name from JFileChooser. Here is my code:      if(jfc.getFileFilter().getDescription() == psFileFilterDescription){           File psfile=new File(jfc.getCurrentDirector

  • External sample editor

    how do I open an audio file from logic in an external sample editor? I know you can do it, but can't find in the manual how you do this or how to set what the default sample editor is when you open the file in the external editor Thanks