Automation of updates of dimension properties/NEWID  using Admin_MAKEDIM

We are trying to automate the changes to the properties to the dimension members and NEWID's to existing ID's. We have a SSIS that updates the mbrdimension table correctly but when we run the Admin_MAKEDIM from datamanager it is not applying the updates to the dimension members. But if there are new members they are updating ok.
Does Admin_Makedim process/apply changes to the dimension member properties and ID's ?
Any help is greatly appreciated.
Thanks,

Hi there,
Were you able to get this to work?
The properties and new members need to exist in your temporary table.
The contents of the temporary table are then copied to the mbr table and then the dimension is processed.
Please note that the Excel member sheet is not update so you either need to manually export the dimension member sheet (there is an option to do this in the BPC Admin module) or you can create a process in SSIS to extract the contents of the Mbr table to the member sheet in the ADMINAPP folder.
Thanks
John

Similar Messages

  • Using dimension properties in LOOKUP

    Hi,
    I'm trying to use dimension properties in a LOOKUP, but when I execute the script the log tells me that COMPANY, SALESORG, PRODUCT and TRANSCURRENCY is not defined and therefore create a lookup on all members.
    THe usage of properties in LOOKUP is described in the documentation, but somehow it doesn't seem to work for me. Can anyone help me?
    *LOOKUP ACTIVITYPLAN
    *DIM FCIC:ACCOUNT= "FULLCOST"
    *DIM FCIC:PARTNER="I_NONE"
    *DIM FCIC:COMPANY=PARTNER.ENTITY
    *DIM FCIC:SALESORG=PARTNER.ENTITY
    *DIM FCIC:PRODUCT=PRODUCT.PRODREF
    *DIM FCIC:TRANSCURRENCY=PARTNER.CURRENCY
    *DIM COUNTRY = "CO_NONE"
    *DIM DATASOURCE = "INPUT"
    *DIM PROFITCENTER = "YB99"
    *DIM RPTCURRENCY = "LC"
    *ENDLOOKUP
    Regards,
    Lars
    Edited by: Lars Johansen on Nov 4, 2011 10:41 AM
    Edited by: Lars Johansen on Nov 4, 2011 10:41 AM

    Hi Gersh,
    I'm getting closer. I have now tried to use the FOR/NEXT logic on 1 property and it works. I know want to include another. In this case it seems as if the LOOKUP works fine, but the WHEN/REC/ENDWHEN is not. It doesn't recognize my LOOKUP(%LOOP_CU%%LOOP_CO%).
    Any suggestions have to solve this problem?
    *LOOKUP ACTIVITYPLAN
    *FOR %LOOP_CO% = %P_COMP%
        *FOR %LOOP_CU% = %P_CURR%
            *DIM %LOOP_CU%%LOOP_CO%:TRANSCURRENCY=%LOOP_CU%
            *DIM %LOOP_CU%%LOOP_CO%:ACCOUNT= "FULLCOST"
            *DIM %LOOP_CU%%LOOP_CO%:PARTNER="I_NONE"
            *DIM %LOOP_CU%%LOOP_CO%:COMPANY=%LOOP_CO%
            *DIM %LOOP_CU%%LOOP_CO%:SALESORG=%LOOP_CO%
            *DIM %LOOP_CU%%LOOP_CO%:PRODUCT=PRODUCT.PRODREF
        *NEXT
    *NEXT
    *ENDLOOKUP
    *WHEN ACCOUNT
       *IS "QPURC"
                   *FOR %LOOP_CU%=%P_CURR%
                       *REC(EXPRESSION=(%VALUE%*LOOKUP(%LOOP_CU%%LOOP_CO%)),ACCOUNT="529996")
                       *END
                   *NEXT
    *ENDWHEN

  • SSRS MDX Query Dimension Properties Missing

    I have been stumped on this for a few days thought I'd throw this out here. I've read every related article in the forum regarding MDX Queries and Dimension Properties in SSRS Report Developer and haven't found a case exactly like this with a solution that
    works.
    Environment is SQL 2012 SP1 Cum update 5
    I am doing a rather generic query out of MS Project Servers OLAP cube and I can't get the dimension properties to show up in the flattened output for my dataset. See below.
    SELECT
    NON EMPTY { [Measures].[FTE est] } ON COLUMNS,
    NON EMPTY {
    [Value_Stream_Project].[Value_Stream_Project].ALLMEMBERS *
    [Project Status_Project].[Project Status_Project].ALLMEMBERS *
    DESCENDANTS([Project List].[Project List Level 02].ALLMEMBERS)*
    DESCENDANTS([ProjectManager_Project].[ProjectManager_Project Level 02].ALLMEMBERS) *
    [Planner_Project].[Planner_Project].ALLMEMBERS *
    [Time].[Month].ALLMEMBERS
    DIMENSION PROPERTIES
    MEMBER_CAPTION,
    MEMBER_UNIQUE_NAME,
    PARENT_UNIQUE_NAME,
    LEVEL_NUMBER ,
    [Project List].[Project List Level 02].[Start Date],
    [Project List].[Project List Level 02].[Finish Date]
    ON ROWS
    FROM (
    SELECT ( STRTOMEMBER(@FromTime, CONSTRAINED) : STRTOMEMBER(@ToTime, CONSTRAINED) ) ON COLUMNS
    FROM (
    SELECT ( STRTOSET(@RBSResource, CONSTRAINED) ) ON COLUMNS
    FROM (
    SELECT ( STRTOSET(@ProjectStatusProject, CONSTRAINED) ) ON COLUMNS
    FROM (
    SELECT ( STRTOSET(@ValueStreamProject, CONSTRAINED) ) ON COLUMNS
    FROM [MSP_Portfolio_Analyzer]))))
    My issue is the [Project List Level 02] dimension Properties  (below) are not showing up in the Query designer output, aren't being generated as fields in the dataset and can't be referenced as a property in an expression (i.e. Fields!Project_List("Start
    Date") )
    [Project List].[Project List Level 02].[Start Date],
    [Project List].[Project List Level 02].[Finish Date]
    The odd part is if I change the above two rows in my query to this :
    [Project List].[Start Date],
    [Project List].[Finish Date]
    The Query designer shows the properties in the output but leads to  2 other issues,
    1) I have to modify the generated Dataset field values to remove the [Project list Level 02] in the Level unique name like this
    Before<?xml version="1.0" encoding="utf-8"?><Field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xsi:type="MemberProperty" PropertyName="Project List - Start Date" LevelUniqueName="[Project List].[Project List Level 02]" />
    After
    <?xml version="1.0" encoding="utf-8"?><Field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xsi:type="MemberProperty" PropertyName="Project List - Start Date" LevelUniqueName="[Project List]" />
    2) I have to restrict my cross join to only the current level (Level 02) or it expands the results to the parent hierarchy of the Project List dimension and skews my measure summaries.
    I've tested the query in SSMS directly and the properties are showing up just fine for those dimensions using the original syntax.
    Any help would be appreciated.

    Hi there,
    Which data source provider are you using?  Are the connection strings used in SSMS the same as SSRS? Doing a profiler trace against Analysis Services might point to differences in how the connection is made or query is parsed.
    This may help.
    http://www.sqlchick.com/entries/2011/10/23/pros-cons-of-using-the-ole-db-provider-for-ssas-100-when-rep.html
    Did you try using With clause to make a friendly name for the member properties?
    http://melick-rajee.blogspot.ca/2012/04/how-to-get-member-properties-in-mdx.html
    cheers,
    Andrew
    Andrew Sears, T4G Limited, http://www.performancepointing.com

  • 10.7.3 update will not run. I've downloaded it's 2 Gb twice now (half my monthly internet) and the dialog box says "download could not be saved". Without this update I cannot update Java and therefore cannot use my nebank. Ideas?

    Where can I report this to Apple, I've just spent 20 minutes trying to find some way to contact them.

    Sorry Gimp, but in fairness you didn't solve my problem, you got the points though (accidentally).
    It may well have worked, but just downloading the Combo update directly from Apple did the trick. This answer from Scott Newman put me onto it.
    However, in this case, there is very clearly an issue that is correlated to two things:  1) Using the automated "Software Update" as compared to downloading and using the separate Mac OS X 10.7.3 Combo Updater; and 2) Certain Mac notebook computers.  In most cases, but not all, running the Combo Updater over a failed 10.7.3 update using Software Updater will fix the problems.  If a user can't get to the desktop or can't download the updater because of the previous failed update, there is information (albit geeky) in the previously noted thread to deal with this.
    Most older, experienced Mac users never trust the automated Software Update process for system updates and always download and use the related "Combo" updater.  Unfortunately, many newer Mac users know nothing about this.  Apple's revenues and profit growth have come at the expense of having an exponentiall increase in the number of non-Geek users who just want their Mac to work like their toaster.
          Thanks very much for your replies though

  • As i am fresher Please share the doc of ECMA script using java script in SharePoint 2013 also how we can insert,update,delete records in list using ECMA script.

    As i am fresher Please share the doc of ECMA script using java script in SharePoint 2013 step by step also how we can insert,update,delete records in list using ECMA script.
    Thanks and Regards, Rangnath Mali

    Hi,
    According to your post, my understanding is that you want to use JavaScript to work with SharePoint list.
    To create list items, we can create a ListItemCreationInformation object, set its properties, and pass it as parameter to the addItem(parameters) function
    of the List object.
    To set list item properties, we can use a column indexer to make an assignment, and call the update() function so that changes will take effect when you callexecuteQueryAsync(succeededCallback,
    failedCallback). 
    And to delete a list item, call the deleteObject() function on the object. 
    There is an MSDN article about the details steps of this topic, you can have a look at it.
    How to: Create, Update, and Delete List Items Using JavaScript
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • TestStand not updating th descriptio​n after using the edit substep

    I've created numerous custom steps in TestStand.  None of them will update the description after I use the edit substep and change some of that steps properties.  As an example, I have the following step description...
    str(Step.Channel.DeviceName)
    After I use the edit substep, which changes step.Channel.DeviceName, the description does not update.  However, if I then open the properties menu for that item and either select "OK" of "Cancel" to leave the property window, it then updates to the correct values.  Placing down a new step will also force the description to update.  While this is not functionally causing any problems, it would be nice if the descriptions updated immediatly.

    Hey Dillon,
    The reason it doesn't update is because the sequence editor doesn't know that the sequencefile has changed so it doesn't know to redraw that window.  You can force it to redraw the window by calling the method IncChangeCount from the PropertyObjectFileClass.  If you increment the change count it should automatically update the description as soon as your edit substep completes.  Also a piece of advice, in the future if you have TestStand questions, you can probably get a quicker answer to them by posting on the TestStand forums, even if it is using the TestStand API in another programming environment like LabVIEW or CVI.  Hope this helps!
    Message Edited by Patrick P. on 12-06-2006 06:38 PM
    Pat P.
    Software Engineer
    National Instruments

  • BPC Properties and Use

    I'm currently at a client and the situation they have is that for the ENTITY dimension, they have various numerical fees .  There are close to 10-15 fees and thus I've created 10-15 Properties for each fee.  The fee's will be standard across all categories and time, hence no need to store it as an account as that would be would require maintenance as I assume I would have to copy it across Time and Categories, whereas through properties, once its added there is no need to change it.    
    The goal is through Script logic to use the Property/Fee attributed to the Entity and perform calculations.  In BPC is it possible to write Script Logic that could call the property and then perform a calculation?  I assume I would have to create each of the fees as properties and make them "InAPP" in order to perform calcs?
    Thanks,
    Pras

    I may not be following your question so pardon if I don't actually fully answer.  When you maintain a dimension member sheet, with members and properties in the microsoft version, you may leave more data in the sheet than is stored in the dimnesion.  But only the PROPERTIES that are defined in the Manitain dimension properties will be stored in the application, with the exception of FORMULAH# entries.  In addition, in the SQL table there are other properties that are stored as part of the processing that may referenced using EVPRO, such as LEVEL. 
    Some of the unlisted properties are part of the code for the product and will be part of the table in the background, but ONLY the properties that generally are added may be used by logic or the cube based on the INAPP setting.
    Hope this helps.

  • Account Dimension Properties

    Hi,
    I have some questions concerning Account dimension properties:
    1. "EnableCustom1Aggr"--->Whether aggregation is enabled for intersections of the Account and Custom dimensions This attribute is used for special totals, not summing. Specify Y if the account can aggregate with Custom dimensions or N if it cannot. does this mean that by default summing is working?
    2."EnableDataAudit"---> what does it mean to have an audited account or scenario?
    3. did anyone try member name that have space character on oracle database.
    4.what is the use of plug accounts.
    Thanks,
    foksh

    does this mean that by default summing is working?
    The account rollup is summing by default, but if you do not have the EnableCustomAggr checked, the Custom dimension members will show nothing.
    "EnableDataAudit"---> what does it mean to have an audited account or scenario? will allow you to see changes made to that account from the Tasks Folder -> Data Audit option.
    what is the use of plug accounts. R/= This are were you usually store the difference between your Intercompanies.
    Using spaces in member names is not recommended, try undercores _

  • Description on Essbase Account Dimension Properties

    Hi everyone! I am a newbie on Oracle Hyperion and Essbase. I joined a company as a trainee software developer. And my role is to support my superiors in developing Planning and Budget Applications for Plantations of our company.
    I tried my best to find places in internet where I can improve my knowledge in the application but there is no place I found as free since my company is not ready to give good professional training. so I decided to choose the forum where I guess I would get help.
    My first question to ask is about Account Dimensions Properties,+_ what they do, what are their uses, what for an account type is used, where time balance is used etc.
    Edited by: 930603 on Apr 27, 2012 10:51 AM

    Hi,
    Welcome to the world of Hyperion first i suggest you to start reading the essbase dbag, it will help you to understand what exactly the product do and also help you to understand the best optimum solution for your design & implementation
    for Account Dimensions Properties
    http://docs.oracle.com/cd/E17236_01/epm.1112/esb_dbag/frameset.htm?dotattrs.htmlThanks,
    Avneet Singh Bhatia

  • Script calculation for dimension properties

    Dear Experts,
    I am using BPC 7.0NW,
    My code in Default.lgf:
    *BEGIN
    [P_ACCT].[#B] = [P_ACCT].[A]* [P_ACCT].[C]
    *END
    Now, I want to run this calculation for dimension property wise.
    LIke i want to add dimension properties in above calculations.
    And how do i put "IF" conditions?
    Please help me ...
    Thanks alot in advance.....!

    Kumar,
    follow next steps:
    1. Create new logic file and name it "TEST" for example
    2. Use next coding in it:
    *XDIM_MEMBERSET P_ACCT = YOUR_P_ACCT_MEMBER
    *IS "YOUR_PROPERTY_VALUE"
    *REC(EXPRESSION=%VALUE%,TIME="2010.MAR")
    *ENDWHEN
    *COMMIT
    3. Validate and save your TEST.LGF
    4. Insert next coding into DEFAULT.LGF
    *INCLUDE ADD.LGF
    5. Validate and save DEFAULT.LGF
    Put your values insted of "YOUR_P_ACCT_MEMBER", "YOUR_PROPERTY_VALUE"
    This coding works for sure.
    U can use ABAP in script logic. The mechanism is described here:
    http://help.sap.com/saphelp_bpc70sp02/helpdata/en/a1/532226947C49A5B2E2BD32450CB2D1/frameset.htm
    Hope that was helpful,
    Dzmitry

  • [svn] 3813: Update J2EE Webtier Compiler to use SWFObject2 based HTML templates.

    Revision: 3813
    Author: [email protected]
    Date: 2008-10-22 09:13:37 -0700 (Wed, 22 Oct 2008)
    Log Message:
    Update J2EE Webtier Compiler to use SWFObject2 based HTML templates. JSP tags still use the old AC_OETags.js templates since that would be a more complicated change and it is not worth the effort right now.
    QE: Yes
    Doc: Is there any?
    Checkintests: Pass
    Reviewer: Pete
    Bugs: SDK-17699
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-17699
    Modified Paths:
    flex/sdk/trunk/modules/webtier/servlet/build.xml
    flex/sdk/trunk/modules/webtier/servlet/src/java/flex/webtier/server/j2ee/html/MxmlRendere r.java
    flex/sdk/trunk/modules/webtier/servlet/src/java/flex/webtier/util/RendererUtil.java
    flex/sdk/trunk/webapps/webtier/WEB-INF/flex/flex-webtier-config.xml
    flex/sdk/trunk/webapps/webtier/build.xml
    Added Paths:
    flex/sdk/trunk/modules/webtier/servlet/src/java/flex/webtier/util/index.template.vm
    Property Changed:
    flex/sdk/trunk/modules/webtier/servlet/src/java/flex/webtier/util/

    Hi,
    Can you mention the eclipse version you are using? And the platform in which you are trying to build?
    I feel its always better to be platform specific when you go in for headless build. I can see that the configs value in your properties file is "configs=*,*,*". Try changing it to appropriate value and build your product. For example, I use "configs=win32, win32, x86" for building my product in 32-bit windows machine.

  • How can we update data in LDAP server using PL/SQL.

    Hi,
    How can we update data in LDAP server using PL/SQL program.
    Is there any sample code for refrence.
    Thanks,
    Tarun

    Hi Justin,
    Thanks for your help. You got my correct requirements.
    Tim's example returning all the attributes of current user which is admin user. Please correct me if I am wrong.
    I have the following information:
    the admin user and password,server info , port and ldap_base for admin.
    I have uid and password for regular user, I am trying find the ldap_base for regular user, which may be different from adminuser.
    Please help me.
    Thanks,
    Edited by: james. on Jan 12, 2009 5:39 PM

  • Where is it at?.....its July 20, and i dont see nada??? what in the ****-o bobby??? umm my iphone os updates the big ones anyway used to come out at midnight

    where is it at?.....its July 20, and i dont see nada??? what in the **** bobby??? umm my iphone os updates the big ones anyway used to come out at midnight.......yea?

    Then, you need to sharpen your search skills. A google search for Lion ships today brings up many hits, with this one mentioning a time: http://isource.com/2011/07/19/confirmed-os-x-lion-ships-tomorrow/

  • Where is it at?.....its July 20, and i dont see nada??? what in the **** bobby??? umm my iphone os updates the big ones anyway used to come out at midnight

    where is it at?.....its July 20, and i dont see nada??? what in the **** bobby??? umm my iphone os updates the big ones anyway used to come out at midnight

    FWIW, this is a user forum. We are all users like you. No Apple employees here and Apple doesn't follow these forums. You aren't speaking to Apple here.

  • After finally getting my imac from fedex,  cannot get past the Update Apple ID and to use ICloud I have to change my app  id.  okay, but the red keeps saying that email address is already being used.  is it because I am on the apple site on a netbook pc?

    On the Update Apple ID screen to use ICloud, I get a red message that email address is already being used.  It does not accept my email address?  I do not understand what the screen is asking me.  Is this because I am using the apple ID on a netbook for this note or what. 
    Is there a way to bypass this screen if I don't want to use ICloud?  I don't want to screw up the original setup of my imac.  If I could get to the desktop, then I would know what OS and programs are in my machine. 

    Hi, hopefully you've called Apple on this... you have 90 days free phone support.

Maybe you are looking for