Shared Member: Global Property Change

Hi,
I am working in DRM( Web Version) 11.1.2.1. I have some issue with Shared Member Property change.
Is there any way to restrict/change the Shared member Global property value without changing its base member value? Is there any system preference for this?
If anybody know any other way to restrict it than please tell me, its urgent.
Thanks in advance
Rotesh Gupta

I don't really understand your question, you are talking about BSO loading dimensions then extract then ASO, what actually is your question?
If it is there a property for shared members then no there is not, here are the list of valid member property codes - http://download.oracle.com/docs/cd/E17236_01/epm.1112/esb_dbag/dotrules.html#dotrules_2
If you want to understand how to build shared members then have a read of - http://download.oracle.com/docs/cd/E17236_01/epm.1112/esb_dbag/dotdimb.html#dotdimb1061244
Cheers
John
http://john-goodwin.blogspot.com/

Similar Messages

  • Change image property changes member name

    Hello. I know that surely this is answered already. But can
    you tell me why if I change the image or picture property of a cast
    member it also changes the member's name? The thing is that I take
    the images from a valentina database and I put the on a list. Then
    I assign the image to a "joker" cast member. But as soon as I
    cahnge the cast member image it also changes the name of it and I
    can't refer to it anymore
    Thanks a lot

    I get sdome images to a lingo list with getImage valentina
    function. then I do
    member("joker").image = imagelist[1]
    and the name of the member changes to the filename of the
    image in imagelist[1].
    If I do the same with picture property there is no problem
    and the image pereserves its name. So I guess I will use the
    picture property ans getPicture function
    johnAq's approach also works. I also agree that there is a
    mistake to my code(lingo specific) , maybe references or something
    but I don't know what is exactly.
    thanks a lot

  • Consolidation Property on Shared Member

    Can you set the consolidation property to a shared member different than its stored member? If I edit the outline I seem to have no problem setting a "-" on a shared member where its "+" on the stored member. When I try to do this via a load rule I am unable to do this.

    Yes, this is possible. It sounds like your issue has to do with trying to do the build in one load rule.
    If you want the same "member" to have different aggregation properties, it is all about location, location, location. You need to add your properties at the same time you are building the hierarchy so it knows that the property in the file belongs to the member under a given parent.
    My usual methodology is to...
    1) build the primary hierarchy in one build, with the properties for the stored lev0 in that load rule.
    2) Secondary build for the shared rollups. Set the properties for the shared member in this load rule.
    If you just mention a lev0 member in a build and say it is a has a "+" property, Essbase won't know which one you are referring to, but it definitely won't result in the two members with different properties.
    Good Luck!!
    Kevin

  • EPMA - Changing a 'Shared' member to 'Primary'

    Hi,
    We need to modify a dimension. We have a alternate rollup where all the members are 'Shared'. However that rollup in the desired dimension becomes the 'primary' dimension and the current primary dimension needs to be removed. If we just change the current shared members to 'primary' and delete the new 'shared' members, the data is lost on restructure. We also have removed all ALIASES too.
    When we goto deploy we get an error that the member was rejected and Shared Member LOC_1138 can not be added or updated.
    Is it possible to change/modify the primary and shared within same dimension and deploy and not lose data?

    To receive the discount you the account has to be in the employee's name and SSN. You can call 611 or visit a corporate store and ask for an Assumption Of Liabilty. The current account owner and the potential new account owner should be together. Keep in mind that there will be a credit check for the new account owner and you may have to change to one of the new More Everything plans.

  • "Shared Member" Property

    I was told today that when building dimensions for a BSO cube, is "Shared Member" is not a valid property to specify in an extract ? To the best of my recollection, "Shared Member" is not a valid property in an ASO cube.

    I don't really understand your question, you are talking about BSO loading dimensions then extract then ASO, what actually is your question?
    If it is there a property for shared members then no there is not, here are the list of valid member property codes - http://download.oracle.com/docs/cd/E17236_01/epm.1112/esb_dbag/dotrules.html#dotrules_2
    If you want to understand how to build shared members then have a read of - http://download.oracle.com/docs/cd/E17236_01/epm.1112/esb_dbag/dotdimb.html#dotdimb1061244
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Property code for Shared Member

    Hi,
    Could you please let me know what is the property code for Shared Member. I am trying to create a text file and trying to create some members as shared. Something like for Dynamic Calc we have "X" so I need similar kind of code for Shared Member.
    Thanks

    I am not sure some thing like that exists.
    It is not required for building shared heirarchy.
    You can use dupgen or duplev fileld properties in the dim build rules. By the way you can tell Essbase to tag them as shared.
    Parent/Child reference build method automatically shares the second time encountered member under differant parent.

  • Changing  Member Storage property

    Hi,
    Is there a command in ESSCMD/MAXL to change the storage property of a member from Store to Dynamic Calc or vice-versa.
    Thanks in advance

    Hey Russ,
    You can't do it directly with MaxL, but you can set up a Rules file that reads in a text file with the member storage property, and that can be initiated via MaxL.
    Search the DBA guide for "Creating Rules Files", this will give you a table of the character to use to set the member storage property, as well as other useful information.
    Robert

  • Shared Members on interface changes of Entity or account hierarchy

    Hello,
    Is there any scripted way to remove 'Shared Members' from the Account and Entity hierarchy, or if not, is there any means of finding them on mass, as we have set up a database interface to maintain account and entities, but the problem is after accounts or entity change parent they leave a 'Shared Member' on the original parent, which is not desired functionality as it throws totals out on forms / reports.
    thanks for your input, no blogs please as our security prohibits me seeing them.
    Robert.

    Thanks John, can I ask you a follow on also...
    If a member had never share as its property and you used the hierarchy interface to assign it to a new would would it; -
    a. Prevent update of its parent hierarchy via the interface
    b. Move it to whatever new parent you deemed and remove it from its original
    thanks for your input,
    Robert.

  • Can't add Shared Member using API

    I would like to create a lot of shared members.Using API I do it as following according to documentation: ESS_MBRINFO_T MbrInfo; memset(&MbrInfo, '\0', sizeof(MbrInfo)); strcpy(MbrInfo.szMember, (char*)mbrName); MbrInfo.usShare = ESS_SHARE_SHARE; sts = EssOtlAddMember(getOutline(), &MbrInfo, ESS_NULL, hMbr, &hNewMember); When I try to add shared member, then sts = 1060051.So I have to change names and after correct them manually.Using HAB API I can't add shared member too.Regards,Georgy

    Hi and Welcome to the Forums!
    To really help, you should come and create an account on these forums...there are many unanswered questions from your initial inquiry...come here, create an account, and open a thread so that it all can be resolved:
    http://supportforums.blackberry.com/rim/
    Cheers!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Issue with User Variable Due Shared Member Security Access

       Hi All,
    One of my client is using User variable in data form to define POV.
    Now if user has access to 2 member in the Dimension, he should able to see 2 member when he try to assign the value to this "user variable"
    but he can see some of the parent member name ,this parent name has only one child which is a shared member of the 2 base member for which he has access.
    For Example:
    Entity Dimension:
    E1 (user has access)
    E2
    E3(user has access)
    E4
    Alt_Entity
    Alt_Entity1E1 (sharedmember)
    Alt_Entity2E2 (sharedmember)
    Alt_Entity3E3 (sharedmember)
    Alt_Entity4E4 (sharedmember)
    User is able to see below members, when he try to assign value
    E1 (user has access)
    E3(user has access)
    Alt_Entity1
    Alt_Entity3
    Now if I add another member under this parent, than user are unable to see this parent member.
    For Example:
    Entity Dimension:
    E1 (user has access)
    E2
    E3(user has access)
    E4
    Alt_Entity
    Alt_Entity1
    E1 (sharedmember)
    E2 (sharedmember)
    Alt_Entity2E2 (sharedmember)
    Alt_Entity3
    E3 (sharedmember)
    E2 (sharedmember)
    Alt_Entity4E4 (sharedmember)
    User is able to see below members, when he try to assign value
    E1 (user has access)
    E3(user has access)
    Any idea?

    Sorry, but actually its the parent that needs tagging with "Never Share", not the level 0 member, so Alt_Entity1 and Alt_Entity2 etc, see Essbase DBA guide
    understanding Implied
    Sharing
    The shared member property defines a shared data relationship explicitly. Some
    members are shared even if you do not explicitly set them as shared. These
    members are said to be implied shared members.
    If you do not want a member to be shared implicitly, mark the parent as Never Share so
    that the data is duplicated, and is not shared. See Understanding Shared Members for an
    explanation of how shared members work.
    So in the example above
    Entity Dimension:
    E1 (user has access)
    E2
    E3(user has access)
    E4
    Alt_Entity
    Alt_Entity1 - Set to "Never Share"E1 (sharedmember)
    Alt_Entity2E2 (sharedmember)
    Alt_Entity3 - Set to "Never Share"E3 (sharedmember)
    Alt_Entity4E4 (sharedmember
    Thanks
    Anthony

  • Still need a password to update apps purchased by another Family Sharing member!

    On iOS 8.1, I can enter App Store app, tap on the Purchased tab at the bottom, and then tap the upper-left corner to choose one of the members in the same Family Sharing members, then tap on the "download cloud" icon next to any apps purchased by that member. Doing so, I don't need to enter the password that Family Sharing member's Apple ID.  But, whenever apps, those purchased by other Family Sharing members, have an update, I would need to change the Apple ID to that Family Sharing member and enter the password, in order to enable the app update. Or, those apps will stay on the Updates page of the App Store app, waiting to be updated, forever. 
    How can the app update of apps purchased by other Family Sharing members be set automatic?

    No. To update apps you have to sign intot he account that purchased them.
    I have multiple Apple IDs. Is there a way for me to merge them into a single Apple ID?
    Apple IDs cannot be merged. You should use your preferred Apple ID from now on, but you can still access your purchased items such as music, movies, or software using your other Apple IDs.
    Just purchase the apps with your account

  • EAS7.1 aso dimension property change using rule file.

    I have a outline having 1 dimension "Terms" as a account type and data storage as "data store".Now i am trying to load members using rule file.
    Outline: ABC (Active Alias Table: Default)
    Scenario Stored <2>
    Currency Stored
    Terms Accounts
    Now i have ceated a rule file using source file like
    "Terms","T1","Terms Hierarchies","~O","",""
    "T1","TOT"," ","~O","",""
    "T1","OTH","","~O","",""
    "OTH","Loaded Days","","~","",""
    "OTH","Loaded FX","","~","","Loaded.FX",""
    "TOT","R99"," ","~ "," "," "
    "R99","R90","","+ "," "," "
    "R90","R901","","+ "," "," "
    i am using parent child relationship and i hav cheched the option s
    like "allow property changes" and allow formula changes....in dimension build settings..the rule shows valid ..but during dimension member load it is giving me the folowing error
    "\\Outline verification errors:
    \\Member Terms has no value source. Aggregate storage outlines require non level-0 members in accounts dimension to be either non-stored members or have internal/external formula.
    \\Member [Terms] has an unspecified error.
    but if i am removing "~O" property with "O" only in data source file then the dimension member load is suuccessful...
    wat i feel is anyhow the "dimension property change is not being set"...
    can any one please tellme wat option i m missig to check in rule file..??
    your opinion and suggestion will be highly appreciated.....

    The documentation explains the difference with examples, now I was going to post the link but I might as well post the info from the link.
    Joining Fields
    You can join multiple fields into one field. The new field is given the name of the first field in the join. For example, if a data source has separate fields for product number (100) and product family (-10), you must join the fields (100-10) before loading them into the Sample.Basic database.
    Creating a Field by Joining Fields
    You can join fields by placing the joined fields into a new field. This procedure leaves the original fields intact. Creating a field is useful if you need to concatenate fields of the data source to create a member.
    For example, if a data source has separate fields for product number (100) and product family (-10), you must join the fields (100-10) before you load them into the Sample.Basic database. If, however, you want to preserve the two existing fields in the data source, you can create a field (100-10) using a join. The data source now includes all three fields (100, -10, and 100-10).
    For other rule options read - http://download.oracle.com/docs/cd/E17236_01/epm.1112/esb_dbag/ddlfield.html
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • (ESSBASE) How to move shared member into hyerachy

    Hi, i've this question: How can I move a shared member into the Essbase Outline hyerarchy when I load metadata?
    I've tried using the "Allow Move" option into "Dimension Builiding" session of the rule, but the system gives me an error...

    I have a dimension called "clienti" structured in this way:
    Clienti
    - GER1
    -XXXXX 1
    -A
    -XXXXXX 2
    -GER2
    - YYYY1
    - YYYY2
    - A (shared)
    -GER3
    - ZZZZZ1
    - ZZZZZ2
    - A (shared)
    Now, using a rule that reads form SQL source, I wanto to transofrm my hyerarchy in this way (the member "A" changes his parent in all hyerarchies [Ger1, 2 and 3]):
    Clienti
    - GER1
    -XXXXX 1
    -XXXXXX 2
    -A
    -GER2
    - YYYY1
    - A (shared)
    - YYYY2
    -GER3
    - ZZZZZ1
    - A (shared)
    - ZZZZZ2
    The way I follow it's:
    1) load ONLY GER1 members filtering by SQL statement (Select * form "TABLE" where "FILED_NAME" ="GER1") with "ALLOW MOVE" option checked into rule properties -> IT'S OK, the member "A" changes its partent correctly
    2) load GER2 in the same way, but the system gives me this error: Dimension build failed. Error code[1060053]. Check the server log and the dimension duild log for more information. Unexpected essbase error1007083
    The log dont give me any info and the dimension build log is not created
    The same when I try to load GER3 and if I try to load ALL (Ger1 + 2 +3)
    My doubt is that is not possible to move shared members..
    Thaks!!

  • Is there a way to do a global font change in iWeb '09?

    Hi,
    I inherited a web site, created in iWeb '09. I've got the site files on my Mac ... when I start iWeb,
    and select a page to edit, it complains:
    The following errors occurred while trying to open this page:
    Missing Font TrajanPro-Regular
    Missing Font TrajanPro-Bold
    Missing Font HelveticaNeue-Roman
    Many (most or all) pages in the web site need these three fonts.
    Thru googling, I know that those three fonts are proprietary fonts that I could purchase.
    However, it seems silly to buy and install a font when the web server and end-user's
    browser won't have it (and will therefore get substituted at their end).
    Therefore, I think that my best choice is to change all uses of those fonts in the web site to
    be uses of some "standard web fonts".
    So, how do I do a global font change or substitution in iWeb '09? It seems like an awfully
    obvious thing to want to do. (Finding each instance of use and manually selecting the text
    and doing a font change is simply not feasible.)
    (E.g.: Change "HelveticeNeue-Roman" to "Helvetica Regular")
    thanks,
    Stan
    [email protected]

    how do I do a global font change or substitution in iWeb '09?
    There is no way to do what you want. Send a feature request to Apple via http://www.apple.com/feedback.iweb.html.
    OT

  • Is it possible to do a GLOBAL color change for both text and graphics in ACrobat XI?

    I used to do this using the Pitstop Pro plugin but now Pitstop is almost $900 and this is the only thing that I would use it for, not worth the investment
    I can change text color by selecting individual text items, but I want to change all of the red text into white text
    I also need to change all of the red graphics into white graphics and I can't figure out how to do that either
    I have a trial version of XI on a Mac and will buy it if it can do what I am trying to do, i.e. global color changes to both text and graphics
    thanks!!

    I have version 6, but it is way out of date, doesn't work on my current system, I downloaded a trial version of the new one, version 12 I think, now I have to decide if I can afford to buy it, it is not cheap!
    oops, sorry, I didn't read your entire message, aargh!
    I'll check with them if I can upgrade from this early version, thanks for the suggestion!
    (edited because I didn't read properly!)

Maybe you are looking for