Different drill paths for a common Essbase Dimension with varied depth

Hi,
Need a solution to a problem that I have come across where in I have two Essbase cubes, In both the cubes there exists a dimension A, the dimension has different number of levels in each of the cubes. How do I associate the dimension drill path to match their existing structure in the respective cubes? I want to have only one dimension in the BMM Level.
An example scenario would be :
Cube 1: Product -> Product Category -> Product Sub-Category -> Product Name
Cube 2: Product -> Product Category
I want to have only one Product Dimension in the BMM layer and have multiple Hierarchies on it. My Problem is how do I associate the drill path specific to the cube on which it should work? The cubes are identical to each other in every other aspect other than this one difference.
Thanks and Regards,
jboy

@user3879025: No-one mentioned SAP and ragged hierarchies work perfectly fine for Essbase and MS Analysis server for example.
@jboy: Well ok, so you will have logical table and one hierarchy.
Physically, you will have to define a complex join (physical ones won't work...we discussed that lately here) where Cube1.Country = Cube2.Country.
The logical table will have four logical columns "World", "Region", "Country" and "City". You create those by starting off with the logical table from Cube1. The you pull Cube2.Country onto the Cube1.Country column to get a double mapping for that column. The you pull the Cube2.City column onto the Cube2 logical table source.
Now go through the LTS and columns and make sure they have the correct levels set. LTS for Cube1 will be at level "Country". LTS Cube2 will be "City".
For the hierarchy, you'll also start off with the one which has been created from Cube1.
Since there's now only one column called "Country" remaining, you're already in the green down to that level. Now add a new child which contains the "City" column. That's your hierarchy taken care of.
Now the thing missing is the measures of course. Here you will need to get the levels right again. Cube1.Measure1 and Cube1.Measure2 will be at content level "Country" while the Cube2 measures will be at level "City".
Best thing to do would be to confine that model in an own business model (at least an own presentation catalog) to eliminate problems coming from other (unconforming) dimensions that you will most likely have and hence potential errors thrown for users which are unaware of the actual structure in the background.
Hth,
C.

Similar Messages

  • How can I use a different search path for FlexRIO IO modules?

    I want to use an IO module that is outside of the LabVIEW tree, but it seems like LabVIEW only searches in shared/flexrio/IO modules, and I can't figure out how to create symlinks in windows.
    Is there a variable I can set somewhere to include other search directories for the IO modules?
    //Olof
    Solved!
    Go to Solution.

    Hello Olaf,
    There are two locations on your Windows computer that are searched for FlexRIO adapter module support files.  The first is the Program Files directory you have indicated in your post; this directory holds the support files for NI manufactured adapter modules.  However, there is another directory that can be used for the location of any non-NI manufactured adapter modules.  For Windows XP this location is: C:\Documents and Settings\All Users\Documents\National Instruments\FlexRIO\IO Modules.  If you are attempting to install support for a non-NI manufactured adapter module, please ensure that you have installed all of the adapter module support files into this folder. 
    If you would like more information on this as it pertains to a custom adapter module development, please email the support email address listed in your Module Development Kit Manual.  This email address will give you direct access to the NI FlexRIO R&D team for support as indicated here.  If you want to discuss adding the ability to search other directories for adapter module support (other than the two listed above), please email the MDK support email address. 
    Regards,
    Browning G
    FlexRIO R&D

  • Cannot buil Essbase Dimension With ODI

    Hi all,
    i've a problem with an ODI interface to load Metada into Essbase.
    I must load the account dimension the table contains 4 information:
    Parent
    Child
    Alias
    Data Storage.
    I need to load some elements as Dynamic Calc and so I've added the column Data Storage wich contains 'X' For Dynamic Calc elements and 'S' for the other bottom level elements that are Store, but these buttom level elements must be shared member in the same dimension under another hierachy.
    The error that i've received from interface after the execution is:
    unknown source (error -1) cannot build dimension.
    Can somenone help me on this?
    Thanks
    Best Regards
    E. G.

    Hi John,
    i have once more the same problem.
    I send you the script description of the interface:
    from com.hyperion.odi.common import ODIConstants
    from com.hyperion.odi.connection import HypAppConnectionFactory
    from java.lang import Class
    from java.lang import Boolean
    from java.sql import *
    from java.util import HashMap
    # Get the select statement on the staging area:
    sql= """select C1_PARENTNAME "ParentName",C2_MEMBERNAME "MemberName",C3_ALIAS "Alias",C4_DATASTORAGE "DataStorage" from "C$_0Measures" where      (1=1) """
    srcCx = odiRef.getJDBCConnection("SRC")
    stmt = srcCx.createStatement()
    srcFetchSize=30
    stmt.setFetchSize(srcFetchSize)
    rs = stmt.executeQuery(sql)
    #load the data
    stats = pWriter.loadData(rs)
    #close the database result set, connection
    rs.close()
    stmt.close()
    Is it helpful for you?
    Next week i'll send you my source and the outline file.
    Today i've some VPN conncection problem and so i can not send you all the information.
    Thank you very much for your help.
    Regards
    E. G.

  • Edit code for change drive letters in paths for links, to also work with Fonts that have been moved.

    I have the following code that looks through my links and changes all of the drive letters to the new locations where they exist.  So if something stays in the same folder structure, but moves to a new drive E: and InDesign can not longer find it, you can run the code and have it fix them all.
    Well I want to do the same but for fonts that have also moved.
    Thank you in advance for any and all help!
    if (app.documents.length == 0) {
        err("No open document. Please open a document and try again.", true);
    if (File.fs != "Windows") {
        err("This script is for Windows only.");
    var myDoc = app.activeDocument;
    var myLinks = myDoc.links;
    var myCounter = 0;
    if (myLinks.length == 0) {
        err("This document doesn't contain any links.", true);
    var mySettings = CreateDialog();
    for (i = myLinks.length-1; i >= 0 ; i--) {
        var myLink = myLinks[i];
        if ( myLink.status == LinkStatus.LINK_MISSING || (myLink.status != LinkStatus.LINK_MISSING && mySettings[2] == false) ) {
            var myOldPath = myLink.filePath;
            var myNewPath = myOldPath.replace(mySettings[0] + ":\\", mySettings[1] + ":\\");
            var myNewFile = new File(myNewPath);
            if (myNewFile.exists) {
                myLink.relink(myNewFile);
                try {
                    myLink.update();
                catch(e) {}
                myCounter++;
    if (myCounter == 1) {
        alert("One file has been relinked.", "Finished");
    else if  (myCounter > 1) {
        alert(myCounter + " files have been relinked.", "Finished");
    else {
        alert("Nothing has been relinked.", "Finished");
    function err(e, icon){
        alert(e, "Change drive letter in path", icon);
        exit();
    function CreateDialog() {
        var myDrives = ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "y", "Z"];
        var myDialog = new Window("dialog", "Change drive letter in path");
        var myPanel = myDialog.add("panel", undefined, "");
        myPanel.orientation = "column";
        myPanel.alignChildren = "left";
        var myGroup = myPanel.add("group");
        myGroup.orientation = "row";
        var myStText1 = myGroup.add("statictext", undefined, "Change ");
        var myDropDownList1 = myGroup.add("dropdownlist", undefined, myDrives);
        if (app.extractLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_Ddl1") != "") {
            myDropDownList1.selection = myDropDownList1.items[app.extractLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_Ddl1")];
        else {
            myDropDownList1.selection = myDropDownList1.items[2];
        var myStText2 = myGroup.add("statictext", undefined, " to ");
        var myDropDownList2 = myGroup.add("dropdownlist", undefined, myDrives);
        if (app.extractLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_Ddl2") != "") {
            myDropDownList2.selection = myDropDownList2.items[app.extractLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_Ddl2")];
        else {
            myDropDownList2.selection = myDropDownList2.items[3];
        var myCheckBox = myPanel.add("checkbox", undefined, "relink only missing links");
        if (app.extractLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_checkbox") != "") {
            myCheckBox.value = eval(app.extractLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_checkbox"));
        else {
            myCheckBox.value = true;
        var myButtonsGrp = myDialog.add("group");
        var myOkBtn = myButtonsGrp.add("button", undefined, "Ok", {name:"ok"});
        var myCancelBtn = myButtonsGrp.add("button", undefined, "Cancel", {name:"cancel"});
        myOkBtn.onClick = function() {
            if (myDropDownList1.selection.index == myDropDownList2.selection.index) {
                alert("Both drive letters should not be the same.", "Change drive letter in path");
            else {
                myDialog.close(1);
        var myDialogResult = myDialog.show();
        if (myDialogResult == 1) {
            app.insertLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_Ddl1", myDropDownList1.selection + "");
            app.insertLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_Ddl2", myDropDownList2.selection + "");
            app.insertLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_checkbox", myCheckBox.value + "");
            return [ myDropDownList1.selection.text, myDropDownList2.selection.text, myCheckBox.value ];
        else {
            exit();

    ok, so I have discovered where the issue came from...
    The code you helped me with before, were I removed all links and my link character styles that I had (found here: http://forums.adobe.com/message/5881440#5881440)
    Well it set all the items I was finding/replacing to unknown fonts that my machine doesn't have (Like Helvetic Neue Bold, instead of just Helvetica Bold, etc).
    Is there an easy way of fixing this?
    The only way I know to fix it right now is:
    Go to Package >> go to Fonts >> Select the the font that says it's missing >> Select Find First >> CLOSE ALL OF THIS, then use the eye-dropper to select the text around that font which copies the formatting and then apply it to the text who's formatting got messed up.  And then start the process all over again for the next occurence of that word whose formatting got stripped.

  • Upgrade path for WF 2.5.2 with 8i to WF 2.6.4 with 10g r2

    Your help would be useful...
    We have a large project using extensively Oracle Workflow v2.5.2 under Oracle RDBMS Enterprise Edition 8.1.7.4.
    This project involves the Quebec Government
    We would like to do a migration of this WF application from 8i to 10g r2.
    This project uses extensively the workflow engine in an application development through the PL/SQL APIs. It has more than 75 processes and 2500 steps.
    Is this direct migration feasible? Do you know someone who has done it before?
    What is the optimal path to do so?
    Do you have some documentation that covers this king of initiative?
    We use only the WF engine and the client/Server application for configuring the processes. We do not uses special features like e-mails.
    If it not possible to do a migration of the WF from 8i to 10g, is it possible to isolate the workflow 2.5.2 as a standalone application and then migrate it to 10g r2?
    Regards and thanks for your help
    Paujac
    Technology Consultant

    Hello:
    We have done a similar migration with success in a customer installation
    We did that steps in 2005.
    Tell me at which platform you are now.
    Our customer application was intalled at Windows NT .
    We had success doing incremental migration steps :
    a)First upgrade wf 2.5.2 toward wf 2.6 ( over BD 8.1.7 )
    b) then migrate DB from 8.1.7 towards 9.2
    c)Then install OAS 10g release 1 and then install wf 2.6.3 form CD wich come with OAS( over oas home ).
    d)Then upgraded workflow from 2.6.0 towards 2.6.3
    I think that you can use OAS 10g r2 for your case instead of OAS 10g r1 and proceed analogous to c) and d)
    Finally you should migrate BD form 9.2 towards 10g r2.
    No we are in the process to upgrade our customer installation from WF 2.6.3, OAS 10g release 1( 9.0,.4) BD 9.2 over Linux towards
    WF 2.6.4, OAS 10g Release 2, BD 10g R2, over linux
    Please email me to [email protected]
    Regards,
    Fernando

  • Change path for common library

    I want to change the location (path) for the common library
    so i can use it with my team on our server.
    I tried it in the registry (don't work)

    Assuming Messaging 5.2.
    The mail.log_* is written by the MTA, which really doesn't look at configutil settings much. Better to look at:
    http://docs.sun.com/source/816-6020-10/mta_conf.htm#1071375
    and put your path into the imta_taylor file

  • Creation of user mysites under different managed paths

    Hi,
    Regarding creation of user Mysites, can two users have different mysites under two different managed paths?
    The scenario for my case is like this:
    I've a SharePoint 2013 farm attached to a domain contosso.com. Under that AD, I've created two different OUs (Organizational Units), say org1.local and org2.local. Two users are created under the OUs, the usernames being [email protected] and [email protected]
    In my SharePoint 2013 farm I've created a Web Application, say SharePoint - 80, to host the MySite Host Site Collections. I've also created two managed paths under SharePoint - 80, say, /personal and /sites.
    Now I want to create two user mysites, for the users created above. My question is that can we form the urls for the user mysites as below:
    http://HostSiteCollection1/personal/user1_org1_local (for user1 of OU org1.local) and
    http://HostSiteCollection2/sites/user1_org2_local (for user1 of OU org2.local)
    Please suggest as we are totally stuck.
    Thanks in advance,
    Arnab

    Hi,
    According to your post, my understanding is that you wants to create different MySites under different managed paths.
    We can create different managed paths for different MySites for UPA in partitioned mode.
    Harbar has written a good blog about creating the MySite host using that same multi-tenant setup.
    http://www.harbar.net/archive/2010/09/14/sp2010mt6.aspx
    Specifically, you use Set-SPSiteSubscriptionConfig to point to a particular OU for user accounts.
    Next, you create a site using New-SPSite bound to that subscription for your MySite Host (e.g. New-SPSite
    https://customerA.sharepoint.com/mysites -Template "SPSMSITEHOST#0")
    And finally you connect to the UPA Proxy that you previously created in partitioned mode to synchronize users with that particular subscription using Add-SPSiteSubscriptionProfileConfig -ID <Subscription ID> -SynchronizationOU CustomerA -MySiteHostLocation
    "https://customerA.sharepoint.com/mysites".
    For more reference:
    https://social.technet.microsoft.com/Forums/office/en-US/820b1937-4b83-4fd3-8997-118ea13e23ef/sharepoint-2013-my-sites-for-host-based-site-collections?forum=sharepointgeneral
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Issue with the drill path in Hierarchy in OBIEE 11g

    Hi ,
    We have upgraded to 11g(11.1.16.6) and an issue we are facing is that the drill path for the time hierarchy is not same.
    In 10g its Year >Quarter >Month>Date.
    BUt in 11g its rendering as Year >Quarter >Month>Week Number >Date.
    The week number is present in the hierarchy defined in the RPD, but the week number has "Use for Display " unchecked.
    Not sure why it then is coming up in the drill .

    Hi,
    You try to make the changes in the hierarchy as per required,and clear the cache then reload the rpd and then restart the services.
    its just a try, and reward me if it correct.
    Thanks,
    tinku

  • Finding a common Time Dimension in DSO and InfoCube

    Hi,
    I am working on creating a MultiProvider which is a combination of 2 COPA InfoCubes, Open Orders DSO and a Shipment Data DSO.
    I want to use the 'Requested Delivery Period' from Open Orders DSO and a custom field ZSHIPMONTH from the Shipments Data DSO for a common Period dimension in the MultiProvider but that does not look like an option when I tried to assign the 0FISCPER in the MultiProvider to these fields in the DSO. I do not see the fields from the DSOs as options for the period field here, I only see the 0FISCPER from the two COPA InfoCubes as seen in the screenshot attached.
    The only alternative I can think of is to create separate InfoCubes on top of these two DSOs and then use a MultiProvider.
    I learned that reporting is allowed on top of DSOs from 7.3 onwards, is there any easier way to get a common time dimension across these InfoCubes and DSOs for a MultiProvider?

    Hi,
    in both DSO and Cube the data is stored as
              Sales Doc1   M1  10   100
              Sales Doc1   M2    5     50
              Sales Doc2   M1  20   200.
    The material M1 in sales doc1 does not get overwritten with M1 in sales doc 2  in DSO since the data is updated based on sales doc no.
    If u try to view the contents of data target or analyse the data at reporting level with all these fields then it displays as above.
    But if u ignore sales document field then the data is displayed as,
                                       M1  20   300
                                       M2   5      50.
    In Cube, suppose if you dont have sales doc, then
    Material | Qty | Amount
    M1 30 300
    M2 5 50
    and in DSO.
    Material | Qty | Amount
    M1 20 100
    M2 5 50
    Thanks,
    Sandeep

  • Using Lockbox want to hit different GL account for each payment

    Hi Everyone,
    Currently, we have lockbox up and running for credit card payments from third party system and hitting cash account in Oracle.
    I want to implement one more payment mode for e.g. ACH, which will hit differed revenue account in Oracle.
    1. Now, as the current lockbox is hitting cash, I didn't left with any other option but I ended up setting up new lockbox with deffered revenue account attached to it. Here correct me if I am wrong with my understanding. Can one lockbox hit different GL account for different payment mode like Cash account for Credit Card and Differed Revenue account for ACH?
    2. With my assumption from point 1 that I have to create new one for different GL account, I created new lockbox and added lockbox number in transmission format, control file and in data file. After that launched lockbox program for each lockbox number with understanding that each lockbox program will pick up its own payment records based on lockbox nubmer in datafile and process it. But what happened is that first lockbox program processed its own record and also another lockbox number records and finally, its processed its own way of hitting cash account. So again payments hit cash accounts, where my expectation was that each lockbox will pick up its own lockbox number record and hit it to respective GL account i.e. cash and deffered revenue.
    Why one lockbox processed another lockbox number records also from same file?
    How to achieve this? I dont want to make two seperate data file for each lockbox number, but want to process from one single data file.
    Please update me ASAP as I need to freeze the requirement at the earliest.

    I suggest you to create a Dummy Materials. Lets say,
    material number: 1001
    enter material description as Domestic
    material number: 1002
    enter material description as Imports
    and in OBYC for GBB
    make the following settings:
    val grp      gen mod    val cla      gl a/c dr     gl a/c cr
    0001     VBR     4000     74180040     74180040
    0001     VBR     4001     78020091     78020091
    so that when u create PO u can get default GL (consumption GL )  for the material (u can use the same for material group also) and u can maintain WRX acc determination as follows ..
    val grp   val cla    gl a/c dr   gl a/c cr
    0001      4000     123456     123456
    0001      4001     456789     456789
    Thus u need to create 2 different valuation class for these material group specific and in PO while entering the text u can add the text which is displayed along with material description
    hope this helps

  • Tcode for Assign CoCode to a Workflow Variant for Parking Document

    HI, what is is the Tcode and path for Assign CoCode to a Workflow Variant for Parking Document.
    regards
    JK

    HI Aravindh Ji,
    Thanks for ur reply.. my company currency code is SGD... iam trying to assigning sap standard workflow variant 0001 to my company code its showing error message ur COMPANY CODE CURRENCY IS NOT SAME AS WORKFLOW CURRENCY. In our group remaining company codes using same work flow...their currency codes also SGD.. cu plz advice me to solve this problem.
    regards
    JK

  • Could there be independent VI paths for different versions of LabVIEW?

    Hello,
    When jumping between different versions of LabVIEW (6.1, 7.1, 8.5) it is annoying that the current path for one becomes the current path for the other. 
    If I am working with LV 7.1 in a folder dedicated to 7.1 VI's, and then open LV 8.5, I don't want 8.5 to go to that 7.1 folder by default.  Alternately. if I was working in LV 8.5, closed it out, and then I click on a 7.1 VI, I don't want it to open in LV 8.5. 
    I've tried changing the path options in each version of LabVIEW, but that doesn't seem to help.  Is there any way of isolating these folder paths from one another?  One of our newer LV guys accidently opened some 7.1 code in 8.5.1 and then saved it.  Luckily, I had archived code to return to, but it could have been a disaster.
    Thanks for any ideas,
    McSynth

    You're actually asking two different questions.
    The first question has to do with which version of LabVIEW gets launched when you double-click a file. This is an operating system thing. The one that gets launched is the last one that got used. (Your first question will be: can this be changed? Answer: Change the operating system. Or, play around with the registry each time you quit out LabVIEW.)
    The second question has to do with search paths. These are independent. However, a VI will contain information about its subVIs in terms of where to find them. This is not a function of LabVIEW, as it is a function of the VI. Thus, it will make no difference which version of LabVIEW you use to open the VI. You can, if you wish, modify the search paths that LabVIEW uses to find VIs for each version of LabVIEW from the Tools->Options menu. However, this will not eliminate the problem, and your best bet is to keep those backups frequent.

  • 2 CF servers,but different remote object path for flash

    I have 2 CF servers,but different remote object path for flex in each server.
    Eg for one flex program in my dev server I define the remote object as follows
    <mx:RemoteObject id="myService" destination="ColdFusion" source="cfide.flex.path_to_file" showBusyCursor="true">
    But in my live sevrver I have to do this.
    <mx:RemoteObject id="myService" destination="ColdFusion" source="path_to_file" showBusyCursor="true">
    How can I make both the same?

    Thanks mate,
    I tried    <use-mappings>true</use-mappings> and restarted the server but its still not working
    I think this is the spoiler:
    ColdFusion mappings apply only to pages processed by the ColdFusion Server with the cfinclude and cfmodule tags. If you save CFML pages outside of the Web root (or whatever directory is mapped to "/"), you must add a mapping to the location of those files on your server.
    from
    http://www.adobe.com/livedocs/coldfusion/5.0/Installing_and_Configuring_ColdFusion_Server/ basiconfig9.htm
    so that ruins it for flex I guess?

  • Passing different (multi-) values for parameters to drill-through report, based on clicked subtotal in main report

    In Report Builder 3.0, I have made a main report in which the user can filter the underlying dataset using three parameters (all multi-value). The report shows totals grouped by these three parameters, as well as a grand total. What I want is to click
    on a total, which then opens the drill-through report for the corresponding records. I have achieved this for the grand total; the action in the corresponding text box passes all selected values of the parameters to the drill-through report.
    What I cannot figure out is how to make this work right when clicking on a subtotal. When I use the same expression as for the grand total, the same values for the parameters are passed, instead of the subset that apply to the corresponding text box in the
    main report. I expected this to work, because Report Builder /does/ correctly calculate the SUMs for the different levels, even though the expressions are the same.
    My question is: how do I pass different drill-through (multi-) values for parameters, corresponding to the respective subtotals in the main report?
    (FYI: I am using Microsoft SQL Server 2008 R2 and Report Builder 3.0 .)

    Hello Katherine,
    Thanks once more for your quick reply.
    I was aware of the textbox action "Go to report", and how to pass parameters in general. My question concerned how to determine the scope of the passed multi-value parameters (to the values that apply to the respective group/subtotal). The article you linked
    to is informative, but not a solution to my problem.
    A colleague of mine came up with a pragmatic solution: instead of trying to determine the scope of the parameter values, now I "look to the left in the results table". The two screenshots below should illustrate this. (Screenshots are in Dutch. Specific information
    is pixelated.)
    Unfortunately, I am not able to post images. Once my account is verified, I will edit them in. For now, I hope the text speaks for itself enough.
    [Screenshot: Drill-through parameters - 01: Report Builder tablix with subtotals]
    [Screenshot: Drill-through parameters - 02: Textbox properties (selected in screenshot 01) - Action - Go to report]
    The first screenshot shows the tablix in the Report Builder. The second screenshot shows the properties of the textbox selected in the first.
    Notice that I do not pass parameters for the first two columns, but the actual values. I only pass the parameter (containing /all/ user-selected values) for the third column. In the textbox below the selected one, I pass the actual values for the first column,
    and parameters for the last two. In the textbox above the selected one, I pass the actual values for all three columns.
    The only (cosmetic) flaw this approach has is that in the drill-through report, the list of selected parameters might show values that do not occur in the (corresponding part of the) results, and only for those parameters for which the main report passes (all
    user-selected) parameter values, and not the actual values in the results. The results are correct, though.
    If there is a way to directly determine the scope of multi-value parameters for passing to a drill-through report, I would still like know. But for now, this seems to work.

  • Physical Path for Essbase Studio Cubes

    Hi All,
    I have one doubt regarding Cubes developed in Essbase Studio.I want to know the extact phyical existance path for Essbase Studio.
    Currently we have an space constraint for Essbase Studio in Server.So,Is there any possibility to change the cube path in Essbase Studio where we have sufficient space.
    Can some one provide assistance for this issue
    Thanks,
    SatyaB

    Hi All,
    Currently Iam facing with Cube space allocation.
    Essbase Applications is installed in D: .Currently D: has only 2GB Disk Space only. So, They want to point out the applications in E: drive which contains sufficient space.
    Can someone suggest me where I have to make changes in settings to build and load the cube in E: instead of D: drive.
    For your reference
    1.     Building and Loading of cube is happening through Essbase Studio.
    2.     EPM Version : 11.1.2 (Platform : Windows)
    Should I need to make changes in EAS Console edit properties. Please Advise. Thanks in Advance.
    Thanks,
    SatyaB

Maybe you are looking for

  • How can I make my Kerio WebMail memorize email addresses used previously?

    How can I make my Kerio WebMail memorize email addresses used in the past?

  • Most robust? MB or MB Pro?

    Hi, My 15 month old Macbook is needing repair again, and I'm wondering if I'm just wearing it out, and should really get a MB Pro. I don't do work that is processor intensive, but my MB is used as my desktop machine with external keyboard, mouse and

  • PC Suite & Nokia E61

    I have two recurring issues with my Nokia E61 Issue 1: I cannot get my PC to sync with my E61, although it seems that I can intermittently get my E61 to sync with my PC (by using synchronise on the phone and not the PC) I am operating all the up to d

  • Smart object suddenly NOTHING happens

    SUDDENLY nothing happens with smart object.  The history adds a state, "edit contents", but ACR window never opens and now I'm screwed cuz this document has 13 SO's waiting for work. This has happened plenty in the past. PS CC  ACR 8.1... OSX.8.3

  • 1 iTunes, 2 ipods, 2 different music tastes

    My daughter and I have very different music tastes but it appears that we can only use 1 iTunes and therefore 1 Library file. How do we manage the library file for 2 music tastes, other than to uncheck the songs we don't want on our ipods each time?