Can we use Aliases instead of member name in Calc Manager

We migrated business rules to Calc Manager. After migration Calc Managers are not getting validated (stating the member is missing in the database). Later found out that in the script it has alias name instead of member name which was causing this error.
example
Member name = C001
Alias = Texas
in the script it is mentioned Texas = 5; (this statement throws an error while validating, stating Texas is not present in the outline, even though Texas is present in the Alias table as an alias for C001).
Once I modify the script to C001 = 5; it gets validated without any issue.
Does this mean in Calc Manager we cannot use Aliases unlike business rules and Calc Scripts?
Please advice.

The 'Defects Fixed' section of the release notes for 11.1.2 includes...
"Calculation scripts validate inconsistently in Essbase and Calculation Manager (8800397)."
...which is pretty broad!
Can you run the rules OK? If so, I'd just ignore the Calculation Manager validation message.

Similar Messages

  • Show member alias in a business rule RTP instead of member names

    Hello,
    Is there a way that by default in an RTP the user gets to see Aliases instead of member names? This is not very user friendly.
    Regards,

    I think in the earlier version that was a preference setting which allows alias in member selection. (not in 11.1.2.2, i checked that)
    Regards
    Celvin
    http://www.orahyplabs.com

  • HT2534 can you use paypal instead of credit card for iTunes

    just got an Ipad & am trying to download apps but can't as I need to give credit card details.  Can you use paypal instead of credit card?

    Sad but true, I've tried to pay for iTunes Match with my credit and couldn't because it's a subscription service, regardless the credit amount I have. The system ask me to pay with my credit card too.
    How are Family Sharing purchases billed?
    When you initiate a new purchase, it will be billed directly to the family organizer's account, unless you have gift or store credit. First, your store credit will be used to pay the partial or total bill. The remainder will bill to the family organizer. iTunes Store credit on your account isn't shared with other family members. So if the family organizer has a $50 credit on their account and another family member initiates a purchase, it won't deduct from the organizer's iTunes Store credit, but will bill the organizer's credit or debit card.
    How iTunes Store purchases are billed

  • To test how can we use the opt  'logical file name' to name the file based

    Hi Sir/Madam,
               to test how can we use the opt  'logical file name' to name the file based on the selection made in the dtp run for extracting data as flat file.

    Hi Vishali,
    In the DTP select the file location as application server and give the logical file path. The actual file and logical path can be created using transaction "FILE" and "AL11".
    Rest of the process is same as that of extraction from local file.
    Regards,
    Durgesh.

  • I find it annoying that you can't use aliases in where statements

    I find it annoying that you can't use aliases in where
    statements
    for example:
    SELECT TOP 1
    CAST(amount
    / ( CASE WHEN ISNULL(rate, 0) <> 0 THEN rate
    ELSE 1
    END ) AS NUMERIC(10, 2)) AS num
    FROM table
    WHERE num > 1
    ORDER BY num
    Are there any workarounds?

    > I find it annoying that you can't use aliases in where
    statements
    This isn't really (or... "at all") a CF question. You're
    better off asking
    this sort of thing on a SQL Server forum.
    You could use a derived table, I guess:
    select top 1 num
    from (
    SELECT
    CAST(amount
    / ( CASE WHEN ISNULL(rate, 0) <> 0 THEN
    rate
    ELSE 1
    END ) AS NUMERIC(10, 2)) AS num
    FROM table
    where num > 1
    order by num
    (that might not preserve the intent of you SQL (sorry: it's
    late, I'm
    tired), but you get the idea.
    Adam

  • HT204053 can i use paypal instead of credit card

    Can i use paypal instead of credit card

    http://www.apple.com/legal/itunes/appstore/qa/terms.html#SALE
    PAYMENTS, TAXES, AND REFUND POLICY
       The Mac App Store, App Store and iBookstore services (the "Stores") accept credit cards issued by banks in Qatar or Content Codes as forms of payment.
    To use the iTunes Store in a country you need a credit card (or other card type if acceptable in a country) issued in that country, billed to an address in that country, and also be physically present in that country when using the store.

  • HT4848 can i use Dvd  instead of USB , as a recovery disk

    can i use DVd instead of Usb as a recover disk

    How , can i  ???
    Recovery Disk Assistent is not recognizing the DVD, its only recognizing DVDs

  • HT5132 can i use iCloud instead of MobileMe?

    can i use iCloud instead of MobileMe?

    iCloud can be used to sync your documents between iCloud-ready applications to your mobile devices, but you cannot use it to host web galleries. For this you will need to find a different host, for example the ftp-site of your internet provider. Export your web galleries to your hard drive and upload them to your new web host using ftp (I use Cyber Duck for this).
    See Roger Wilmut's page (the last line on the page addresses links to photo galleries):
    Migrating from Mobile Me:
    http://www.wilmut.webspace.virginmedia.com/notes/migrate/frommobileme3.html
    And if you need a replacement for your iDisk, see this user tip by Winston Churchill:
    Winston Churchill: Using iCloud as an iDisk:
    https://discussions.apple.com/docs/DOC-2711
    If you create your web pages with iWeb, you can still use the iWeb application, but you need to patch it a little, because iWeb references icons (arrows) on MobileMe, that may not longer exist: See this guide by Old Toad and Roddy, on how to do this:
    Modify the iWeb Application: http://oldtoadstutorials.net/No.26.html
    Regards
    Léonie

  • Can I use SQLJ instead of JSP ?

    Hi:
    Can I use SQLJ instead of JSP to work with Oracle Mobile / Wireless ?
    Thanks

    You can use any language that can output XML - There is a Tag Glossary for the Oracle9iAS Wireless XML on http://studio.oraclemobile.com .
    Regards,
    Kalle
    [email protected]
    Hi:
    Can I use SQLJ instead of JSP to work with Oracle Mobile / Wireless ?
    Thanks

  • Can I use speakers instead of headphones with my iPod shuffle?

    How can I use speakers instead of headphones or earbuds with my iPod Shuffle?

    Yes, as long as they are self-powered (don't need an amplifier) and connect using the same type of standard "mini-stereo" connector that is on headphones. 

  • Can we use EDID4 instead of EDIDD for generating IDOC

    Hi Abap-Experts,
                           My question is can we use EDID4 instead of EDIDD for generating IDOC. I have declared internal table for idoc data using EDIDD...but can i use instead EDID4 for the same as well as in FM('MASTER_IDOC_DISTRIBUTE'). I have tried to use but it was giving me runtime error
       DATA : ls_edidd  TYPE edidd .
      DATA : it_edidd TYPE TABLE OF edidd .
    LOOP AT it_cust INTO wa_cust .
        lv_segnum = lv_segnum + 1 .
        ls_edidd-segnum = lv_segnum .
        ls_edidd-segnam = 'Z1ZZ_CUST' .
        ls_edidd-hlevel = '1' .
        ls_edidd-sdata = wa_cust .
    CALL FUNCTION 'MASTER_IDOC_DISTRIBUTE'
        EXPORTING
          master_idoc_control                  = ls_edidc
      OBJ_TYPE                             = ''
      CHNUM                                = ''
        TABLES
          communication_idoc_control           = it_edidc
          master_idoc_data                     = it_edidd
    Thanks in advance,

    Hi Alexander,
             I am not getting any error when i try EDIDD for generating IDOC..but if i try EDID4........it does give me error message.
               so please tell me what is the solution for this.

  • Can we use BLOB instead of LONG RAW in JMSStore

    (Oracle 9i, Weblogic 8.1.2)
              We are putting in place a Dataguard environment (or standby database). In such environment, prod data is copied to another database in 'pseudo' real time. Unfortunately some 'old' datatypes are not supported by Dataguard. In JMS tables %JMSSTORE, the field RECORD is defined as LONG RAW and LONG RAW is one of the unsupported datatypes.
              Can we alter those tables in order to use BLOB instead of LONG RAW ?
              Regards,
              Bao Nguyen
              

    Hi Bao,
              Answers in-line:
              Bao Nguyen wrote:
              > (Oracle 9i, Weblogic 8.1.2)
              >
              > We are putting in place a Dataguard environment (or standby database). In such environment, prod data is copied to another database in 'pseudo' real time. Unfortunately some 'old' datatypes are not supported by Dataguard. In JMS tables %JMSSTORE, the field RECORD is defined as LONG RAW and LONG RAW is one of the unsupported datatypes.
              >
              > Can we alter those tables in order to use BLOB instead of LONG RAW ?
              Not supported in 8.1. A supported Oracle BLOB capability will be
              available in the next release. I can think of two
              possible work-arounds:
              (1) The following might work, but is not currently supported by
              BEA: Manually create the table with a BLOB type and use
              an Oracle OCI or BEA type IV driver. Definitely do NOT use
              an Oracle thin driver, as data corruption may result.
              (2) I recall that another customer had a replication product
              they were able to get working with LONG RAW by modifying
              the table definition so that the table's handle index was a primary key.
              I do not remember the name of the product.
              (The latter modification is supported for certain releases
              now - but I think this usage must be confirmed with customer support.)
              Tom
              >
              > Regards,
              >
              > Bao Nguyen
              >
              

  • Run Time Prompt - showing alias instead of member name

    We have a Capex Planning application that uses right-click menus to launch business rules with Run Time Prompts. We are using Planning 11.1.2.1. Even we the alias table set, when opening the RTP it pulls in the member name rather than alias.
    There is an Oracle KB article (Show the Alias name in the Business Rule Run-Time Prompt [ID 857832.1]) that has this solution:
    Take the following steps to add the alias name to the run-time prompt along with the member name.
    1. Log in to planning web.
    2. Navigated to File >> Preferences >> Application settings.
    3. Select Show Alias in Member Selection and change the option from no to yes.
    4. Save it.
    But in 11.1.2.1, there is not option for "Show Alias in Member Selection" under Planning Preferences.
    We have an SR open, but figured maybe someone else has run into this issue as well.
    Does anyone know how to get the aliases to show on a Run Time Prompt rule in 11.1.2.1?
    Thanks for your help!!

    Deleting and rebuilding the dimension in the outline will enable you to build the members in the order you may desire if the file is in a given order.

  • How can I pass value based on member names in a script in 11.1.1.3

    I want to pass a value to only those members of CostCenter dimension which has "5" in their name.
    Eg.
    C12345100
    C34565210
    C34217890
    So in the above case the value should exist only in the above 2 cost centers.
    Can someone guide me in the right direction to accomplish this ?
    Thanks in advance

    Just now I got more clearance on the requirement.
    I want to create blocks only on the selected Cost Centers & Business Unit combination.
    I have the following members in both these dimensions
    Cost Centers
    C12345980
    C12345981
    C12345982
    Business Unit
    BU5980
    BU5981
    BU5555
    Now I want to pass a value to one of the dense dimension members from Measure dimension (member name = CrtBlk) to only those CCs & BUs where the last 4 digit matches.
    So in this case it will be for only the first 2 cost centers.
    Thanks in advance.

  • Sender file adapter - Can I use *.xml for the file name

    Hi Gurus,
    I have some interfaces where I need to pick the file from a directory. The name of the file will have Data<i>time stamp</i> as the naming convention. Can I use *.xml to pick up my files from this directory?
    The help.sap.com documentation says that we can use this naming convention.
    <b>
    &#9679;      File Name
    Specify the name of the file that you want to process. The name can contain placeholders (*, ? (placeholders for exactly one character)) so that you can select a list of files for processing.
    </b>
    I tried using *.xml for my file name in the communication channel, XI is not picking up this file.
    Please let me know if you have the solution.
    Thanks
    Kalyan

    Murthy,
    Thanks for the reply.
    I am using GuildFTP tool as my FTP server. In this tool, all the permissions were given for the file to pick up.
    The status of the file is good.
    Where in the file adapter configuration I have to select 'Read-only'?
    The file adapter is working perfect with the exact name of the file.
    Thanks
    Kalyan

Maybe you are looking for