How would a calc all script look like for this outline

I understand that
When you perform a default calculation (CALC ALL) on a database, Essbase calculates the dimensions in this order:
If both a dimension tagged as accounts and a dimension tagged as time exist, and if formulas are applied to members on the accounts dimension, Essbase calculates in this order:
Dimension tagged as accounts
Dimension tagged as time
Other dense dimensions (in the order in which they are displayed in the database outline)
Other sparse dimensions (in the order in which they are displayed in the database outline)
Otherwise, Essbase calculates in this order:
Dense dimensions (in the order in which they are displayed in the database outline)
Sparse dimensions (in the order in which they are displayed in the database outline)
but what would the calc srcipt look like for the below outline
Dense 1 = 1822 (Accounts)
Dense 2 = 32 (Periods)(Time)
Sparse 1 = 12
Sparse 2 = 10
Sparse 3 = 17
Sparse 4 = 21
Sparse 5 = 22
Sparse 6 = 7
Sparse 7 = 79
Sparse 8 = 761
Sparse 9 = 1081
Sparse 10 = 12140
Thanks in advances
Edited by: Next Level on May 18, 2012 1:43 AM

No need to get excited, especially as you have already answered the question.
As you wrote:
If both a dimension tagged as accounts and a dimension tagged as time exist, and if formulas are applied to members on the accounts >>dimension, Essbase calculates in this order:
Dimension tagged as accounts
Dimension tagged as time
Other dense dimensions (in the order in which they are displayed in the database outline)
Other sparse dimensions (in the order in which they are displayed in the database outline)So Essbase will calculate, in listed order, the following dimensions:
Accounts
Period
Years
Subledger
Company
Region
Division
Ledger
MfgCenter
Business Center
SubLedger
As I and others have written, doing a CALC ALL on the above is not a great idea for a variety of reasons and I personally think this could likely be done pretty easily as an ASO database, but that's with just a hint as to what your requirements are.
If you don't believe me (and I suggest that you do not for your edification) the above calc order is really easy to test. Create a copy of the database, clear it out, find one level zero intersection for all dimensions and do a lock and send/submit to get one block of data. Use the following commands in a calc script: SET UPDATECALC OFF; SET AGGMISSG ON ; SET MSG DETAIL ; CALC ALL ; That will show you (quickly) exactly what and in what order the database gets calculated. Just take a look at the application log.
Regards,
Cameron Lackpour

