OBIEE 11 g there is function

Hi all

I'm on there is function in says it works fine

But

during the observation data, data are incompatible with the particular product category, why because two category s (A, B) have subcategory namesake (base)

Cat CAT sup

A  ------        Basic

A - value added

A - high

B -------     Basic

B Bass

B way

My report has five columns like CM-1 CM - 2 CM - 3, -4 CM, 5 CM,

When I was a selection A cat and subcat is Basic, data as below...

CM-1 CM-2 CM-3 CM - 4 CM-5

Has basic has basicB basic B basichas basic       

If subname of cat is different without offspring

Please help me.


Concerning

RM

You can create a key made up of Cat + SubCat (in a logical column concatenation is a quick victory) which will return the single SubCats and assign it as the logical level key:

SubCat:

A Basic

A - value added

A-high

B Basic

...

Tags: Business Intelligence

Similar Questions

  • There is function - number

    Hello

    I created there is function and it does not work. Help, please.

    Function AGO created layer MDB by following below steps.

    1 created new logical column
    2. function AGO

    There is (base". "Fact - fins - GL another committed Transaction. "" Transaction amount ", Core. «"' Date - Fiscal Calendar»» (Exercise 1).

    3. change exercise level
    4. drag the column in the presentation layer

    Report created with two parameters - exercise and exercise.

    Now, when I run report - I see the data for the current period (setting) but new column appears not all data.


    Any help is greatly appreciated. First time I am trying to create this feature.

    Thank you
    Poojak

    The important thing to check for the use of time series works in obiee as AGO and this day is to ensure that you have a time Dimension in the business model. Go to the properties of your heart. "' Date - Fiscal Calendar" Dimension and see if the temporal Dimension check box is checked.
    The next thing would be to check the chronological key. See if your lowest grain in the kernel. "' Date - Fiscal Calendar ' Sun is defined as chronological key.

    SAI.

  • (1) is there a function for all the object of the same size?

    (1) is there a function for all the object of the same size?

    Sorry, I thought you wanted to align the objects.

    We do not have the function to make items of the same size. You must change one by one. To change the .lks file may be more effective.

  • Is there a function to adjust the length of a string to 8 multiple bytes?

    Hello

    I have a function to encrypt a password.

    FUNCTION encodeit (p_name IN VARCHAR2, p_password IN VARCHAR2) RETURN VARCHAR2
       IS
          l_password   VARCHAR2 (4000);
          l_salt       VARCHAR2 (4000) := 'hdjikndbbhitasuihfnnkqyhiplwmneuyndnloidj';
       BEGIN
          l_password :=
             UTL_RAW.cast_to_raw (
                DBMS_OBFUSCATION_TOOLKIT.md5 (
                   input_string => p_password ||
                                   SUBSTR (l_salt, 10, 13)||
                                   LOWER (p_name)||
                                   SUBSTR (l_salt, 4, 10)));
          RETURN l_password;
       END;
    

    I want to decrypt the password to send to users when they forget it.  I wrote this function:

    FUNCTION decodeit (p_name IN VARCHAR2, p_password in VARCHAR2) RETURN VARCHAR2 IS
        l_salt       VARCHAR2 (4000) := 'hdjikndbbhitasuihfnnkqyhiplwmneuyndnloidj';
        BEGIN
          RETURN DBMS_OBFUSCATION_TOOLKIT.desdecrypt(input_string =>  p_password ||
                                                                      SUBSTR (l_salt, 10, 13)||
                                                                      LOWER (p_name)||
                                                                      SUBSTR (l_salt, 4, 10),
                                                     key_string   => l_salt) ;
        END;
    

    The problem is that the DBMS_OBFUSCATION_TOOLKIT.desdecrypt function needs a multiple of the input string of 8 bytes. And p_name and p_password are not of fixed length. Is there a function to adjust the length of a string to 8 multiple bytes?

    Best regards.

    They used to work - could be almost ten years (I think version 9 - not tested yet)

    As you can see, you can 'encode' the number of characters, padded in order to set the right length of the decrypted string


    create or replace FUNCTION ' CRYPTIN "(p_str in varchar2) return varchar2 as". "

    l_data VARCHAR2 (255);

    function pad_DES (p_string in varchar2) return varchar2 is

    -platelets p_string with pad_chr containing the number of characters padded (1 to 8)

    -make the string length a multiple of 8 as required by decipher

    pad_length pls_integer;

    pad_char char: = chr (0);

    pad_chars varchar2 (8);

    Start

    pad_length: = 8 - mod (length (p_string), 8);

    pad_chars: = chr (pad_length);

    Return concat (p_string, rpad (pad_chars, pad_length, pad_chars));

    end;

    Start

    l_data: = pad_DES (p_str);

    dbms_obfuscation_toolkit. Decrypt (input_string-online l_data, key_string => 'MagicKey' encrypted_string-online l_data);

    return UTL_RAW. CAST_TO_RAW (l_data);

    end;

    create or replace FUNCTION ' CRYPTOUT "(p_str in varchar2) return varchar2 as". "

    l_data VARCHAR2 (255);

    function unpad_DES (p_string in varchar2) return varchar2 is

    -Removes from p_string upholstered characters (1 to 8)

    pad_length pls_integer;

    Start

    pad_length: = length (p_string);

    pad_length: = pad_length - ascii (substr(p_string,pad_length,1));

    Return substr(p_string,1,pad_length);

    end;

    Start

    l_data: = p_str;

    dbms_obfuscation_toolkit. DESDecrypt (input_string-online l_data, key_string => 'MagicKey', decrypted_string-online l_data);

    Return unpad_DES (l_data);

    end;

    Concerning

    Etbin

  • Creating shadows of text - is there a function for this?

    I would like to create a shadow effect for my text in my headers.  Is there a function for this?

    In the current version of Muse you can only apply effects to pixelated fonts (fonts). If you need a shadow to the other fonts effect, you can do the following:

    1. create a paragraph style, name it as you need (for example shadow_paragraph) and assign to the text element you need to be affixed.

    2. go in the Page Properties > metadata > HTML customized to(Or insert HTML to a master page)

    3 insert a

  • Is there a function to get the name of the days?

    Hello
    I use 10.2.0.1.0 oracle
    Is there a function to obtain the day of the week?
    as I need to get Sunday, Monday, Tuesday, Saturday.
    I know that I can use union and select the name from a double.
    But I just want to know if there is another way.
    I need to show 7 days in a poplist in my form, it's the requirement

    Thank you
    SELECT TO_CHAR(TRUNC(SYSDATE ,'DAY')+Level-1,'DAY') DAYS FROM DUAL connect by Level<8
    SQL> /
    
    DAYS
    ---------
    SUNDAY
    MONDAY
    TUESDAY
    WEDNESDAY
    THURSDAY
    FRIDAY
    SATURDAY
    
  • is there any function in the osb to generate a unique number in proxy

    is there any function in the osb to generate a unique number in proxy

    FN - bea: uuid()

    The function fn - bea: uuid() returns a universal unique identifier. The function has the following signature:

    FN - bea: uuid() as XS: String

    You can use this function in the pipeline of proxy to generate a unique identifier. You can insert the unique identifier that is generated in an XML document in the form of element. You are unable to generate a unique identifier to the system variable. You can use this to edit a message payload.

    For example, suppose you want to generate a unique identifier to add it to a message for follow-up purposes. You can use this function to generate a unique identifier. The function returns a string that you can add it to the SOAP header.

  • is there a function to apply all in capital letters of a Word, sentence or paragraph?

    is there a function to apply all in capital letters of a Word, sentence or paragraph? If I have a written sentence and I want to do all of the capital of the letter, including at - it a setting or click solution for this? Thank you

    Commands > text > case [operation]

    Does that on a text field based, however, not a selection of text characters

  • There is function to this day do not using aggregates

    I use the Group table and a detailed table
    I have the time hierarchy, which is the lowest level to date. I have for sale
    created for a year (CDA) comparison with function AGO. He
    works well.

    BUT, I want to accelerate, so I used aggregates. I created new
    table time grouped by MONTHS and table corresponding agg_SALES. I have
    established connections and the mapped fields. It works OK for
    normal queries, this means that my questions to use month level
    aggregates. BUT when I add YAGO measure or measures of the CDA in the query, it will
    then the table sales whose grain is date.

    How can I force BI Server to use the AGO with aggregates?

    I use OBIEE 10.1.3.4

    Thank you

    Ishaq

    (Question originally shot of ITtoolbox and published by Gorazd)

    Hello

    By defintion TODATE and function there is need the lowest granularaty of the function. Alternativily, you can write you own function on the database using your aggregates. and use the EVALUATE function in OBIEE to push to the interface.

    Concerning

    John
    http://obiee101.blogspot.com/

  • Is there any function of linear programming in numbers version 3.6.2?

    I know there is no function of linear programming in numbers until 2011 (read all the old posts). I want to know is there any moment or Apple is still quite complacent to do something. In my class, I introduce spreadsheets and I choose to submit in numbers instead of excel, now I can't change my choice if I have to then I have to take excel classes and change all my previous worksheets which is equivalent to a failed in the class and object of repetition. I'm the only one facing this problem because I am the misfortunate, who made a mistake to love Mac. And in if he makes Apple feel better hear it "I manually fix (just had to learn any other way) linear programming models and then draw, while windows users use the built-in, they. Thank you Apple

    If you try to get the settings for a better line did I suggest to use linest() function:

    LINEST() is a function of linear estimation.  I suggest that spend you some time to familiarize yourself with the functions that offers numbers by typing the equal sign in any cell, and then looking through the list of functions on the right.

    To use the line eating function do something as show above, enter the data X and Y in the columns, as shown.  To get the slope (m in my example), select cell E2 and enter the formula:

    INDEX (LINEST (B2:B11, a2:a11, false, Nonzero-y-Intercept), 0)

    shortcut for this is:

    E2 = index (LINEST (B2:B11, a2:a11, Nonzero-y-Intercept, true), 0)

    to get the y:

    E3INDEX (LINEST (B2:B11, a2:a11, false, Nonzero-y-Intercept), 1).

    There are additional stats in the table linest() returns.  Read about it in the built-in help

    I hope this helps

  • Is there a function of block note in Firefox where I can write text/notes and save them in the own record here?

    I have a Dell Inspiron 1525 and if there is a note pad/text tab I don't remember. Firefox system has function that I can take and save notes with everything in, let's say, I created an affiliate campaign?

    Try FoxNotes.

  • Is there a function called startPropagation...

    Hello

    I have prevent execution of menu items using the script below (source: prevention of execution of menu items |) IndiSnip [InDesign® extracts])

    #targetengine disableItems
    var disableNew = app.menuActions.itemByID(257).addEventListener("beforeInvoke", stopMenuEvent);
    function stopMenuEvent(stopMenuEvent){
        stopMenuEvent.stopPropagation();
        stopMenuEvent.preventDefault();
    }
    
    

    I want to access the same menu item without closing the application InDesign. There is a function called startPropagation()?

    Kindly advice.

    Thanks in advance,

    Sanon

    Hello Sanon,

    Name of the event as the number of line 3,

    #targetengine disableItems
    var disableNew = app.menuActions.itemByID(257).addEventListener("beforeInvoke", stopMenuEvent);
    disableNew.name = "name"
    function stopMenuEvent(stopMenuEvent){
        stopMenuEvent.stopPropagation();
        stopMenuEvent.preventDefault();
    }
    

    Then use the line delete event

    app.menuActions.itemByID(257).eventListeners.item("name").remove()
    

    Kind regards

    Cognet

  • Is there a function "when used"?

    Bridge (CC) has a function "when used" for the linked files?

    If I have a graph related to several different InDesign documents, can bridge show me where the graph is used?

    Thank you.

    Hi Kalaka,

    I am not afraid. Bridge cannot display a list of files related to an identity document given when you target, which is in fact thanks to engineers in ID. He has no idea where you might have used each file. Be nice if there was something that could track down, wouldn't it?

  • Is there a function of executives similar to the elements?

    I'm moving to the full Photoshop elements, and I'm trying to understand if there is something similar to features frames in the full Photoshop CC.  In the elements, you can add several images to the canvas and then drag and drop the images in each frame. You can then resize and reposition in the framework (as well as resize and reposition the framework itself).  I can certainly create layers of the image, but they are static.  The functionality of the elements was dynamic.

    What I'm trying to do is to create a model for a collage where I can easily fall into different images and then reuse the template for a different set of images.

    Is there something like this in full Photoshop, or did requires a plug-in?

    Thank you!

    I give you this bit of thinking. It's much simpler than I thought.

    Create a shape of the frame. Place the image on the layer above the form. Place the cursor between the two layers and hold down alt Windows or opt on Mac, and then click. This will cut out the image in the form.

    At this point, the shape and the image are always individual, allowing you to scale, move, or rotate one without affecting the other.

    You can create a group, create a dynamic object or link the two layers to be handled together.

    I have not tried linking a clipped front layer, so that links may or may not work. Group and smart objects will be however.

  • Is there a function in Oracle Spatial 11 g moving/translation of geometry?

    Hello everyone,

    I am new to Oracle Spatial. I wanted to know if there is any function to move/translate a geometry in Oracle Spatial 11 g? PostGIS is a function named ST_Translate to achieve the same.

    Kind regards

    Shiva Shankar

    Hello

    There's a SDO_UTIL. Function AFFINETRANSFORMS in Package SDO_UTIL (utility)

    Note, that Simon Greener & Siva Ravada have published an excellent book ("application and Oracle Spatial extension") which contains (in Chapter 7) examples of easy to use this packages:

    http://www.packtpub.com/applying-and-extending-Oracle-Spatial/book

    Luke

Maybe you are looking for