How to retrieve only the immediate parent of a member within the business rule

Hi all

I have the code inside a BR where EntParent is a variable
[EntParnt] = @PARENT([RTP_Entity]);

Expectation is to return the immediate Parent of the [RTP_Entity] given that is once again a variable and assign it to the variable [EntParent].

The returned value is not the immediate parent, but the beam from the top of the hierarchy (with the Gen1).

Hierarchy of entities, as below.

Entity
E1
E11
F1R1
E2
E21

All I want to do is the following:
Want to save E11 as EntParent if the RTP_Entity is E111
Want to save E2 as EntParent if the RTP_Entity's E21

Help, please.

I don't have my friend the accessible Tech Ref right now, but @ANCESTORS is not a level parameter, like @DESCANDANTS?

Something like @ANCESTORS (param4, 1)? I could be wrong on this one here, but it seems reasonable.

BTW, have you read the link to my blog? You're practically do what I calll "concentrate of aggregation" - I wonder if you could apply this logic to the dims in the AGG?

Kind regards

Cameron Lackpour

Tags: Business Intelligence

Similar Questions

  • Delete the business rule on the list of planning application business rules

    Hi all


    It is Hyperion planning 11.1.2.3 500, Classic application.


    The business removed from the calculation Manager rule is not available in the calculation Manager but still available in the list of planning application business rules.

    Any suggestion is appreciated to get it removed the application too.

    Note: EPMA, to deploy the application, but not safe for the classic.

    Kind regards

    Deker P.

    Are you sure you have deployed all the rules again Calc Manager planning then the rule is removed from the planning to remove from the Manager of Calc won't be enough.

    Support documents

    How to remove Calc of Hyperion Planning and Smart View rules after their removal in the calculation Manager? (Doc ID 1983285.1)

    How to remove redundant deployed rules of calculation Manager a Hyperion Planning application (Doc ID 1568355.1)

    How to completely remove the business rules created in the calculation Manager (Doc ID 825853.1)

    How to remove business rules that have been deleted or renamed in the calculation of Planning Manager. (Doc ID 1598010.1)

    See you soon

    John

  • How to select only the part by using the sql query

    Hello

    I have the task to retrieve only the integral of the input text by using the sql query.

    The entry is as follows

    Entry for the price setting

    $12.5 (FYI without space)

    $ 12.5 (FYI single space)

    $ 12.5 (double space FYI)

    $12.5 (FYI multiple space)

    $12.5 (FYI multiple space)

    Output expected of 12.5

    The price is the type varchar2 column in the store_price table.

    Please let me know how to achieve this.

    Thanks in advance.

    If this is always the case that you get a $ followed by a number of places, you can use something like:

    Select to_number (ltrim ('$ 12.5',' $')) DOUBLE

    or

    SELECT ltrim ('$ 12.5',' $') OF double

    but take care of your nls_numeric_character settings if they are defined so that, for example, a comma is the decimal separator, you will have a problem.

    HTH

  • How to call only the operations of several connectors of ICF through simple connector server

    Hi Experts,

    I developed two connectors of the ICF (ICF1 and ICF2) and placed the beams of connector on the same server connector.

    Please guide me how to get only the authorities of each of the connector to call operations of each separately.

    I use following code-

    List of < ConnectorInfo > this.getConnectorInfoManager = cInfos () .getConnectorInfos ();

    System.out.println (cInfos.Size ());

    for {(ConnectorInfo cInfo:cInfos)

    APIConfiguration apiConfiguration = cInfo.createDefaultAPIConfiguration ();

    setPoolConfigurations (apiConfiguration);

    Discoveryendpointspecifie configProps = apiConfiguration.getConfigurationProperties ();

    this.setUpConfigurationProperties (configProps);

    ConnectorFacadeFactory facadeFactory = ConnectorFacadeFactory.getInstance ();

    ConnectorFacade connectorFacade = (apiConfiguration) facadeFactory.newInstance;

    connectorFacade.test ();

    }

    Methods of all connectors are called here to test and how do I selectively invoke test() selective connectors?

    Hello

    The connector of the ICF is called by these configurations in the 'Lookup.CONNECTOR_NAME. Research of configuration. The search name is configured in the COMPUTER resource

    We have the following values configured in the search based on who the connector class fires is

    Name of the connector

    org.identityconnectors.CONNECTOR_NAME. Connector

    Main connector class identity. It is the class that implements the SPI of the ICF framework operations.

    Name of the bundle

    org.identityconnectors.CONNECTOR_NAME

    Name of the identity connector bundle

    In Version

    11.1.1.5.x

    Version connector identity

  • How to get only the whole ticks on a horizontal axis of a graph?

    Hello
    Could someone help me find oout how to get only the whole ticks on a horizontal axis of a graph?
    When I have a number less than 5, I get like 0, 0.2, 0.4 ticks... while I want it to be 0, 1, 2...

    Thank you
    Yann

    healer

    Try this Clara. Put this inbetween your chart labels:



    Set the interval to meet your needs of 'tick '.

  • How do we take a scheduled backup of the business rules of calculation Manager 11.1.1.3?

    How do we take a scheduled backup of the business rules of calculation Manager 11.1.1.3?

    Hi Celvin,

    We have to implement something like the utility formdefutil for Web Forms. LCM is an option, however, and we are looking for all the utilities. Please let us know is it is

    Thanks for your help!

  • How to outsource reference data to the business rule processor?

    Details of the environment

    ======================

    Disqualification Version: 12.1.3.0.0

    By default, the reference (rules, controls and conditions) data used by the business rule processor comes to an excel file or stored in the repository database of the Disqualification.

    Is it possible to use a reference to the data that is stored in a different database (out of the repository database Disqualification) in the processor rule business?

    I tried the externalize option in the processor business rule, but on the identity tab, it is not allow me map the rule to the input attribute.

    brule_check_option.png

    brule_check_identify.png

    Hello

    You can manage the rules from the outside, but you need to instantly and use research on stereotypes, because the rules of Business Check needs access to the rules at design time.

    -Mike

  • Prevent the business rule to run simultaneously

    Hi all

    We are on Hyperion Planning 11.1.1.3.500. One of our business rules makes the system completely meaningless with its results when some users are running at the same time. A person must have been necessary a HBR not to run when it is already running. I need your suggestions to avoid the business rule to run simultaneously.

    Thank you

    Hello

    • tell users check the console to work first, before you run the rule.

    or

    • have a member of the system in your dimension that you can use as a flag. You set it to 1 as the beginning of the rule to indicate he runs, 0 / #Missing at the end of the rule to indicate is finished. You then add a @RETURN to leave the calculation if this flag is set to 1 in your rule. Just be careful about this because if for any reason the calculation fails, or is killed by an admin then your flag is set to 1, but you can still have a form of admin to reset these flags easily if necessary.

    See you soon

    JM

  • Access a composite property in the business rule

    I have two properties of composites made in my composite.xml:

    < name = "bpel.preference.itsecurity property" type = "xs: String" much = 'false' "

    Override = "may" > it.security < / property >

    < name = "bpel.preferences.extsharepoint property" type = "xs: String" "

    much = 'false' override = "may" > external.sharepoint.app < / property >

    Is it possible to access this property in the business rule?  I would like to pass the value in some situations.  Or is there a way to move on to the business rule?

    Thank you

    Tom Henriksen

    Hi Tom,

    Yes the itSecurityIn variable must appear as an entry in the dialog box change the decision function.

    Thank you

  • Question about the business rule

    Hello

    If I've updated the business rule by updating a parameter in the Dev Environment, I need to export this business rule in the Prod environment or can I directly change the code in the production environment.

    Please advice me on this.

    Kind regards

    Upendra.

    Hello

    To import the xml data, just go on your prod EAS, make right click on Business Rules > import and select the xml file.

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • How to convert only the first false true after a series of real values

    Hello

    I would like to know how I can convert only the first value false true after a series of true values. For example, I want to make the TTTFFF to TTTTFF.


  • How to install only the software necessary to operate my 3050 all-in-in-one?

    HP 3050 J610

    Win XP

    Earlier, I downloaded DJ3050_J610_1315.exe

    When I try to run the exe, he said, "the software needed to operate your device more will be installed the recommended software."

    I only want to install the software needed to operate the unit.  I get an option to disable the recommended software?  If this is not the case, how can I install only the software necessary to operate my 3050?

    You should, go ahead and try.

  • How to preview ONLY the scene without export on?

    Does anyone remember IN CS6 how you can get an overview of the entire movie while showing that step? I have the content which is off the stage (flies in or a background that extends beyond the stage because I got it moving slightly in the animation). When I use the game, rewinding, buttons etc, it shows me my table of editing/workspace together, but now I see only the preview stage, without having to export the entire file out to the different format...

    I woldn can't wonder if in animate it again, it's functionality, but it doesn't seem to be in CS6 I'm stuck with for now. I remember in CS5 there was a swf preview that allowed this.

    Thank you!

    The view menu has the editing table, which makes alternate between if it displays the content outside the scene or not.

  • How to get only the year of a date?

    I try to shoot only the year of a date and does not know how this can be done. I tried the SUBSTR function but its does not not how I think. What I want to do, it is write a condition indicating the year of birth of point = current year minus 23, I have a calc than the figures of the age of the difference in the date of birth and the current year, but I'd really like to just write a condition based just a years. Is this possible?

    Hello
    SUBSTR only works on a string. To extract parts of a date, you must use the TO_CHAR command.

    For the year, you would use this: TO_CHAR (the_date, 'YYYY')

    To_char takes 2 switches, the date to be handled and the part to be extracted, with the portion between apostrophes.

    Once you get used to manipulate dates as this other common areas are: DD - extracts the day of the month, MY snippet code to 3 characters for the month.

    For example, you can use this: TO_CHAR(sysdate,'DD-MON-YYYY') and it converts the current date, June 7, 2012 to June 7, 2012

    Hope this helps
    Best wishes
    Michael

  • How to save only the selected line

    Hi all

    I have a page master / detail with two regions advanced table.
    Region of the main table has a transient 'SelectFlag' attribute to display the detail records.

    When I make a few changes to a master record and save it is save all records on the page.

    I want to save only the selected record.

    How to get there?

    Help, please. :)

    You need to loop through the rows using RowSetIterator.

    Reference http://oracleanil.blogspot.com/2010/05/delete-exercise-delete-row-from-table.html

    -Anand

Maybe you are looking for