Initial Indexing Mode ( On / Off  ) ?

Hello ALL
We are trying  to configure the queue parameters for <i>initial indexing</i> and <i>Daily update of index</i> .
We are not able to see the <i>Initial Indexing Mode</i> parameter and for that we can set it up :
<i>  On</i>  for initial indexing
<i>off</i>  for Daily update index.
Can somebody tell us where we can find this parameter in order to edit it on or off .
How do we have to proceed.
Many Thanks

Hi Deepti
I have already checked that link and read its content.
The problem is that I don´t know how to edit this parameter ( Initial Indexing Mode ) . Have you done it already ? How ?
Regards
Stanley

Similar Messages

  • TREX initial Indexing

    Hi, I am trying to index about 12mio datasets.
    I changed the queue parameters according to a PerformanceHowTo:
    Parameter
    Schedule Type: Count
    Schedule Max Documents: 100000
    Index Bulk Size: 50000
    Optimize Bulk Size: 400
    Initial Indexing Mode: On
    From [THIS|http://help.sap.com/saphelp_nw70/helpdata/en/46/ceb96feb7e2708e10000000a11466f/content.htm] Page.
    However If I watch the queue I see that all documents arre currently "Optimizing".
    The Problem is now that the Memory usage is very I high. I guess it tries to get all documents into memory first for optimizing?
    Well, I watched the memory usage and now it's not rising anymore and the log says:
    [5472] 2010-12-07 11:05:00.392 e indexmgr     IndexMgr.cpp(01690) : IndexHandle 310815136 index ses:sap_qmd_mdt100_bs_zcer_find__1 acquire search_delta timeout -1 waking up our self
    [5472] 2010-12-07 11:05:00.392 e indexmgr     IndexMgr.cpp(01690) :  index "ses:sap_qmd_mdt100_bs_zcer_find__1"; search_delta 1; write_delta 1; finish_delta_merge 1/0/0(1); handles: thread 5472 (310815136) state search_delta acquired 2010-12-07 11:05:00.392, thread 7940 (327607456) state free to finish_delta_merge acquired 2010-12-07 09:30:18.819, thread 1356 (319214768) state write_delta acquired 2010-12-07 08:54:02.568
    [2376] 2010-12-07 11:06:58.782 e memwatch     MemWatch.cpp(01048) : waiting for unload/memfree: 5800 seconds
    [2376] 2010-12-07 11:06:58.782 e memwatch     MemWatch.cpp(01067) : ses:sap_qmd_mdt100_bs_zcer_find__1 is locked: 5800 seconds
    [2376] 2010-12-07 11:06:58.782 e memwatch     MemWatch.cpp(01067) : ses:sap_qmd_mdt100_bs_zcer_find__1 is locked: 7976 seconds
    [2376] 2010-12-07 11:08:39.094 e memwatch     MemWatch.cpp(01048) : waiting for unload/memfree: 5901 seconds
    [2376] 2010-12-07 11:08:39.094 e memwatch     MemWatch.cpp(01067) : ses:sap_qmd_mdt100_bs_zcer_find__1 is locked: 5901 seconds
    [2376] 2010-12-07 11:08:39.094 e memwatch     MemWatch.cpp(01067) : ses:sap_qmd_mdt100_bs_zcer_find__1 is locked: 8077 seconds
    Does this mean that it's not possible to optimize 12mio in documents in one package?
    Edited by: Daniel Winter on Dec 7, 2010 11:11 AM

    Hi Daniel,
    you have choosen following queue parameter:
    Schedule Type: Count
    Schedule Max Documents: 100000
    Index Bulk Size: 50000
    Optimize Bulk Size: 400
    Initial Indexing Mode: On
    That means 400 * 50.000 Business Objects / Documents will be optimized in one step.
    Now it depends on your amount of main memory if this settings are fine or not.
    But if you detect that this do not work that of cause you can decrease the values.
    For example you can use instead of 400 of Bulk Size only 200 or any other value.
    You have to try it....
    But ony way the question is do you get any error messages? Or is this only a question in general?
    Best regards
    Frank

  • How to load color table in a indexed mode file??

    How to load color table in a indexed mode file??
    Actually, if i opened a indexed file and want to edit color table by loading another color table from desktop (or any other location), any way to do this through java scripting??

    continuing...
    I wrote a script to read a color table from a GIF file and save to an ACT color table file. I think it might be useful for someone.
    It goes a little more deeper than the code I posted before, as it now identifies the table size. It is important because it tells how much data to read.
    Some gif files, even if they are saved with a reduced palette (less than 256), they have all the bytes for the full color palette filled inside the file (sometimes with 0x000000). But, some gif files exported in PS via "save for web" for example, have the color table reduced to optimize file size.
    The script store all colors into an array, allowing some kind of sorting, or processing at will.
    It uses the xlib/Stream.js in xtools from Xbytor
    Here is the code:
    // reads the color table from a GIF image
    // saves to an ACT color table file format
    #include "xtools/xlib/Stream.js"
    // read the 0xA byte in hex format from the gif file
    // this byte has the color table size info at it's 3 last bits
    Stream.readByteHex = function(s) {
      function hexDigit(d) {
        if (d < 10) return d.toString();
        d -= 10;
        return String.fromCharCode('A'.charCodeAt(0) + d);
      var str = '';
      s = s.toString();
         var ch = s.charCodeAt(0xA);
        str += hexDigit(ch >> 4) + hexDigit(ch & 0xF);
      return str;
    // hex to bin conversion
    Math.base = function(n, to, from) {
         return parseInt(n, from || 10).toString(to);
    //load test image
    var img = Stream.readFromFile("~/file.gif");
    hex = Stream.readByteHex(img);      // hex string of the 0xA byte
    bin = Math.base(hex,2,16);          // binary string of the 0xA byte
    tableSize = bin.slice(5,8)          // Get the 3 bit info that defines size of the ct
    switch(tableSize)
    case '000': // 6 bytes table
      tablSize = 2
      break;
    case '001': // 12 bytes table
      tablSize = 4
      break;
    case '010': // 24 bytes table
      tablSize = 8
      break;
    case '011': // 48 bytes table
      tablSize = 16
      break;
    case '100': // 96 bytes table
      tablSize = 32
      break;
    case '101': // 192 bytes table
      tablSize = 64
      break;
    case '110': // 384 bytes table
      tablSize = 128
      break;
    case '111': // 768 bytes table
      tablSize = 256
      break;
    //========================================================
    // read a color (triplet) from the color lookup table
    // of a GIF image file | return 3 Bytes Hex String
    Stream.getTbColor = function(s, color) {
      function hexDigit(d) {
        if (d < 10) return d.toString();
        d -= 10;
        return String.fromCharCode('A'.charCodeAt(0) + d);
      var tbStart = 0xD; // Start of the color table byte location
      var colStrSz = 3; // Constant -> RGB
      var str = '';
      s = s.toString();
         for (var i = tbStart+(colStrSz*color); i < tbStart+(colStrSz*color)+colStrSz; i++) {
              var ch = s.charCodeAt(i);
              str += hexDigit(ch >> 4) + hexDigit(ch & 0xF);
          return str;
    var colorHex = [];
    importColors = function (){
         for (i=0; i< tablSize; i++){ // number of colors
              colorHex[i] = Stream.getTbColor(img, i);
    importColors();
    // remove redundant colors
    // important to determine exact color number
    function unique(arrayName){
         var newArray=new Array();
         label:for(var i=0; i<arrayName.length;i++ ){ 
              for(var j=0; j<newArray.length;j++ ){
                   if(newArray[j]==arrayName[i])
                        continue label;
              newArray[newArray.length] = arrayName[i];
         return newArray;
    colorHex = unique(colorHex);
    // we have now an array with all colors from the table in hex format
    // it can be sorted if you want to have some ordering to the exported file
    // in case, add code here.
    var colorStr = colorHex.join('');
    //=================================================================
    // Output to ACT => color triplets in hex format until 256 (Adr. dec 767)
    // if palette has less than 256 colors, is necessary to add the
    // number of colors info in decimal format to the the byte 768.
    ColorNum = colorStr.length/6;
    lstclr = colorStr.slice(-6); // get last color
    if (ColorNum < 10){
    ColorNum = '0'+ ColorNum;
    cConv = function (s){
         var opt = '';
         var str = '';
         for (i=0; i < s.length ; i++){
              for (j=0; j<2 ; j++){
                   var ch = s.charAt(i+j);
                   str += ch;
                   i ++;
              opt += String.fromCharCode(parseInt(str,16));
              str = '';
         return opt
    output = cConv(colorStr);
    // add ending file info for tables with less than 256 colors
    if (ColorNum < 256){
         emptyColors = ((768-(colorStr.length/2))/3);
         lstclr = cConv(lstclr);
         for (i=0; i < emptyColors ; i++){
              output += lstclr; // fill 256 colors
    output += String.fromCharCode(ColorNum) +'\xFF\xFF'; // add ending bytes
    Stream.writeToFile("~/file.act", output);
    PeterGun

  • My iPhone 3gs backed up to the iCloud just fine, but my new iPhone 5 gives me an error and says to turn off airplane mode or use wi-fi.  It is connected to my wi-fi and airplane mode is off.  It can see the internet just fine.  What gives?

    I backed up my iPhone 3GS to iCloud.  Activated my iPhone 5 and restored it from iCloud.  But iPhone 5 will not backup to iCloud, only to my MacBook.  When I try to turn it on on the phone it gives me an error that I must turn on Wi-Fi or turn off Airplane mode.  Wi-Fi is on an the phone is talking to the internet just fine and airplane mode is off, but I still get the error. Is this a known problem?

    You mean take the cover off of the iPhone, to look inside?  I'd recommend against it.  Even with warranty expired, you might qualify for an out-of-warranty service, which for 3GS is $149.
    Other than that, any repair/service options are going to cost money.  You might want to see if a wireless carrier will let you get a new contract & phone.
    Out of curiousity, you're just using at as, basically, an iPod Touch, if there's no cell provider?  Did I understand that correctly?

  • Eyedropper tool doesn't work in Index Mode

    When I am in Index mode, and I bring up the color table, the eyedropper tool doesn't work unless I right-click and choose one of the point sample averages. And even then, it doesn't always work unless I hit some combination of Shift-control-option-command. I'm still not sure what the combination is since it seems to differ a little depending on Photoshop's mood.
    I can remember there was this problem a couple of versions back, and Adobe fixed it after about a year or so.
    Anyone else experiencing this?
    Thanks, Chuck

    Thanks for the temporary solution. The is the same bug was in CS3 then fixed ic CS4. Now it's back in CS5.
    I've only had this bug with Macs not PCs. "YES IT'S A BUG!" Question: Is there anybody from Adobe who reads this? Can someone at adobe please tell us when this Mac bug will be fixed? For a premium product at such a price, Photoshop shouldn't have a bug like this. Adobe should be more responsive! Think of the difficulty people like me who write textbooks must have. To give one technique for a PC and then a workaround technique for a MAC. I implore anyone who is experiencing this problem to contact Adobe & let them know about it! Here's a link to their bug report page. https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform   Thanks everyone (for letting me vent). Frederick

  • How to make sure Bridge Mode is OFF on my new TC

    When I go into Airport Utility for my New TC, Network, Router Mode the choice is OFF(Bridge Mode). Does this mean the Bridge Mode is off?

    Alex_Tiny wrote:
    I have read through your posted thread and you clearly state that TC, AC version cannot be set up using your method. I have the AC version so it won't work for me.
    Eggman worked out in the thread how to do it.. So follow his section.. which is the same but using v6 utility.
    So my question is can I just shut down the Bridge Mode, and set all the details so I can udate the TC with the new DNS numbers.
    You can put the TC in router mode.. dhcp + nat and try it..
    I do not know if it will work but the problem is, you will then have other issues.. so even if the dns is correct other things won't be.
    Double NAT is the issue.. so it depends on if you can move the main router to the TC instead of the current router.
    Please do try the other method.
    Also, it is way too complicated for my inexperienced pea brain. I am retired and pretty much isolated here with very little outside help available.
    You have lots of time.. try every method.. just reset if you mess up and start over. You cannot hurt anything.. indeed you can export your current setup in airport utility so you can restore it easily.
    Take your time and make up a proper log and try different settings..
    I found it hard to change DNS.. what the company refers to as many people with TC and extreme running this setup unfortunately you really have to work from where you are. If your TC shows DHCP + NAT then bridge is off.. and you have full router and you can play to your hearts content with dns settings.
    Tell us what the make and model of the modem you have now.
    Give us the current dhcp setup of the modem.. ie the range of IP's and DNS settings.

  • Have .png images in indexed mode - how to edit?

    Hello - I have some images in indexed mode and my Photoshop CS 4 won't let me edit them - how can I get them out of indexed mode?
    here's a screenshot of my work area:

    You can also look at my profile and see how many people have awarded me points for useful responses.
    I'm sorry if you are unable to interpret my responses as anything but helpful. I'm not attacking you. I am pointing out the problem with CMYK conversion. Does the fact that fewer functions are available in CMYK mode tell you that CMYK is not the ideal mode for editing images? With color profilng and CMYK preview, there are few situations where one really must dumb down an image to CMYK mode.
    Let's grow up and discuss Photoshop, not your own interpersonal issues.

  • HT204266 iPad works except I cannot access anything at the App Store (Also I have 'no service' in the top left corner that will not change even if I switch the airplane mode on/off)

    Recently, my iPad has stopped allowing any functions to be performed in the App Store. I can access but cannot update or acquire any apps.
    The rest of the iPad appears to be working other than the 'no service' in the topleft corner. I tried to change that by switching the airplane mode on/off with no luck.

    Hi wiremaker,
    If you are having issues accessing the App Store, possibly due to the No Service issue, you may find the following articles helpful (the second is aimed at iPhones, but should also apply to cellular iPads):
    Apple Support: Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    iPhone: Troubleshooting No Service
    http://support.apple.com/kb/ts4429
    Regards,
    - Brenden

  • Function Based Index MOD(column_name,8)

    For a function based index (MOD(column_name,8), the query is not using it. Do anyone have a solution to it? The table is having millions of rows.

    Oracle only uses indexes if the number of returned rows is less than (i think) 4%. In your case the number of rows is 12,5% so Oracle will never use this index unless you force it

  • [PXE][IPv6] WdsClient: There was a problem initializing WDS Mode‎

    PXE/IPV6 show error after load boot image: WdsClient: There was a problem initializing WDS Mode‎ ; boot via IPV4 is pass and success to insall win8 to clent
    1. Server 2012(DHCP+WDS): fail at some times
    2. Server2012(DHCP)+Server2008R2(DHCP): fail always
    The test environment is pass before, i don't know what happened or any setting is changed.
    Hope your help, thanks.

    Yeah, same here.  Did you ever fix this?

  • TS4000 When I create a reminder the date/time will not stay attached to the reminder. It initially sets then drops off. Any ideas?

    When I create a reminder the date/time will not stay attached to the reminder. It initially sets then drops off. Any ideas?

    Sounds like we have a similar problem.  Four days ago I was playing music through a wireless Bose speaker via bluetooth and everything was fine.  Then I was texting while listening and got 2 texts about the same time as I was typing one and my phone went black.  I pushed the home button and it worked, went into my texts and all were there.  However ever since then the time isn't right, so it can't keep time no matter what I do.  The bluetooth works only at times, the wifi keeps jumping on and off, sometimes my data won't work and the other day I couldn't even turn it off, so had to wait until it died.  The battery life display at that moment wasn't correct either.  Took to Verizon, they couldn't help.  Suggested a factory reset, which I did last night and still the same issues!  One day I couldn't even text my husband on his iPhone.  Just wouldn't work at all.  Did everything suggest and still not good.  Seems like after stalking these pages today a lot of people are having this problem in Dec/Jan and of course also I'm 3 weeks out of my 1 year warranty and so were many others, by days.  Very strange, and all on the 5C.  What did you do?  Is it working now?

  • RFC Communication error when doing initial indexing

    Hello Everyone,
    I have a quick question, when doing the initial index rollup for a BIA index the job is failing with RFC communication error.
    We currently have the setting related to " TREXRfcServer threads" set to "Automatic Changes" in order to avoid the RFC Communication errors when loading big loads in BI system.
    We currently are on Revision 49.
    I also have referred to OSS Note 1138603.
    The issue is when I am rolling up the BIA Index the rollup job is failing with RFC Communication errors.
    The Global parameters within BIA are:
    BATCHPARA - 2
    NUMPROC - 5
    PKGSIZE - 10000000
    SUBPKGSIZE - 20000
    We have two app servers with 52 Dialog processes and 25 Background processes.
    Any help would be really appreciated.
    Thanks
    Dharma.

    Removing references to systems and ports
    Issue:
    When the initial indexing is being carried out for an InfoCube to
    create the BIA Index and there is more than one application server in
    the system the job is failing with the http error.
    Hello Everyone,
    Thanks for the input, after the automatic changes was configured for concurrent requests the error is different right now.
    The error message is,
    "Remote communication failure with partner http://<Removed>:<removed>/indexCellTable"
    Overview/Background:
    When the indexing job is triggered as a background job the failure happens when the S table index is being filled.
    In our system where we are trying to do the stress testing we currently have two app servers and one central instance.
    When I limit the RFCGROUP in RSDDTREXADMIN table to one App server in terms of logon group the job finishes fine.
    Whereas, when I do not limit the RFCGROUP and all app servers are open for access the background job finishes with the error message
    Remote communication failure with partner http://<Removed>:<removed>/indexCellTable.
    We have looked into the OSS Note 1102652 and our BASIS team confirmed that they were able to ping from BI App servers into BIA blades and vice versa.
    We also confirmed if the local gateway was used for connectivity.
    The above issue was not in other systems where we only had one server.
    We currently are at Revision 49 and SP 13 in BI.
    We have E5345 Clowertown blades (2 x 4) 16GB blades.
    Please let us know if you need additional information.
    Thanks in advance for the input.
    Dharma.
    Edited by: Arun Varadarajan on Apr 24, 2009 1:36 AM

  • Why are websites in firefox loading in an index mode after upgrading to mountain lion?

    why are websites in firefox loading in an index mode after upgrading to mountain lion?

    Hi Canes,
    Sorry - not sure what you mean?
    GB

  • ESH_ADM_INDEX_ALL_SC cannot perform initial indexing for all search connectors

    Dear SAP Gurus,
    We are implementing TREX version 7.10.50 for Talent Management ECC 6.0 - EHP 5.
    I'd like to ask you question regarding ESH_ADM_INDEX_ALL_SC program
    which used to create search connector for TREX and perform initial indexing for all search connectors.
    As we know we can perform indexing using  ESH_COCKPIT transaction code or use ESH_ADM_INDEX_ALL_SC.
    If I try to perform indexing using ESH_COCKPIT, all search connectors can be indexed ("searchable" column are "checked" and status are changed to "Active" for all search connectors).
    However, if I try to perform indexing using ESH_ADM_INDEX_ALL_SC, not all search connectors are indexed.
    I've traced the program ESH_ADM_INDEX_ALL_SC using ST01 transaction code and found these error:
    - rscpe__error 32 at rscpu86r.c(6;742) "dest buffer overflow" (,)
    - rscpe__error 32 at rscpc   (20;12129) "convert output buffer overflow"
    - rscpe__error 128 at rstss01 (1;178) "Object not found"
    Please kindly help me to solve this issue,
    Thank you very much
    Regards,
    Bobbi

    Hi Luke,
    Please find below connectors and the status after running ESH_ADM_INDEX_ALL_SC:
    HRTMC AES Documents Prepared
    HRTMC AES Elements Prepared
    HRTMC AES Templates Prepared
    HRTMC Central Person Prepared
    HRTMC Functional Area Prepared
    HRTMC Job Prepared
    HRTMC Job Family Prepared
    HRTMC Org Unit Prepared
    HRTMC Person Active
    HRTMC Position Prepared
    HRTMC Qualification Active
    HRTMC Relation C JF 450 Active
    HRTMC Relation C Q 031 Active
    HRTMC Relation CP JF 744 Active
    HRTMC Relation CP P 209 Active
    HRTMC Relation CP Q 032 Active
    HRTMC Relation CP TB 743 Active
    HRTMC Relation FN Q 031 Active
    HRTMC Relation JF FN 450 Active
    HRTMC Relation JF Q 031 Active
    HRTMC Relation P Q 032 Active
    HRTMC Relation S C 007 Active
    HRTMC Relation S CP 740 Active
    HRTMC Relation S JF 450 Active
    HRTMC Relation S O 003 Active
    HRTMC Relation S O Area of Responsibility Active
    HRTMC Relation S P 008 Active
    HRTMC Relation S Q 031 Active
    HRTMC Relation S S Manager Active
    HRTMC Relation SC JF FN Active
    HRTMC Structural authority Active
    HRTMC Talent Group Prepared
    As suggested by OSS, we implement SAP Note 1058533.
    Kindly need your help.
    Thank you very much
    Regards
    Bobbi

  • Bedside Mode Turning Off?

    Has anyone had a problem with Bedside Mode turning off sometime in the middle of the night?  This is my second BBZ10 and the first one did not do this.  (I had a battery issue with the first one, so Verizon swapped my entire phone since it had only been a week.)  Everything else seems to work OK, but this is just one kind of frustrating issue.
    Thanks for any thoughts or commiseration! 

    Look at the free memory; I've written on this here -- the unit is likely running out of free RAM and watchdog-restarting, which beats a hang.
    It's a problem that Blackberry needs to find and fix, but you can defend against it to some degree by looking at free RAM before you retire and if its low (under 800MB or so) and/or you have a large number of backgrounded apps running, reboot the phone.  Yeah, you shouldn't have to and Blackberry ought to make fixing this a priority.
    I've yet to have an overnight blowup.
    Market Information? Come read The Market Ticker!

Maybe you are looking for