Hierarchy of the building under a specific node in the outline

Hello

We have an obligation to create a hierarchy under a specific dimension member in the sketch. We have the dimension of time in which there are two nodes 'Time_Hierarchy379' and 'Time_Hierarchy383', now we need generate a rule file that generates a hierarchy, 4 levels deep, under the node 'Time_Hierarchy379 '. The construction of a hierarchy, to use the reference level or generation method, but how do you ensure that the hierarchy is built under the node "Time_Hierarchy379" specifically? Members 'Time_Hierarchy379' and 'Time_Hierarchy383' have been created manually, and they are not a part of the data in the source dimension tables. Help, please.

Thank you
Krishna

It is not necessary that these two members is a part of the data in the source table.

During the creation of the rule file, you can insert a column with 'create text using... "and specify the Member under which you want the hierarchy must be created. Label with appropriate generation and level and you should be able to build the desired hierarchy.

Kind regards
Sunil

Tags: Business Intelligence

Similar Questions

  • PIN dbms_cube.build jobs parallel to a specific node on the CARS

    Is it possible to Pin dbms_cube.build jobs parallel to a specific node on CARS. Currently, work with say parallelism of 10 bays on all nodes of the RAC.

    Is it possible to control for the jobs of the child works on the subset of nodes. Unable to see how we can link to categories of jobs and services with dbms_cube.build.

    Any suggestions will be much appreciated.

    JOB_CLASS was added in 11.2.0.2 precisely for this purpose. It is undocumented, because he missed the 11.2.0.1. Deadline for documentation, but it has exactly the same meaning as the job_class parameter in DBMS_SCHEDULER. CREATE_JOB.

  • I can't access the files under a specific user name, no password

    original title: access files

    Received the infamous "blue screen" error  Installed new hard drive and Windows XP Pro.  Installed old drive "blue screen" in a "pregnant" so I could access the files.  Only problem is that I can't access the files under a specific user name, no password.  All of the suggestions.

    In a situation like yours, you need to "Take Ownership" files that you can access on your old disk:

    "How appropriate a file or a folder in Windows XP"
      <>http://support.Microsoft.com/kb/308421 >

    HTH,
    JW

  • Questions about the management of specific nodes in different hierarchies

    Hi all

    I have a question about the specific management of some particular set nodes, which are located in different hierarchies within a same version.

    I want to know if there is any editing made to certain properties of these specific nodes or if the nodes are deleted/moved/edited approval to be triggered for the data manager.

    or should not allow users to edit (adding/moving/deleting/changing property values) or those specific members.


    According to my understanding of the nodes of domain prevents the removal of nodes, but I don't want my Member prefix/suffix, domain is the only way to prevent the change.




    Thanks and greetings

    Madhu

    We have an obligation to not allow a node to remove or deleted without the approval of the admin, so I created a Boolean property AllowDelete is false, which is substitutable, default and is available only in a category of property Admin, for which most of the users do not have access.  Then, I created a validation of PropRemove with an error message that tells the user to contact a user admin to remove or delete the node.  The admin can change the AllowDelete to true, then can either remove himself or to allow the user to do.

  • How to call the specific node of the navigation model?

    Hello

    I have a portal application webcenter containing a custom navigation template. HIES model is used by the menu tree and bread crumbs.
    Users request a link in the template to navigate to the home page. I could make a case of navigation in my ADFC-config file to navigate to the home page, but I would rather use the navigation model. Is there a way to select a specific node in the navigation model and navigate using a button or a link?
    I've been looking for this much time, but could not find an example. It's has enough of the menu etc, but not cela.
    Thank you...

    You can use the same navigation model just like using the template of menu xml
    http://www.orastudy.com/oradoc/selfstu/Fusion/Web.1111/b31973/af_navigate.htm#CACDBFEI
    For more information on the el here chk
    http://docs.Oracle.com/CD/E21764_01/WebCenter.1111/e10148/jpsdg_app_els.htm#CHDCBJGJ

  • Add a folder of files with the hierarchy to the installer

    Hi all

    Have a folder of files that can be read by the app.  This folder has a hierarchy of other records and contains xml files.

    I just want to include this file and all files with the hierarchy with installer and add to the Application directory.

    I don't want to have to manually create this folder hierarchy in generator installation and add each xml file.

    Is it possible to simply add files with the hierarchy folder the installer?

    Thank you.

    You should be able to do this if you add the folder of your project as a folder automatic settlement. If you right click on my computer in the directory of your project and select Add > folder (automatic settlement) will include the folder and subfolders. Now when you go to build an installer and click on the Source Files tab you can add all of the folder and its subfolders. Note, you are not able to do it with normal files or instant capture. I hope this helps.

  • Add the hierarchy to the dash prompt

    Hello

    I have a question

    I created the analysis:

    And add filters:

    And I add the hierarchy of categories of purchases to prompt dashboard:

    But when I open a dashboard and choose an option in the command prompt, for example:

    Nothing happens:

    Do I need something additional set or If there is even an option use a hierarchy in command prompt ?

    Hello

    When to use a hierarchy as a guest you don't filter the analysis by setting "is invited" at all levels but you add the hierarchy in the analysis and using the stages of selection, you set it can be replace by the guest. "

  • Create the hierarchy of the folders and multiple subfolders

    Dear friends,

    I copied the script to "create folder hierarchy" (created from chinna), but I need small change in their script, I added the below comment purposes created subfolder, its also created.

    But I need several folder created in the same hierarchy (see the screenshot "my requirement")

    var target is Folder.selectDialog ("choose a target folder");.

    If (!) ((Folder(target+"/"+"Folder A"))) .exists)

    {

    new folder (target + "/" + "PRODUCTION" + "/" + "APPL" + "/" + "DD-MM-YY") .create ();

    }

    OUTPUT:

    Screen Shot 2014-08-02 at 4.00.58 PM.png

    MY REQUIREMENT IS:

    Screen Shot 2014-08-02 at 4.00.49 PM.png

    Thanks in advance:

    Kanaga kumar. k

    Hi kanaga kumar,.

    There are several ways to do so. With the logic of the Cognet script, you can do something like this:

    var target = Folder.selectDialog("Choose a target folder");
    if(!(Folder(target+"/"+"PRODUKTION")).exists) {
        new Folder(target+"/"+"PRODUKTION").create();
        }
    if(!(Folder(target+"/"+"PRODUKTION"+"/"+"APPL")).exists) {
        new Folder(target+"/"+"PRODUKTION"+"/"+"APPL").create();
        }
    if(!(Folder(target+"/"+"PRODUKTION"+"/"+"FONTS")).exists) {
        new Folder(target+"/"+"PRODUKTION"+"/"+"FONTS").create();
        }
    if(!(Folder(target+"/"+"PRODUKTION"+"/"+"IMAGES")).exists) {
        new Folder(target+"/"+"PRODUKTION"+"/"+"IMAGES").create();
        }
    if(!(Folder(target+"/"+"PRODUKTION"+"/"+"PDF")).exists) {
        new Folder(target+"/"+"PRODUKTION"+"/"+"PDF").create();
        }
    

    Have fun

  • WORK on a specific node

    Is it possible to run a scheduled task to run on a specific node.
    BEGIN
      SYS.DBMS_SCHEDULER.CREATE_JOB_CLASS
        (
          job_class_name          => 'TEST'
         ,resource_consumer_group => 'DEFAULT_CONSUMER_GROUP'
         ,service                 => 'ORCL'
         ,log_history             => 30
         ,comments                => NULL
        );
    END;
    / 
    

    ORCL must exist:

    SELECT NAME FROM DBA_SERVICES:
    NAME
    ----------------
    SYS$BACKGROUND
    SYS$USERS
    ORCLXDB
    ORCL                                                            
    
    BEGIN
      SYS.DBMS_SCHEDULER.CREATE_JOB
        (
           job_name        => 'SYS.TEST_JOB'
          ,start_date      => TO_TIMESTAMP_TZ('sysdate','yyyy/mm/dd hh24:mi:ss.ff tzr')
          ,repeat_interval => NULL
          ,end_date        => NULL
          ,job_class       => 'TEST'
          ,job_type        => 'PLSQL_BLOCK'
          ,job_action      => 'begin null; end;'
          ,comments        => NULL
        );
    /
    
  • Need name of the API to create the hierarchy of the Organization for Oracle HRMS

    Hi all



    (1) name of the API need to create the hierarchy of the Organization for Oracle HRMS

    (2) in the form of the Organization, we have added the Classification, 'HR'.
    When we press 'Costing Information' is displayed.
    We need to download this Information of costs in the body through the API.
    Which API should we used?

    This is urgent.
    Any help in that regard will be highly appreciated

    Thank you

    Hi, Ahmed.

    You can find all the APIs here-
    http://irep11i10.Oracle.com

    Hierarchy of org-
    http://irep11i10.oracle.com/OA_HTML/OA.jsp?page=/oracle/apps/fnd/rep/webui/InterfaceListPG&BusinessEntity=PER_ORGANIZATION_HIERARCHY&Title=Organization+Hierarchy&retainAM=Y&_ti=2010961940&oapc=7&selection=11_1_62_&oas=s6j2chTrx3F6QeAofgAR-Q..

    To check information of costs - create the organization information (information of costs goes into HR_Organization_Information table, just check for the correct contexts)
    http://irep11i10.Oracle.com/OA_HTML/OA.jsp?page=/Oracle/Apps/FND/Rep/WebUI/PLSQLInterfaceDetailsPG&CategoryValue=F&_tI=2010961940&retainAM=Y&addBreadCrumb=Y&OAPC=16&OAS=rEOv_-poEcBvZjTjyrCnXw...

    http://irep11i10.oracle.com/OA_HTML/OA.jsp?page=/oracle/apps/fnd/rep/webui/InterfaceListPG&BusinessEntity=HR_ORGANIZATION&Title=HRMS+Organization&retainAM=Y&_ti=2010961940&selection=11_1_49_&oapc=28&oas=Ns8RX2ZaTcv6y_BMwx0d7Q..

    Hope that helps.

    If the links above do not work. Try to copy - paste the full URL in a new window. It should work.

    See you soon,.
    Vigneswar ben ahmed

    PS: You can also try loading. The free version should suffice. And it is a wonderful tool.
    http://www.dataLoad.com/downloads/index.html

  • SQL statement for the hierarchy of the Organization

    Nice day

    I was wondering if there is a script/sql statement that would generate the hierarchy of the Organization (similar to the organization hierarchy editor) in Oracle EBS HRMS 11.5.10

    Thank you
    Elmer

    I was wondering if there is a script/sql statement that would generate the hierarchy of the Organization (similar to the organization hierarchy editor) in Oracle EBS HRMS 11.5.10

    Please see if (how to extract HR organization hierarchies in SQL? [REF 463359.1]) help.

    Thank you
    Hussein

  • Need to restrict a hierarchy in the selection of members RTP

    Hello

    We use on rule which RTP conatins variable. According to our condition while selecting this member of varaibale RTP through member selection window can I limit the hierarchy of the dimension than the members of level 0 as there are several levels in this dimension and we want only the level zero list members to choose among them.
    I tried with @levmbrs(dim,0) in the section limits but without success.


    Thank you

    This is perfectly supported in 11.1.1.3
    http://download.Oracle.com/docs/CD/E12825_01/EPM.111/calc_manager_help/ch05s03s01s07.html
    Maybe if you try to recreate the variable and the rule?

    See you soon,.
    Alp

  • Search for formatting text and convert them to the outline

    Hello! I need a script that finds the text formatting and convert them to the outline. If one who can do this script please provide.

    Thank you

    I need the script to only specific formatting for once. So I don't need any fancy or dialog boxes option. I also did the character for the formatting style.

    Try this.

    var doc = app.activeDocument;
    app.findTextPreferences = null;
    app.findTextPreferences.appliedCharacterStyle = "charstylename";
    var found = doc.findText();
    for(var i =0;i
    

    Kind regards

    Cognet

  • Stop the outline of hiding

    I published a Presenter PowerPoint file, and when I run it, things work very well except that when you minimize the window of the browser under a certain point, the outline or the TOC is hidden and you're left with just the slide itself.  Is there a way to avoid this?  Thanks in advance.

    Hello

    This is normal. It turns into mode full-screen when the window is resized after a certain limit.

    This is done to make the content visible clearly still visible and hide the sidebar.

    Thank you

    ALPI Agarwal

    Adobe Presenter Engineering Team

  • Need a keyboard shortcut for the outline color.

    I need a quick way (keyboard shortcut) to change the color of specific color contour. Given that I need to always put the same color (e.g., red, for example) I would skip the procedure having to take repeated red in the palette and simply have chosen red automatically with one click only.

    I tried action, recording hoping later, I would be able to assign a shortcut, but oddly when an action that saves the value of stroke color is played, it defines the FILL color for this color choice and instead of setting the color of the outline (with which it has been saved)

    No idea how to get what I need?

    Thank you

    If the combination of fill/stroke/weight (not just the stroke) you want to call is compatible, you can:

    1 draw a path, apply the desired fill & stroke.

    2 AltDrag it and drop on the default graphic Style in the graphic Styles palette.

    3. then, press D to set the other default paths.

    IE7

Maybe you are looking for

  • The quotes appear automatically at the end of each line

    Normal return at the end of a line of text create quote marks, shift return has not, anyone know of a way to stop this? Located mainly on older presentations which were brought in more recent versions of Keynote. It doesn't seem to be a problem of qu

  • About precision for PCI-6229

    We use PCI-6229 and make the following wiring: released AO1 is connected to the entrance of the AI6, AO0 output is connected to the AI7, Both AI6 AI7 are configured and wired in incremental ways. I have checked the wiring, grounding, plug on the accu

  • Computer came with Vista already loaded...

    My computer came with Vista already installed.  Directions to fix the error 80070490 requires Download Vista again.  I don't have the copy.  What should I do?

  • HP Officejet 7500 E910: Cleaning print head

    I understand that the printer starts a sequence of cleaning from time to time, which uses ink. I wonder what is happening to the ink. It moves to a "cesspool" of sorts, and whether itself needs cleaning occasionally? Thanks if anyone can help.

  • 8086 3b 64 = driver Intel Management Engine Interface (MEI)?

    I have a new computer that was custom built for me by a shop.The computer works fine, I noticed in Device Manager, however, that in the other devices sectionThere is something called "PCI Simple Communications Controller" which has a yellow exclamati