How to manage  Index of Aggregates?

Hi Experts,
I am in BW 3.5/PL 15 system.
In the manage of cube->Performance Tab, when I do 'check for Aggregate Index ' it shows red. This means the index of the aggregates are not maintained.
I understand by clicking the 'repair' option I can correct the Aggregates index. But It will not possible to do every time manually after the cube loads. Process chain doesn't give the option to create index for aggregates.
Is there a way?

hi kannan natarajan,
check out this option to u r requested.
.      On the Manage Data Targets screen choose Environment -> Automatic Request Processing. The Automatism Maintenance dialog box appears.
       2.      Under the group header Automatic Processing, set the Roll Up Data into the Aggregate indicator.
       3.      Save your entries
thank u ,
reward points if helpful.

Similar Messages

  • How to Manage index of user define dimensions

    When I create a new rate application,The BPC system throw the message"Index was out of range:must be non-negative and less than the size of the collection parameter name :Index".
    I searched oss notes:1323195 saying :"A user can change the index of user-defined dimensions by clicking a button named "Manage Index" in "Modify application". The button will be shown if**
    *there are user-defined dimensions already assigned to an application or at*
    *the moment of assigning a user-defined. If the button is clicked a windows*
    *will popup, and the user can maintain a user-defined dimension index from*
    *the window."*
    But  i can't find the menu "manage index" .
    could someone tell me how to find it?
    thanks

    Just go trough Manage application and Modify application and use reindex and full process.
    This normally should fix your issue.
    Regards
    Sorin Radulescu

  • How to manage the ATE_SEARCH_IDX-index in Ask the expert-application?

    I'm currently looking at the Ask the expert(=Tom Kyte) application and I cannot figure out how to manage the Oracle Text-index "ATE_SEARCH_IDX" ON "ATE_SUBMITTED_QUESTIONS" ("ANSWER")
    INDEXTYPE IS "CTXSYS"."CONTEXT".
    In the Readme-file can be read:
    "To customize search functionality, view the Oracle Text Index installation
    script. You can change the interval that the index is synched and change
    the fields that are used in the search."
    I don't see the Oracle Text Index installation-script.
    Can anyone give me the contents of the script or come up with an alternative?
    Thanks,
    Jan Willem

    Thank you, Marco. I found it.
    Still, the reason why I was looking for it was the fact that I asked myself a question, answered it and then tried to Search for it. I couldn't find my own question (and answer).
    The only way I found to make it work was to manually rebuild the index on the answer-column in ATE_SUBMITTED_QUESTIONS. But I'm sure there's another way, because these are not the kind of things you'd like a customer (or myself) to do on a regular basis.
    Can you give me another way to synchronize this index preferably managed from inside the database?

  • How to find index marks

    Hi
    I'm trying to managed "index" for my simple Indesign to html conversion tool and I'm totaly confused on how to do it and with the extendscript managment of that "index". So here are (alot of) questions about it:
    When I'm looping through all the characters of a paragraph, how can I identify "index marks" ? RegExp, specialCharacter...? ** Reply to myself ** Work with Grep search of "\~I"
    After finding an "index mark" how can if find the associated "topic" ?
    If there can be only one "index" in a document, why is there an "indexes" property ?
    What is an "indexSection" ?
    Hope there will be somebody to clear my mind
    Thanks alot

    Sebastien,
    If script writers aren't stubborn they'll never get their script problems solved! A note on terminology: ExtendScript, by the way is just JavaScript. What you mean is InDesign's object model.
    It's true that when you select an index marker  in a text and you have the Index panel open, the referenced topic is highlighted in the panel. But that's not exposed to scripting, that is, the Character object doesn't have a property 'topic'. However, you can determine the selected marker's topic, even if it's a pretty laborious method. Index markers are characters in the text, so they have a parent story and an index. pageReferences have a property sourceText, which is an insertion point. To find an index marker's topic, you need to compare the marker's insertion point with the insertion points of all pageReferences.
    The functionality that you miss -- selecting an index marker so that its parent topic is selected in the Index panel -- can be scripted as follows:
    $.writeln (findTopic (app.selection[0]).name);
    function findTopic (marker) {
        var topics = app.documents[0].indexes[0].allTopics;
        var mStory = marker.parentStory;
        var mIndex = marker.insertionPoints[0].index;
        var pRefs;
        for (var i = topics.length-1; i >= 0; i--) {
            pRefs = topics[i].pageReferences.everyItem().getElements();
            for (var j = pRefs.length-1; j >= 0; j--){
                if (pRefs[j].sourceText.parentStory == mStory && pRefs[j].sourceText.index == mIndex) {
                    return pRefs[j].parent;
        return "";
    Select an index marker in a text and run the script (this doesn't select anything in the panel, of course). Now, if you've many index markers, then looping through them to find their topic names could in principle be done as follows:
    app.findGrepPreferences = null;
    app.findGrepPreferences.findWhat = '~I';
    markers = app.documents[0].findGrep();
    for (var i = markers.length-1; i >= 0; i--) {
        $.writeln (findTopic (markers[i]).name);
    But that would be horribly inefficient (though accurate). Better first to build a lookup table of the pageReferences and their story IDs and sourceText indexes so that you can find topic names quickly.
    Your particular approach -- looping through all characters -- needs a bit of a modification in that you need to compare every character with the index.
    Something like this:
    for (var i = 0; i < myChars.length; i++) {
       if (myChars[i].contents == '\uFEFF') {  // myChar is probably an index marker
          var topic = (findTopic (myChars[i]).name);
          if (topic != "") {
              $.writeln (topic);
    Peter

  • How to enforce index

    Hi Guys,
    How to enforce index ?
    Say for example,
    select max(dt) from emp
    emp table has an index called 'id1'.
    I want to enforce this index for the above query. How ?
    Inputs are welcome !

    Your index on ID is worthless for this query.
    You would have to add an index on your DT column. Even then, the index will only be used if you have a NOT NULL constraint on the column (or add "and dt is not null" to your query):
    SQL> explain plan for
      2  select min(dt), max(dt) from emp;
    Explained.
    | Id  | Operation            |  Name       | Rows  | Bytes | Cost  |
    |   0 | SELECT STATEMENT     |             |     1 |     8 |   194 |
    |   1 |  SORT AGGREGATE      |             |     1 |     8 |       |
    |   2 |   TABLE ACCESS FULL  | EMP         | 91000 |   710K|   194 |
    SQL> alter table emp modify (dt not null);
    Table altered.
    SQL> explain plan for
      2  select min(dt), max(dt) from emp;
    Explained.
    | Id  | Operation             |  Name       | Rows  | Bytes | Cost  |
    |   0 | SELECT STATEMENT      |             |     1 |     8 |    39 |
    |   1 |  SORT AGGREGATE       |             |     1 |     8 |       |
    |   2 |   INDEX FAST FULL SCAN| EMP_DT      | 91000 |   710K|    39 |
    ---------------------------------------------------------------------Still, even without an index a full table scan of 91000 rows takes < 1 second even on my laptop. How are you getting 21 seconds?

  • How to manage large partitioned table

    Dear all,
    we have a large partitioned table with 126 columns and 380G not indexed can any one tell me how to manage it because now the queries are taking more that 5 days
    looking forward for your reply
    thank you

    Hi,
    You can store partitioned tables in separate tablespaces. This does the following:
    Reduce the possibility of data corruption in multiple partitions
    Back up and recover each partition independently
    Control the mapping of partitions to disk drives (important for balancing I/O load)
    Improve manageability, availability, and performance
    Remeber as the doc states :
    The maximum number of partitions or subpartitions that a table may have is 1024K-1.
    Lastly you can use SQL*Loader and the import and export utilities to load or unload data stored in partitioned tables. These utilities are all partition and subpartition aware.
    Document Reference:
    http://download-east.oracle.com/docs/cd/B19306_01/server.102/b14231/partiti.htm
    Adith

  • HELP! How can I index an image?

    Hello,
    I4m considering using iFS in a complete document management/imaging solution. I already have the scanning software, but one question remains: how can i index the image content (TIFFs) in iFS? Supposing my scanning application produces the OCR file, could I somehow use it with iFS? For example, could I store it as a document property (even if the OCR file is large as 50-100K) and then search into this property? Or could I develop a custom iFS application for that?
    Any idea will be welcome :-)
    Thanks in advance,
    Vinicius

    Vinicius, you could do all kinds of things with iFS to satisfy your requirement -- right now -- as long as you're willing to do some development. We don't support OCR indexing out of the box, but you could totally do it. For instance...
    Let's say you have a bunch of images. And lets also say you have software that can scan them and produce text (OCR). You could then write a parser that took images (upon upload) and ran them through the OCR software. The output (text) could be stored as a document property, as you say, but I would actually suggest storing it as a separate file, just like you could do on a standard filesystem. Then, with iFS, you could store a property on the image that was the document ID of the text file (produced by the OCR). You could "folder" both files, if you wanted, or you could just folder a single file (the image, maybe).
    You could also do this asynchronously, with an agent. Instead of a parser, you could make an agent that "watched for" images being uploaded. The agent would then OCR the images and save the files into iFS, again, "connecting" the two by way of a document property.
    And this is just one way to do it. And I just came up with this off the top of my head. I'm sure you could come up with a REAL design given some time and effort. Again, the actual implementation for your solution is NOT built-in to iFS. BUT, using the API and the technology that IS built-in to iFS, you COULD get this done, and I think it would be pretty cool. You could even sell it as an add-on product! :)

  • How to manage two sites from iWeb

    Hi all
    I've built two different sites with iWeb, my personal site which goes to my .mac server and publishes there, no problem. I now have built another site for my girlfiends family business, and theirs will go to a differente host and server.
    The problem I have is that I have both sites now open, each with their own individual pages, etc (they both appear on the left column as headers), but I can't seem to isolate them for publishing purposes. In other words, I'd like to publish my site to .mac, and my girlfriends site to my hard drive for eventual upload to their server.
    When I go to publish, whether I select .mac or my hard drive (publish to another folder) it selects both sites at the same time, I.e. I can't publich them individually.
    The problem is that I end up with a copy of my personal webpage files on my hard drive, and a copy of their webpage files on my .mac!
    A further problem I see is that this publishing process creates just one index.html file, for both pages. So how can I use this html file to point it to their domain??
    Appreciate the help, thanks
    J

    J:
    To add another method to the mix here's how I manage multiple sites. Although they all go to my .Mac account this method can let me post any of them to any other server as I see fit.
    One way to handle multiple sites is to use iWebSites. It lets me create multiple sites and multiple domain files. If you have multiple sites in one domain file here's the workflow I used to split them into individual site files with iWebSites.
    This lets me edit several sites and only republish the one I want to where I want.
    Do you Twango?
    15 MBP 2.16Ghz; G5 Dual Core 2GHz, 2G RAM, 250G HD; G4 Dual 1Ghz, 1.5G RAM;   Mac OS X (10.4.9)   22" LCD, 710G FW HDs, Canon: SD700IS/i850/LIDE 50, Epson R200, 30G iPod, 2G Nano

  • How to manage my media

    Hi all
    I need some advice please on how to manage my media between my original laptop which has all my current media on, and my new mac mini.
    Some background....I got the mac mini mainly to use with my LCD TV and front row listening at home and viewing pics on a big screen.
    So starting with music, im confused as to the best approach to take. I have an iPod and want to maintain my play counts and ratings as these drive my playlists. If i transfer my current metadata to the mac mini but continue synching to the laptop, then immediately the databases start to diverge. Im not worried about play counts on the mac mini, but changes to my ratings on my ipod (my method of rating) will not flow through to the mac mini. I dont want to synch to the mini as my wife will totally wreck my play counts, as she plays the same music over and over again!! However, I would like updated ratings to be on both systems. Im not sure there is a solution to this, but any ideas would be welcomed!
    With pictures I want to maintain editing on my laptop as I have Elements 3.0 and dont fancy editing on my TV anyway. But of course I want to view my pictures through my mac mini on our tv!
    I am right in that maybe my best option would be to invest in a external network hard drive for my media to live on and have both computers access it that way? Im on a 54mbs wireless laptop, would an external hard drive be fast enough over that? plus its more expense I dont really want to spend!
    Apologies for the length, but I dont want to get this wrong and I know it will be harder to change if I start off on the wrong foot!
    Thanks
    Jared

    Just to hit one topic of your post...this utility might be a solution for you...
    http://www.findleydesigns.com/ipodaccess/index.html
    It painlessly merged my older MS Windows nano's songs with my current Mac iPod's library.

  • How to manage slow and fast moving goods in Demand Planning

    Hi All,
    Kindly let me know how to manage slow and fast moving goods in Demand Planning.
    1. First how to detect slow and fast moving goods
    2. which DP model to use
    3. Any Best practice while dealing with slow and fast moving goods
    Thanks
    Arun

    Arun,
    There are two main concerns with forecasting slow moving goods. For fast moving, yes, trend, level and seasonality combined with a decent demand level gets you through.
    So, either you don't have demand in the market for that product; if the product is not critical (like go/no go spare parts) I recommend just averaging out the demand over a period and going with that. Any errors incurred there won't have a significant business impact. On the other hand if it is critical, safety stock and/or contractual obligations come to play.
    OR, if there is market demand but your market share is too low for whatever reason, then it gets tricky because you need a predictor variable(s) for which you have good knowledge off (such as CPI index, demand for related products, etc). The forecast is then done on the predictor variable(s) and the low market share applied to 'translate' the expected demand to the product in question. Unfortunately, the case of low demand/low market share I have no idea of how to implement it on SAP. Since forecasting is just the tip of the iceberg, it may pay to do it outside of SAP (say in Excel) and manually input it (unless the products are many and varied).
    Hope this helps. Please let me know if this makes sense and/or applies to your question.
    Rodrigo

  • How to Manage the Resource Master in Primavera Enterprise Version

    We are using P6 enterprise version in our company having a central database. We had created our own unique resources and standardised across the enterprise and is Admin protected. However we often have to import some schedules sent by our consultant/client. In those schedules they have their own resources.
    So when we import these schedules, it also imports the resources along with it and pollutes our resource master.
    Can anyone let me know, how to manage such a situation.
    Regards

    We have met this issue. You have few ways to deal with it, but each has its own +ve and -ve.
    1- You may create a separate "Working" db into which you can import those files and keep them there only. Your master db shall be used for maters and your own program only.
    2- You may do the same for checking the resourses, vet them before importing into the final db
    3- P3 and MSP importation allows you to select the node to which the resources will be located. We have created a resource node called "Imported Resources" and dumped all those resources into it. Our users don't have access to that node so those resources can only be used on the imported program and can't be assigned to any other program / activity
    4- Enforce your supply chain to use the same resource list. We managed to do that for our main and subcontractors. That formed part of their contracts.

  • How I Managed to Install Windows 8.1 Pro on an iMac 27-inch, Late 2013

    As is typical with many of my Boot Camp installs, this one did *not* goes as smoothly as planned. This installation was particularly troublesome, so I thought I would share how I managed to set up Boot Camp on a brand new iMac (27-inch, Late 2013) using a Windows 8.1 Pro DVD and an external Apple SuperDrive. These are the steps I took:
    Download Boot Camp Support Software 5.1.5640 (http://support.apple.com/kb/DL1721)
    Copy Boot Camp Support Software to empty MS-DOS (FAT)-formatted USB key
    Run Boot Camp Assistant and select third option only (Install Windows 7 or later version)
    Computer would reboot after Boot Camp Assistant finished but would boot back into Mac environment and not continue Windows installation
    Boot computer holding down option key and select Windows (with DVD icon) and go through initial setup process (could go as  far as trying to format Boot Camp partition as NTFS and then got stuck)
    Quit Windows installer and reboot computer holding down option key and select EFI Boot
    Run Windows installer
    These same steps worked for another iMac (same model) that I set up later the same day.

    Note: These types of discs or activities are not supported by DVD or CD sharing:
    DVD movies.
    Audio CDs.
    Copy protected discs such as game discs.
    Install discs for an operating system such as Microsoft Windows (for use with Boot Camp), or Mac OS X.
    Burn a CD or DVD

  • How to manage one wsp and dll for multiple clients in farm environment

    1. There is a product which is developed using C sharp , jquery,CSS and sharepoint object models which have been packaged into .wsp file. Whenever we introduce new functionality to the product we used to branch the
    previous code as a version , say Version 1.0 and new functionality of the product will in another solution. This is how we are managing the code in TFS as versions. Each newer version will have new functionalities. We do not give latest functionality for all
    the clients. Each client is having its own version of functionality. Technically in order to access the functionality, the wsp solution should be present in the solution repository which is available in SharePoint central administrator site. This solution
    will be deployed on the client’s site. We are following the above process in SharePoint standalone installation where we used to purchase dedicated server per client and installed sql, SharePoint foundation 2010 as standalone installation and adding the client
    related version of the code to the solution repository. Later host on the site which is created for that client purpose. This process is same for all the clients where we purchase individual server for each client .
        Now we want to host our product in farm environment of sharepoint foundation 2010 where we are going to try 3 level architecture. 
    • SQL Server-In this sever we are going to install sql server 2008R2 standard edition. Which should serve the database service for all the web applications/sitecollections which we are going to create in Web front end server.
    • Application server- In this server we are going to install the sharepoint as farm and will install search server express for serving search functionality for our product
    • Web front end server- In this server we are going to add this server to Sharepoint farm which we have created in application server. Here we are going to create web applications and site collections for all the clients.
    In this scenario how to manage multiple versions of same wsp solution?
    Another major issue w.r.t the architecture of the product and new approach for client deployment as follow.We have CSS, jquery files for serving the functionality.These files have been mapped to 14 hive folder.If any changes we do one of the jquery file or
    css file which is meant for latest version and not for old version, then how to manage this new functionality for that particular css or jquery file in 14 hive folder, since there is only one 14 hive folder. What is the best practice to make this happen? Another
    thing is, how to manage dll files for individual client?

    It sounds like you have a farm scoped solution at work. In that case you can only have a single instance of it per farm, you'd have to branch each version so they appear to be seperate solutions entirely (thus ruining your clients upgrade process).
    Bluntly i don't think a single farm can manage all your user environments.

  • How to manage photos from multiple accounts

    Hi,
    i am trying to solve one problem. I have one iMAC where i have two user profiles connected to different AppleIDs. Next to it there are two iPhones and two iPads. I am trying to find out, how to manage photos from all these devices using one account on iMAC. Second question is if there is any finction in iPhoto that can publish images to NAS server? Second alternative for me is to byu iCloud drive space and use Family sharing for publishing photos. Bellow text schema is attached, it is only my idea and i dont know if this could work like this. Did anyone somehow solved this configuration? Thanks

    I can see the screenshot if I double click on it.  However, here is it again.  Being Halloween maybe it'll show.

  • My family put multiple devices on the icloud, and I need to know how to manage duplicate entries.  Specifically contacts.  If I fix the contact list on my pc will it push the info out to the other devices and maintain it correctly?

    My family put multiple devices on the icloud, and I need to know how to manage duplicate entries.  Specifically contacts.  If I fix the contact list on my pc will it push the info out to the other devices and maintain it correctly?

    All devices signed into the same iCloud account will finish up with the same contacts. Of course if prior to joining iCloud two family members each had an entry for Uncle Fred, then you will finish up with two contact cards for Uncle Fred, and so on. If you tidy this up on your computer then the changes will propagate to everyone else.

Maybe you are looking for