Similar Messages

  • What would the best process chain look like for this MD data load scenario?

    Hi there,
    I have the following setup. SAP BW connection to external system via DBConnect (DB2 database).
    We have 73 master data text data sources to load either once a week or everyday through process chain. We have not decided on the exact schedule yet.
    All the master data text DataSources pull data from the SAME VIEW created on the DB2 external system:
    VWDEDMASTERDATA
    The structure of the view is the following:
    DEDNAME
    DEDNAMETYPE
    DEDNAMECODE
    DEDNAMEDESC
    DEDNAMELONGDESC
    So, everytime master data text is extracted for all the 73 objects it queries the same view over and over again VWDEDMASTERDATA. We only differentiate in the datasource on the FIELDS tab which InfoObject should DEDNAME map to and then in InfoPackage we filter on the exact object/field to query.
    So essentially, every time we run InfoPackage for master data text object the external system gets queried in the following way:
    SELECT * from VWDEDMASTERDATA where DEDNAME = [FIELD/InfoObject specified in InfoPackage]
    So, if I have to have all 73 objects loaded, essentially the same SQL statement has to execute 73 times. In this scenario, what would be the proper process chain setup that has perfomance in mind? How should the InfoPackages be arranged, in parallel, sequentially, how many in a row, etc?
    Let me know if you need more information.
    thanks

    They would like to send the letters to me
    Depending upon how they send the letters to you and how they expect Acrobat to convert them you could be bordering on a license violation that prohibits you from using your version of Acrobat as a server-based product.
    Adobe offers server based products to convert rtf files into pdf files. Some require your company to run a server, but one seams exactly what they may want. The createpdf service is run by Adobe and seems capable of doing what your company wants.
    https://www.acrobat.com/createpdf/en/home.html

  • How Would I Make A Photo Look Like A Detailed Painting?

    How would I use the "Oil Painting" feature to make a photo look like a detailed painting?

    Digital Painting Tutorials with Photoshop
    http://psd.tutsplus.com/category/tutorials/painting/
    Nancy O.

  • How can I delete all files not authorized for this computer?

    Hi there,
    first off, I promise right here and now, that I will never buy a DRMed song or video again...
    And here is my probelm: I'm using my Mac and iTunes for ages and all things were perfectly fine. I used to have a girlfriend and both of us had our iTunes accounts and were buying stuff everyday.
    After some time we split-up and I kept the computer with the files and the authorization - no worries.
    But then my LogicBoard died. Now apart from the fact that all over sudden half of my music that I used to listen to for years doesn't work any longer I also have a lot of explaining with my new GF to do.
    Ok, guys, please help me out: How on earth do I find ALL the songs that were bought with that specific account and just delete them? (So what, if half the music is gone, but I have to act one fast!).
    thanks for your help!

    Just to let everyone know that there seems to be NO solution for this problem. I contacted the iTunes Support and they told me to go through the library one by one and delte all the songs manually.
    Well, what can I say? I wasted many hours of my life, I went through thousands of songs and delted hundreds of them manually. I'm very frustrated with Apple that they don't provide a function to solve issues like that more elegantly and I'm even more upset with the content industry. I still feel that the music industry is not interested in people enjoying their legally bought products and hope that the current economic downturn wipes out the music industry as we know it.
    I like music, I like to support musicians (not the studio bosses) but I hate the fact that when we purchased DRMed music in times where everyone was using P2P and alternatives like iTunes Plus and Amazon MP3s I, as an honest customer, am now much worse off than if I had pirated the music.
    My advice to all: Hands-off DRMed songs and movies! You will end up in trouble even if it seems to be all easy now and it is just not worth the pain!

  • How about the statement of regular expression like for this

    I what to get varians String array by one regular express for the statement like:
    ${user} like play ${game} in ${date}
    I want to get String[] as {"user","game","date"} by one regex, by str.split(regex). I tried many times but always fail to get the result I expected. May it be possible to meet the destination?
    thanks in advance
    Frederick

    why StringBuffer was using here?So one could split the pattern into multiple lines. But it just occurred to me that one could just use string concatenation, which would look better. I don't know why I bothered to use StringBuffefer.
    e.g.:
    String pattern =
        "^" +           // the start of a string
        "(dog)|(cat)" + // match either "dog" or "cat" at the start of the line
        "\\s*" +        // match an arbitrary amount of whitespace
        "$";            // but don't allow anything other than whitespace after dog or cat
    Pattern p = Pattern.compile(pattern);
    Pattern p = Pattern.compile("^(dog)|(cat)\\s*$");> isn't this look more simpler and better?
    In this case, yes. I was looking for a way to make regexps more explicit, with whitespace and comments, for more complicated cases.
    But those double quotes and plus signs add ugliness of their own, so a regexp would have to be pretty complex before it would be an improvement.

  • All picture is very bright white( all faces look like ghost), safari background is black. My iMac 27" updated to OS x Lion. How can i fix this?

    All picture is very bright white( all faces look like ghost), safari background is black. My iMac 27" updated to OS x Lion. How can i fix this?

    Hi ....
    In System Preferences :
    /Dennis

  • How do I make multiple movies look like one?

    I created a demo of 136 slides with mostly screencaps and one
    small flash animation. The final published flash file is
    approximately 30MB. When the demo is run on multiple computers, the
    CPU utilization rises up to almost 100%, this makes the demo run
    very slowly on most computers. I was advised to cut my captivate
    movie in half ( in slides)... however even then the CPU utilization
    is quite high. How can I break my demo into multiple linked movies
    (to bring down the file size) but still have it play smoothly
    without it stopping to load after each new movie? How do I make
    multiple movies look like one?
    Thank you.

    Would it work to make the navigation of the page go to the
    next movie?

  • How should a professional business plan look like?

    Hi,
    How should a professional business plan look like?
    My teacher just gave me this sample business plan. Now, the content is alright, but what about the typography? I'm not sure, I'm not really a designer, but I do get the feeling it's not as beautiful as it could be. I take it a business plan should appear serious and controlled, almost conservative, as to show investors that you won't do anything stupid with their money. Also, I remember reading somewhere that the best typography is the kind of typography that goes by unnoticed (e.g. nothing fancy) as to not divert the reader's attention from the actual content.
    I don't know, what do you guys say?
    Thanks!

    Thomas Phinney wrote:
    Well, that is a serious, conservative layout, sure. I'm assuming the red text is instructions/suggestions from the teacher, and gets replaced by black text. Is that right?
    Is the purpose of the business plan to attract investors or convince a bank or something? If it was, I'd probably change the typeface selection so that it wasn't all in Times. Nothing radical, but maybe a slightly more flavorful sans serif for headings, and a serif body typeface with a tiny bit more character. Could be for example Frutiger and Baskerville. Still pretty restrained, just not identical to most of the business plans they see.
    But then again, I'm the guy who jailbroke his iPhone primarily to change the UI typeface, and asked the forum admins to change the default typeface here as well. So maybe I'm a little obsessive on this sort of thing.
    Cheers,
    T
    Oh yes indeed, it's for investors who go through hundreds of Times-based business plans every day. I really like the way you worded things there, "still restrained, just not identical to most of the business plans they see".
    Frutiger and Baskerville is a great suggestion! I'm open to more before I go ahead and buy myself a new pair of fonts though.
    Much obliged!

  • Calc all script running since 20hrs in BSO

    Hi All,
    I have saved a new updated outline and executed the Calc All script....but i is running since 23hrs...i have noticed that my drive memory is decreasing...
    please advice...
    Regards,
    Prabhas

    Everything looks same...as prod..server...^^^What is the difference in size?
    but i have noticed one thing here...db->edit properties->General checked : Aggrigate missing values which is unchecked in prod...
    that is the reason why its taking this much time?
    What will happen if i uncheck during the calculation ?^^^Aggregate Missing Values will tell Essbase to do just what it says -- aggregate #Missing up. If anything, it should make your calc faster and the final output smaller. When that is not checked, Essbase will not overwrite upper level blocks with #Missing if the children have #Missing values. This equals more upper level blocks and slower processing. Personally, I never use it.
    If you uncheck it nothing will change. I believe you have to stop the database for it to take affect.
    Are you sure that the compression method is the same if the drive space being used is more in dev than it is in prod? Could it be RLE in prod and Bitmap or None in dev?
    I'm not going to address the speed issues you're seeing as that can be laid at the feet of hardware specs.
    Regards,
    Cameron Lackpour

  • How would you guys block portable Apps like Skype,firefox,Kproxy and gtalk etc etc ?

    Hi,
    how would you guys block portable Apps like Skype,firefox,Kproxy and gtalk etc etc ?
    it just runs from USB / Local HDD .
     obviously I could just block all USB ports but is there a better way?

    Hi,
    Preventing users from running portable applications can be done through:
    Configuring specific User Account Control Settings
    Software Restriction Policies
    AppLocker
    More information, please check this similar thread:
    How to block portable application & prevent installation on Active Directory?
    http://social.technet.microsoft.com/Forums/en-US/winserverGP/thread/dfd21e22-b245-4d2b-b9c7-912fe357653e/
    Hope this helps!
    Regards.
    Vivian Wang
    TechNet Community Support

  • I have 3 iphones, an ipod touch and an Ipad on the same itunes account.  should I have a different account for each device?  If so how do I get all my purchases, like music on all the devices?

    I have 3 iphones, an ipod touch and an Ipad on the same itunes account.  should I have a different account for each device?  If so how do I get all my purchases, like music on all the devices?

    You can sync as many devices as you want to the same iTunes account, there is no limit. You can have the same content on each device or different content, the choice is yours. iTunes will keep everything straight, by device, including separate backups. I'd suggest giving each device a unique name, to make things easier.

  • Hello Apple, Plz give us the classic look option like iOS 6. We miss that appearance which shew all icons as a gems but now in ios 7 all icons look like a cheap stickers and worst than android look. Plz think about it, heartily request to You dear Apple.

    Hello Apple, Plz give us the classic look option like iOS 6. We miss that appearance which shew all icons as a gems but now in ios 7 all icons look like a cheap stickers and worst than android look. Plz think about it, heartily request to You dear Apple.

    There is no Apple in this forum this is a user to user forum.
    send your feedback here http://www.apple.com/feedback/

  • Can someone tell me how to make the letters that look like fabric?

    Can someone tell me how to make the letters that look like fabric?

    pharrout wrote:
    Can someone tell me how to make the letters that look like fabric?
    It could be as simple as clipping an image of the fabric of your choice, to a text layer.
    In this example the Hessian texture was downloaded from Google images, and placed over a Type layer.  You then Alt (Opt) click the intersection of the Type and Hessian layer to clip them together.  This just means that only the shape of the underlying layer will show in the clipped layer.

  • How would I recover all my itunes downloads?

    How would I recover all the itunes downloads after loosing my entire libiary?

    call customer support, they help you with a once only re-download the songs, given that you downloaded it on Itunes

  • How can I list all the domains configured for Weblogic Servers?

    How can I list all the domains configured for Weblogic Servers?
    I saw a note, which says the following:
    "WebLogic Server does not support multi-domain interaction using either the Administration Console, the weblogic.Admin utility, or WebLogic Ant tasks. This restriction does not, however, explicitly preclude a user written Java application from accessing multiple domains simultaneously."
    In my case, I just want to list all the domains, is that possible by using any scripts?
    Thanks
    AJ

    If you use WLS Node Manager and the Config Wizard was used to create the domains, then the list of domains should be in a location like this:
    <MIDDLEWARE_HOME>\wlserver_10.3\common\nodemanager\nodemanager.domains
    Enterprise Manager Grid Control also has support for multi-domain management of WLS in a console.

Maybe you are looking for