How to pass variables to repository for the title of obiee 11 g

all I am trying to create a reprot and format of this report is

TEST REPORT
range of month: 04/01/2012-04/30/2012.

How can we get this date range in view of the title.
Any suggestions?

Hello

For session variables:
@{biServer.variables ['NQ_SESSION.variablename']}

For variables of repository:
@{biServer.variables ["variablename"]}

Try this syntax in the view title it should work.

Tags: Business Intelligence

Similar Questions

  • Do not mix variables of substitution for the title area and JQuery Tabs

    Hello

    I've implemented Jquery tabs to the Apex 4 using this great piece of Patrick Wolf:

    Re: New themes in APEX 4 does not not with JQuery tabs

    However, there is a problem and I don't know if it's a bug or it is me who is missing something... If I put substitution variables, as in the title of the subregion (e.g. customer and P10_CUSTOMER_NAME.), the substitution variable do not get overridden and the text is displayed as in the tab.

    The variable is properly developed in the region title itself (which appears inside the tab). Simple example:
    +----------------------------+
    | Customer &P_CUSTOMER_NAME. |  <--- TAB
    |                            +------------
    |
    | +----------------------------------
    | | Customer Luis                     <-- SUB-REGION TITLE
    | +----------------------------------
    | |
    | |
    The header entry is defined as:
    <li><a href="##REGION_STATIC_ID#-tab-#SUB_REGION_ID#">#SUB_REGION_TITLE#</a></li>
    Shouldn't the chain of substitution #SUB_REGION_TITLE # be converted to the title of region with the extended substitution variables?

    No work around?

    Thank you
    Luis

    Luis

    However, there is a problem and I don't know if it's a bug or it is me who is missing something... If I put substitution variables, as in the title of the subregion (e.g., client & P10_CUSTOMER_NAME) the substitution variable does not get overridden and the text is displayed as in the tab.

    Confirmed. Looks like a bug. Probably substitute on the title (sub-) region is not performed until the region is rendered, but the subregion headers list is generated before that.

    No work around?

    All I can think so far uses a dynamic/JavaScript Action to change the label of the tab when the page is rendered.

  • Unable to show the Images for the title of OBIEE

    Hi all

    I am trying to add an image in the view of the title of the interface of answers.
    I placed my image to JPEG in 2 following paths.

    C:\OracleBI\oc4j_bi\j2ee\home\applications\analytics\analytics\res\s_oracle10\images
    and
    C:\OracleBI\web\app\res\s_oracle10\images

    I restarted the server oc4j, biserver & presentation...

    But I'm not able to view the image. It shows a Red X botton.
    I checked my Internet Explore settingg. All right.
    Please guide me.

    Concerning
    Clara Jaan

    Hi Jaan,

    Yes, it supports the .gif extension too. Please check the accurate so that it would help others.

    Rgds,
    DpKa

  • How to pass Variable PL/SQL to the Argument of the Planner data

    Hi all. If possible, I would spend 2 dates in a pl/sql stored procedure arguments in a DBMS Scheduler position. Is this possible? My attempts have failed so far so any help would be appreciated.

    My pl/slq is shown below. The dates are hard coded for testing purposes. In fact, they'll be in the pl/sql stored procedure input parameters. Is there a way of coding the variables containing the dates and use variables in the 4th and 5th arguments Planner?



    declare

    l_today_date DATE;
    l_yester_date DATE;


    Start

    l_today_date: = July 15, 2011 "; -$ hardcoded to test only
    l_yester_date: = June 1, 2011 "; -$ hardcoded to test only

    CASE
    WHEN l_process_name = "ENTRY" THEN
    BEGIN

    dbms_scheduler.create_job (job_name = > 'LOAD_INPUT_SCHED_TST',)
    job_type = > 'PLSQL_BLOCK ',.
    job_action = > ' start
    PKG_INPUT_SCHED_TEST.sp_load_input ("LOAD_INPUT","TST ', CURRENT_TIMESTAMP, l_today_date, l_yester_date);
    end;',
    start_date = > sysdate + 1/24 / 59,
    enabled = > TRUE,
    auto_drop = > TRUE,
    Comments = > 'LOAD DATA INPUT');


    END;
    END CASE;

    END;
    /

    Hello

    It is a question of grammar of PL/SQL string. Your string contains the literal "l_today_date" instead of the concatenation of the value - which is probably what you expect.

    Try this instead

    job_action => ' begin
    PKG_INPUT_SCHED_TEST.sp_load_input ("LOAD_INPUT","TST ', CURRENT_TIMESTAMP,"'| l_today_date | ") ','' ' || l_yester_date | " ') ;
    end;',

    You can also do this by using job_type-online procedure_stockee, job_action-online 'PKG_INPUT_SCHED_TEST.sp_load_input', number_of_arguments-4 and then by 4 calls to set_job_argument_value before activating the work online.

    Hope this helps,
    Ravi.

  • How to assign values to the nested table and passes as a parameter for the procedure?

    How to assign values to the nested table and passes as a parameter for the procedure?

    Here are the object and its type

    create or replace type test_object1 as an object
    (
    val1 varchar2 (50).
    val2 varchar2 (50).
    VARCHAR2 (50) val3
    );


    create or replace type test_type1 is table of the test_object1;


    create or replace type test_object2 as an object
    (
    val1 varchar2 (50).
    val2 varchar2 (50).
    VARCHAR2 (50) val3
    );


    create or replace type test_type2 is table of the test_object2;


    GRANT ALL ON test_object1 to PUBLIC;


    GRANT ALL ON test_type1 to PUBLIC;


    GRANT ALL ON test_object2 to PUBLIC;


    GRANT ALL ON test_type2 to PUBLIC;

    Here is the table object type:

    create the table test_object_tpe
    (
    sl_num NUMBER,
    Description VARCHAR2 (100),
    main_val1 test_type1,
    main_val2 test_type2
    )


    NESTED TABLE main_val1 STORE AS tot1
    NESTED TABLE main_val2 STORE AS earlier2;


    -----------------------------------------------------------------------------------------------------------

    Here is the procedure that inserts values into the nested table:

    PROCEDURE INSERT_TEST_DATA (sl_num in NUMBER,
    Description in VARCHAR2,
    p_main_val1 IN test_type1,
    p_main_val2 IN test_type2
    )
    IS
    BEGIN

    FOR rec in p_main_val1.first... p_main_val1. Last
    LOOP

    INSERT INTO xxdl.test_object_tpe
    (
    sl_num,
    Description,
    main_val1,
    main_val2
    )
    VALUES
    (
    sl_num
    description
    test_type1 (test_object1)
    p_main_val1 .val1 (CRE),
    p_main_val1 .val2 (CRE),
    p_main_val1 .val3 (rec)
    )
    )
    test_type2 (test_object2 (p_main_val2 .val1 (CRE),
    p_main_val2 .val2 (CRE),
    p_main_val2 .val3 (rec)
    )
    )

    );

    END LOOP;

    commit;

    END INSERT_TEST_DATA;

    -------------------------------------------------------------------------------------------

    Here are the block anonymoys what values attributed to the object type and pass values in the procedure:

    Set serveroutput on;

    declare

    p_sl_num NUMBER: = 1001;
    p_description VARCHAR2 (50): = 'Test Val1;

    inval1 test_type1: = test_type1();
    inval2 test_type2: = test_type2();

    Start


    inval1 (1) .val1: = "testx1";
    inval1 (1) .val2: = "testx2";
    inval1 (1) .val3: = "testx3";

    inval2 (1) .val1: = "testy1";
    inval2 (1) .val2: = "testy2";
    inval2 (1) .val3: = "testy3";

    CSI_PKG. INSERT_TEST_DATA (sl_num = > p_sl_num,)
    Description = > p_description,
    p_main_val1 = > inval1,
    p_main_val2 = > inval2
    );

    end;
    /
    Someone can correct me.

    Thank you
    Lavan

    Thanks for posting the DOF and the sample code but whenever you post provide your Oracle version 4-digit (result of SELECT * FROM V$ VERSION).
    >
    How to assign values to the nested table and passes as a parameter for the procedure?
    >
    Well you do almost everything bad that could be hurt.

    Here is the code that works to insert data into your table (the procedure is not even necessary).

    declare
    p_sl_num NUMBER := 1001;
    p_description VARCHAR2(50) := 'Testing Val1';
    inval1 test_type1 := test_type1();
    inval2 test_type2 := test_type2();
    begin
    inval1.extend();
    inval1(1) := test_object1('testx1', 'testx2', 'testx3');
    inval2.extend();
    inval2(1) := test_object2('testy1', 'testy2', 'testy3');
    
    INSERT INTO test_object_tpe
    (
    sl_num,
    description,
    main_val1,
    main_val2
    )
    VALUES
    (p_sl_num, p_description, inval1, inval2);
    commit;
    end;
    /
    

    See example 5-15 making reference to an element of nested Table Chapter 5 using PL/SQL collections and records in the PL/SQL doc
    http://docs.Oracle.com/CD/B28359_01/AppDev.111/b28370/Collections.htm#CJABEBEA

    1. you don't even have the procedure because it is a simple INSERTION in the table you can do directly (see my above code)

    inval1(1).val1 := 'testx1';
    

    Since you have not yet created all the elements, there is no element 1 "inval1". You need EXTEND the collection to add an element

    inval1.extend();
    

    And then, there is an empty element, but "inval1" is a container for objects of type 'test_object1' not for scalars as "val1", "val2", and "val3".
    If you can not do

    inval1(1).val1 := 'testx1';
    

    You must create an instance of 'test_object1 '.

    inval1(1) := test_object1('testx1', 'testx2', 'testx3');
    

    And so on for the other collection

    You don't need the procedure (as my code example shows), but once you fill in the variables correctly it will work.

  • Variable repository for the last month

    Hi gurus,

    I have a requirement to create a repository for the last month variable first day. We have no dimension of the day.

    i, e I should get 1 day last month.

    example: today is 29/07/2009 the variable repository should give me on 01/06/2009.
    If I am on 08/01/2009 the repository variable should give me 01/07/2009.

    Thanks adavance.

    Hello

    There are several ways to find it,
    The following query in the initialization block gives you the result want.

    Select last_day (add_months (sysdate-2)) + 1 double

    Concerning
    Kishore Guggilla

  • How to pass an xml CDATA in the string element when OSB call a webservice?

    How to pass an xml CDATA in the string element when OSB call a webservice?

    I have a business service (biz) this route to exploitation of a Web service.

    An example of this legacy Web service request:
    < soapenv:Envelope xmlns:soapenv = 'http://schemas.xmlsoap.org/soap/envelope/' xmlns: ex = "example" >
    < soapenv:Header / >
    < soapenv:Body >
    < ex: run >
    < ex: arg > <! [CDATA [< searchCustomerByDocumentNumber >
    < documentNumber > 12345678909 < / documentNumber >
    [[< / searchCustomerByDocumentNumber >]] > < / ex: arg >
    < / ex: run >
    < / soapenv:Body >
    < / soapenv:Envelope >

    type ex: arg is a string.

    How to pass this structure CDATA webservice in OSB?

    Steps to resolve this problem:
    1 create an XML schema. For example:


    elementFormDefault = "unqualified" >


              
                   
                        
                             
                             

                        

                        
                             
                        

                   

         

         

         
         

    With this XSD, XML can be generating:


    documentNumber

    2 create an XQuery query to create a ComplexType searchCustomerByDocumentNumber. For example:
    (: pragma bea: element global-element-return = "searchCustomerByDocumentNumber" location = "searchCustomerByDocumentNumber.xsd" ::))

    declare namespace xf = "http://tempuri.org/NovoSia/CreateSearchCustomerByDocumentNumber/";

    declare function xf:CreateSearchCustomerByDocumentNumber($documentNumber_as_xs:string)
    as {(searchCustomerByDocumentNumber)}

    {$documentNumber}

    };

    declare the variable $documentNumber as XS: String external;

    XF:CreateSearchCustomerByDocumentNumber ($documentNumber)

    3. in your step in proxy pipeline add to assign the created the XQuery function call from the number of the document of your payload.
    Assign to a variable (for example: called searchCustomerByDocumentNumberRequest)

    4. create an another Transformation of XQuery (XQ) to create a request to the existing Web service. For example:
    {fn - bea: serialize ($searchCustomerByDocumentNumberRequest)}

    For more information about xquery Serialize function:
    41.2.6 fn - bea: serialize()
    You can use the fn - bea: serialize() function if you need to represent an XML document as a string instead of as an XML element. For example, you can share an XML document through an EJB interface and the EJB method takes the string as an argument. The function has the following signature:

    FN - bea: serialize($input as item()) as xs: string

    Source: http://docs.oracle.com/cd/E14571_01/doc.1111/e15867/xquery.htm

  • How to pass variable frame 1 throughout a swf file?

    Hi guys,.

    How to pass variable frame 1 throughout a swf file? -Including executives more later and their children?

    Thanks in advance

    Mike

    I'm not sure what you mean by variable pass in a swf, but to make it available throughout the timeline you place in a layer that extends along the timeline.

  • How to get back my data for the health and the watch Apps once I've restored my phone?

    How to get back my data for the health and the watch Apps once I've restored my phone?

    From the backup, you're going to be restoration.

    If you back up to iTunes, make sure that it is an encrypted backup.

  • I need to create a table of contents in iPages but I want only one word for the title, not the line of holes. Or, how can I change the contents of the table? Thank you!

    I need to create a table of contents in iPages but I want only one word for the title, not the line of holes. Or, how can I change the contents of the table? Thank you!

    Yes, you can have a one word title, by assigning a paragraph style title to this one word. No, you cannot change the text in a Table of contents, but you can change paragraph style font attributes (line) and add for example, a head of points between the types of OCD paragraph and page numbers. No part of the table of contents will not provide hyperlinks in exported PDF documents.

    When you look up in the menu bar, you can see the word iPages, or simply Pages. There is no product of iPages.

  • my phone asking me always Apple ID password of the account that I did not create. I have this account in my settings, but I don't know how to remove it. Thanks for the reply.

    my phone asking me always Apple ID password of the account that I did not create. I have this account in my settings, but I don't know how to remove it. Thanks for the reply.

    There are several places an identifier Apple is used on an iPhone.

    • If it's the Apple of a former owner of the phone ID, and it is in settings/iCloud grace to find my iPhone activated, ONLY the person who set up the Apple ID can remove (see: find my iPhone Activation Lock: a mechanism of extraction of the previous owner)
    • If it's the Apple ID in Settings/iTunes & App Store just log out, then log back with the correct ID of Apple.
    • Do the same for iMessage and Facetime, if that is where the Apple ID is used.
    • If he is asked during the updating of the apps means that applications have been purchased or downloaded using this code from Apple. To resolve this issue, you must remove the application, and then buy with your Apple ID.
  • How to make a good UI for the selection of the channels with DAQmx

    A lot of my Labview programming accompanied verisons them previous LabVIEW (pre Labview 7), and there are a ton of new features I am digesting (currently using Labview 8.2).

    My question is (in general), how people schedule their user interface for the selection of channels and others when using hardware DAQmx?  What I have in mind is a system compacDAQ with a number of modules.  The user would be able to choose which channels to watch.  With the help of MAX as part of this process seems counter intuative and somewhat static (yes I know you can change out there, but it feels more like something you would use for something that doesn't really change much).  I wish that all the UI within the VI.

    Programmers use the task of creating screw for this or something else?

    Thanks in advance.

    ChuckNRC,

    I tend to avoid using MAX and create all my channels/tasks using the DAQmx functions.  There are also having some DAQmx features that allow you to save/remove channels, tasks and scales to MAX.

  • How can I recover my pc for the first time that I bought?

    Hello
    How can I recover my pc for the first time that I bought? because my pc is so slow... I have a compaq laptop cq61... and I want to set up the first time... How can I?  I don't have a recovery disk because when I bought it dosnt have a recovery in it disc. Please help me. Thank you

    Hello

    I'm happy to help you

    Glancing at the screen shot you posted, your looks of partition fine recovery (recovery (D).

    Save your files on an external hard drive or flash drive (depending on how many you have).

    Once that is done, disconnect all connected to your PC, but the AC adapter.

    Start the PC and the HP welcome screen, press the F11 key to start the Recovery dialog box and follow the prompts.

    It should take 15 to 30 minutes and your PC needs to be restored to its factory settings.

    Then just reinstall all programs and files that does not come with the PC.

    You will need the files or the installation of program diskettes. You cannot back up installed programs and reinstall them using a backup.

    Paul

  • How can I change an icon for the device in Windows 7?

    How can I change an icon for the device in Windows 7?

    In 'Control Panel\Devices and printers' I want to change the icon of a device that there are listed.

    Hi Dave Tavres

    I'm afraid to say that you would not be able to change this icon.
    This icon is provided by the hardware manufacturer, and is included in the drivers and architecture has no Windows allows to change this information.
    However, you can use the third party applications to change. Use your favorite search engine to find on the Internet.

    Important note: This response contains a reference to third party World Wide Web site. Microsoft provides this information as a convenience to you. Microsoft does not control these sites and no has not tested any software or information found on these sites; Therefore, Microsoft cannot make any approach to quality, security or the ability of a software or information that are there. There are the dangers inherent in the use of any software found on the Internet, and Microsoft cautions you to make sure that you completely understand the risk before retrieving any software from the Internet.

    It will be useful.

    Thank you, and in what concerns:
    Shekhar S - Microsoft technical support.

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • I tried to delete some unused programs of my had drive and the PC deleted wlidcl.dll. How can I get this program for the PC works as before?

    I tried to delete some unused programs of my had drive and cleared PC wlidcl.dll How can I get this program for the PC works as before? The PC works now as slow as a snail climbs.  What do you suggest me? Thank you

    Norman.--

    E-mail address is removed from the privacy *.

    original title: wlidcl.dll

    Hello

    I suggest to follow the steps below and check if the problem persists:

    Not one:

    Uninstall Windows Live essentials followed the procedure described in the link:

    http://Windows.Microsoft.com/en-us/Windows7/uninstall-or-change-a-program

    Step b:

    Download and install Windows Live essential from the link:

    http://explore.live.com/Windows-Live-Essentials?OS=other

Maybe you are looking for