Using HAL, how do you assign an attribute member to a regular dimension

Hello,
I created a HAL job to map members of an attribute dimension to a sparse dimension, but am unable to make it work. I get no error msg. I followed the example in HAL's help. The database is an Essbase database.
I'm on Essbase 7.
I got this to work in a Planning database, but am unable in an Essbase database.
If anyone has a sample example, pls forward. Many thanks. CG

Yes you can.
Simply create the dimensions as you seem to have indicated you have
Then associate each of the attribute dimensions to the same dimension (as many as you like).
Once they are associated you can start adding the attributes to the members. You can't do this until after you have associated the attribute dimension to the dimension.
A quick way of checking is to go into EAS and you will clearly see if you associated the dimension correctly as each will appear next to the name of the dimension. if not go back and try associating again.
Also you need to have loaded the attributes ot the attribute dimension before you will see them to connect to the members. You can load the attributes using a batch process if you have a lot to load.

Similar Messages

  • How do you assign program changes to external controllers in mainstage 1

    i would like to use 6 specific buttons on my controller to toggle between patches
    i know how to scroll through patches using my controller by assinging the next and previous patch functions to 2 buttons on my controller
    however what i want is to just be able to push button 1 and go to my gladiator AU synth, then push button 3 to go to my sylenth AU synth. basically i want to be able to change in real time on the spot, spontaniously without premeditation or having scroll between multiple patches to get to the one i want to use.
    in the previous posts it says
    on the patch list select the instument
    in the patch inspector go to attributes
    select program change, then assign it a number
    then assign a midi controller button to trigger that program change number
    i can do everything except the last part
    how do you assign a program change to a controller button? i cant see anywhere how to do this,
    i am using mainstage 1.0.2 thank you so much for any support you can give me

    I am not sure about that. Do you mean that all I have to do is provide the interface <cc:attribute name="value" type="lvl1.lvl2.someClass"/> and when I run the method, the returned result will be written into the expression provided in "value"?

  • HT2486 How do you assign a new contact to an account other than default account?

    I have multiple mail accounts (iCloud, exchange server, gmail) each with their own contacts. When adding a contact how do you assign it to the right account? I know you can assign a default account under settings but how can you assign it to an account other than the default?

    Apple allows you a deauthorize all option once every 12 months.
    iTunes Store: Authorize or deauthorize your Mac or PC
    Deauthorize all computers
    After you authorize two computers, you'll have the option to deauthorize all computers for your Apple ID. You can deauthorize all computers once a year.
    Just like deauthorizing a single computer, you won’t delete anything if you choose to deauthorize all computers. You just won’t be able to play content that you bought from iTunes on those computers. After you deauthorize all, you can easily authorize computers again one by one. Just follow the steps to authorize a Mac or PC.
    Here's when you should deauthorize all your computers:
    If a computer doesn't work anymore
    If you don't have one of your computers
    If you used 5 authorizations and want to authorize a new computer
    To deauthorize all your computers, follow these steps using one of your authorized computers:
    1.Click to open your account in iTunes (you may need to sign in with your Apple ID), or follow these steps:
         a. Open iTunes and click iTunes Store.
         b. Click Sign In and enter your Apple ID.
         b. Click your Apple ID and select Account.
    2. Click Deauthorize All.
    The Deauthorize All button appears only if you have more than two authorized computers.

  • How can we assign one attribute set to multiple business partners at a time ?

    How can we assign one attribute set to multiple business partners at a time ? Is it possible ? Can anyone explain me ?

    Hello,
    please refer to the following thread:
    How can we assign one Attribute Set to multiple Business Partners at a time? Is it possible?
    best regards,
    Johannes

  • How do you assign a user or group FULL access to all Exchange 2013 DAG mailbox databases?

    How do you assign a group or user FULL mailbox access rights to ALL mailboxes in the Organization or DAG mailbox databases?
    Commands I've tried with no avail:
    get-mailboxdatabase -server “exch01″ | add-adpermission -user “domain admins” -AccessRights GenericAll
    get-mailboxdatabase -identity "DAG database" | add-adpermission -user "user" -accessrights FullAccess
    Please let me know if you can help! Thanks.

    Get-Mailbox | Add-MailboxPermission -Identity UserMailbox -User "Domain\Group" -AccessRights FullAccess - worked for me! Thanks again!

  • Using numbers, how can you set percentage to show decimals?

    When using numbers, how do you set the format to allow for decimals in a quotient formula with the cell formatted for percentages?

    It would be 'View' > 'Sidebar' > 'Bookmarks'. Shortcut 'Ctrl' + 'B' on the keyboard.
    If the 'View' menu is not visible please try pressing 'Alt' + 'V'.

  • HT204370 i'm attempting to download a movie and it is stating the disk is full i am attempting to use.  How do you make space?

    i'm attempting to download a movie and it is stating the disk is full i am attempting to use.  How do you make space?

    Delete something

  • How do you assign charStyles with proper fillCollor settings

    How do you assign charStyles with proper fillCollor settings

    Have a look at these Links...
    http://cnettv.cnet.com/free-custom-ringtones-text-tones-ios-5/9742-1_53-50113469 .html
    http://cnettv.cnet.com/create-free-ringtones-itunes-10/9742-1_53-50093086.html

  • Using XSQL - how would you generate attributes

    The notion of generating XML from relational databases does not appear to distinguish between attributes of a node and children of the node.
    For example,
    Is there a way of generating an XML document as follows:
    <EMP age="50" height="5.6" weight="120">
    <LAST NAME>
    Tiger
    </LAST NAME>
    <FIRST NAME>
    Scott
    </FIRST NAME>
    </EMP>
    from a relational database ? As far as I can see, the attributes of the <EMP> tag and the children tags under <EMP> would both be modeled as columns of the EMP table.
    Can anyone suggest a way of doing this?
    Any ideas will be appreciated....
    Madhu
    null

    Our canonical form prefers elements because in Oracle any column could have a user-defined structured type. Using elements allows a uniform style that easily extended to nested content.
    You'll have to use an XSLT transformation to achieve an attribute-based result.

  • How would you assign passwords in a script for a user

    How would i assign a password in script??

    the only way to "automate" password/user additions is to use expect - to allow you to input some meaningful password - stdin doesn't work too well as you've probably seen
    Alternatively you can find the crypted value for some password and use that in a cut and paste fashion into the /etc/shadow file (as root obviously) but there are some limitations...
    i.e.
    echo "${newuserid}:x:${uid}:${gid}:${GCOS}:${homedir}:${usershell}" >> /etc/passwd
    echo "${newuserid}:${cryptedpasswd}:0:7:90::::" >> /etc/shadow
    this means that you have basically one password you're assigning to each new user, which may or may not be what you're digging after.
    If you can figure out how to crypt the password (with the appropriate salt) so it fits into the /etc/shadow crypted format, you'd have your problem solved.

  • How do you assign the user who has logged in current session ?

    Hello,
    in oracle forms , you could assigned user who has logged in to any field , e.g field_name := USER_ID;
    I need to assign the user who has logged to a field in jdeveloper 12 . How do you do that please ?
    Thanks.

    Try this: https://www.google.com/search?q=adf+get+current+user
    CM.

  • Using RMAN, how do you restore from an old backup file?

    HI,
    I use Oracle 9i on Solaris.
    I'm currently doing incremental level 0 hot backups every night using RMAN in NOCATALOG mode. The controlfile is backed up with the database. I back it up to a file (e.g. "level0_20041225.dmp"). After I back it up, it's backed up to tape using Veritas. Before doing a backup, I delete the old one first.
    I need to restore a copy of the database backup that was taken a month ago. This file is on tape. How do I go about it using RMAN? The documentation is not too clear as it talks more about Restoring the control file and the latest copy of the database.
    How do you restore an old copy of the database from a database file?
    Pls advise
    Thanks

    You can recover to the last committed transaction,
    provided you have the current controlfile, archived
    logs since the backup and the current online logs.
    Here's the procedure in a nutshell:
    a) Restore datafiles from tape.
    b) Recover database using restored files + current
    controlfiles and archived/online logs. RMAN will prompt
    you for the logs it needs for recovery.
    You can also perform this type of recovery using a
    backup controlfile. In this case you would still need
    all logs as above. After recovery, you would have to
    open the database with RESETLOGS because you are using
    a backup controlfile.
    If you don't want/need to recover up to the last
    committed transaction, you use a backup controlfile and
    perform incomplete recovery (time or change based). This
    simply means that you stop the application of redo at
    the time or SCN of your choice.
    Most of the scenarios of interest are documented in
    the following book:
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96566/toc.htm
    Hope this helps.
    Kailash.

  • PSPB - Can you assign 2 attribute dimensions to a single dimension

    I am working on a PSPB install and am curious if I can associate 2 attribute dimensions to a single dimension? More specifically, NACUBO codes will be assigned as an attribute of Project ID. But NACUBO codes are broken up into 2 parts, Project Code and Program Code. I need to report on these 2 both separately and together.
    Thanks,
    Max

    Yes, you can. You just cannot assign 2 attributes from the same attribute dimension to the same member.

  • How will you assign Run time variables in Management Cockpit

    Hello Gentlemen,
       Can Someone tell me the how will you create runtime variables in the management cockpit. Does BW Variables any where related to this. I tried creating and use them it is not displaying anything in the cockpit presentation. It is literally blank without any bars in the graph
    Thanks
    Dev

    Hi Sindhu: Are you using the Informatica Cloud Mapping Designer? Currently the Mapping Designer does not support embedding parameters within expressions, it only supports parameterizing entire expressions.
     Cheers,Josh

  • Using iMovie, how do you transfer your project so that it becomes a movie with a .mov extension?

    I have a few projects.  Some of them have ended with a .mov extension, but others have not.
    Not sure if i did anything different, but how would I get a .mov extension on a project I already created?

    No, transferring between machines does not work.  You need to install using installation files.  You can download thru the following and use your serial number to activate...
    CS5.5 - http://helpx.adobe.com/creative-suite/kb/cs5-5-product-downloads.html

Maybe you are looking for