Go url in obiee 11.1.6.0

Hi All,
I am trying to use the following go url in obiee 11.1.6.0 for drill down report.Someone it is able to pass only one parameter till P3. The P4 value shows till Rev. I tried to switch the value in the parameter it only pass one parameter either Common Type Code or Fiscal Year. I have switched the value , it only shows the drill down report with value till P3. P4 value is shown till Rev.
Is this a bug in 11.1.6.0?
'<a href=http://dellpc-275:7001/analytics/saw.dll?PortalGo&path=/shared/US/EnfDT&options=dr&Action=Navigate&P0=2&P1=eq&P2="Rev%20Facts"."Common%20Type%20Code"&P3='||REPLACE("Rev Facts"."Common Type Code",' ','%20')||' &P4="Rev%20Facts"."Fiscal%20Year" &P5'||REPLACE("Rev Facts"."Fiscal Year",' ','%20')|| '>'||CAST(COUNT("Rep Facts"."Emp Id") AS CHAR)||'</a>'
Thanks,
Virat

I have use this go url command in the edit column area of the field and changed the data format as html in column properties. The drill down report takes only the first parameter, the second parameter is not passed. It does not show any error. I tried using the action link--- navigation to bi for hierarchical column report to drill down to detail, it does not work either.
Thanks,

Similar Messages

  • BIP Report access via URL in OBIEE

    Experts, I want to access a BIP report via URL in OBIEE. Here are the details. I already have Answers request with 'Is Prompted' filters. I have a dashboard prompt. The request works according to the values given in the prompt. Say, the user gives some filter conditions in the prompt and the result returns 10 records.Now, due to some business requirements, I want the same result set(10 records) to be opened in a new window. For that we thought of using BIP and invoking this BIP report from OBIEE. Any ideas how can we accomplish this.
    thx,
    parag

    I mean to say that....assume your first view might be pivot report,then you create a BIP report from answers and place the view just below the pivot view in the dashboard.
    Globally you give those prompts ,so that when you give values....it applies to both the views in the dashboard.
    Suggest the end user instead of pop up....you can view both views at a single instance :) .......Give a meaning full name for that BIP report according to what you want to achieve
    =====================================================================
    EDITED:
    you can use go url for your pop-up .....but you need to pass the variable values of the prompt to the go-url so you can achieve your requirement.
    let the end user pass dynamically any values multiple times but the same should be passed to the go-url to get what you want.
    ========================================================================
    EDITED
    I suppose YES we need to pass all the 5 prompt values to BIP report......if user gives 3 values then it filters on those 3 values and only 3 will be passed to BIP i suppose.
    Never tried this passing 3 values and next session passing 2 values.....Play around with your requirement you will achieve it.
    hope all questions are answered.Mark Points.
    By,
    KK
    Edited by: Kranthi on Jan 7, 2011 9:06 PM

  • Creating an Opaque view for generating the Action Link URL in OBIEE EBS int

    Do we have to Creating an Opaque view for generating the Action Link URL in OBIEE Oracle E-Business Suite integration if we are not using BI Applications(DAC). We built our Repository on Materialized views we were using with Discoverer so I'm not sure if we have to do the part that creates an Opaque view in our integration of EBS 11i with OBIEE.
    Thanks in advance.
    Leo

    Hi Leo,
    This is an example from an standard Oracle repository:
    select header_id , line_id, fnd_run_function.get_run_function_url(
    CAST(fnd_function.get_function_id('ISC_ORDINF_DETAILS_PMV') AS NUMBER),
    CAST( 'VALUEOF(NQ_SESSION.RESP_APPL_ID)' AS NUMBER),
    CAST( 'VALUEOF(NQ_SESSION.RESP_ID)' AS NUMBER),
    CAST( 'VALUEOF(NQ_SESSION.SEC_GROUP_ID)' AS NUMBER),
    'HeaderId=' || header_id ||'&pFunctionName=ISC_ORDINF_DETAILS_PMV&pMode=NO&pageFunctionName=ISC_ORDINF_DETAILS_PMV',
    null ) LINK
    FROM isc_book_sum2_f
    They use it in an opaque view, so you can reference session variables for login based on your responsibility.
    Good Luck,
    Daan Bakboord
    http://www.obi-forumlive.nl/

  • Issue passing dynamic paramters using GO URL in OBIEE 11g

    Hi All,
    I am trying to implement a GO URL and pass 6 dynamic paramters to the target dashboard page.
    The issue is that, When I navigate from the column which is having GO URL, It is just passing the first parameter among the 6 parameters.
    URL:
    '<a href=http://servername/analytics/
    saw.dll?GO&path=/shared/xxx/aa%20bb/report%20one
    &Action=Navigate&P0=6&P1=eq&P2="Fact%20-%20xxx".ID1&P3='||CAST("Dim - Abc"."One ID" AS CHAR)||'&P4=eq&P5="Fact%20-%20xxx".ID2&P6='||CAST("Dim - Abc"."Two ID" AS CHAR)||'&P7=lt&P8="Fact%20-%20xxx".DATE&P9='||CAST(TIMESTAMPADD(SQL_TSI_DAY,1,"Time"."Day") AS CHAR)||'&P10=eq&P11="Fact%20-%20xxx"."Three%20ID"&P12='||CAST("Dim - Abc"."Three ID" AS CHAR)||'&P13=ge&P14="Fact%20-%20xxx".DATE1&P15='||CAST(TIMESTAMPADD(SQL_TSI_DAY,1,"Time"."Day") AS CHAR)||'&P16=eq&P17="Time".Day&P18='||CAST("Time"."Day" AS CHAR)||'style="text-decoration:none;">'||"Dim - Abc.Name"||'<--/a>'
    When I try with actual values for all the 6 parameters, The parameters are being passed perfectly.
    Also I have tried passing each parameter individually in the same syntax as in the above URL and it is working fine.
    Also I have tried the new syntax of GO URL i.e.,
    '<a href=http://servername/analytics/
    saw.dll?GO&path=/shared/xxx/aa%20bb/report%20one
    &Action=Navigate&col1="Fact%20-%20xxx".ID1&val1='||CAST("Dim - Abc"."One ID" AS CHAR)||'&op1=eq&col2="Fact%20-%20xxx".ID2&val2='||CAST("Dim - Abc"."Two ID" AS CHAR)||'&op2=eq&col3="Fact%20-%20xxx".DATE&val3='||CAST(TIMESTAMPADD(SQL_TSI_DAY,1,"Time"."Day") AS CHAR)||'&op3=lt&col4="Fact%20-%20xxx"."Three%20ID"&val4='||CAST("Dim - Abc"."Three ID" AS CHAR)||'&op4=eq&col5="Fact%20-%20xxx".DATE1&val5='||CAST(TIMESTAMPADD(SQL_TSI_DAY,1,"Time"."Day") AS CHAR)||'&op5=ge&col6="Time".Day&val6='||CAST("Time"."Day" AS CHAR)||&op6=eq'style="text-decoration:none;">'||"Dim - Abc.Name"||'<--/a>'
    Even with this syntax, The issue is same that I am only able to pass the first filter.
    Anyone please help.
    Thanks in Advance.

    To avoid encoding problems use POST method. Here is js example for OBIEE 10g, but I bellieve you will find similar XML syntax in 11g.
    function getGoXML(P){
         var goXML = '<sawx:expr xmlns:sawx="com.siebel.analytics.web/expression/v1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="sawx:logical" op="and">';
         for (var i=0; i<P.length-1; i=i+2){
              goXML = goXML + '<sawx:expr xsi:type="sawx:comparison" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" op="equal">';          
              goXML = goXML + '<sawx:expr xsi:type="sawx:sqlExpression">' + P[i] + '</sawx:expr>';
              goXML = goXML + '<sawx:expr xsi:type="sawx:untypedLiteral">' + P[i+1] + '</sawx:expr>';
              goXML = goXML + '</sawx:expr>';          
         goXML = goXML + '</sawx:expr>';
         return goXML;
    function dashboardPageNav (navParams){     
         var tForm = saw.createForm("customNavForm");
         tForm.action = saw.commandToURL("Dashboard");
         saw.addHiddenInput(tForm, "PortalPath", navParams.portalPath);
         saw.addHiddenInput(tForm, "Page", navParams.portalPage);
         saw.addHiddenInput(tForm, "Action", "Navigate");
         saw.addHiddenInput(tForm, "StateAction", "NewPage");
         saw.addHiddenInput(tForm, "P1", "dashboard");
         saw.addHiddenInput(tForm, "P0", getGoXML(navParams.P));
         tForm.submit();
    dashboardPageNav({
         portalPath: '<portal path>',
         portalPage: '<page name>',
         P: new Array(                         
              '<param1 name>', '<param1 value>',
              '<param2 name>', '<param2 value>',
              '<param3 name>', '<param3 value>',
              '<param4 name>', '<param4 value>'
    });

  • How to know the Em url in OBIEE 11g

    Hi Team,
    Can you please let me know the procedure to find out the URL for EM.
    I have installed 11.1.1.6 version.
    I am looking out for the port no.
    http://localhost:(How to get this port no)/em...Tried with 7001.but no luck.
    Thanks,
    Riyaz Ali

    Hi Riyaz
    The Port number is the AdminServer Port Number of the domain. This is where the EM app will be targetted and deployed. If you choose all defaults and have like a Simple Installation of BI Software, then you should have one Server named AdminServer running at default Port: 7001.
    To really confirm exactly, open you config.xml file which is under your domain root folder/config/config.xml file. Search for "em.ear" and see to which server it is targetted, generally it will be AdminServer (<target> tag entry). Now from the top search for "AdminServer" in the same file. You should see an entry like shown below. SSL Port is 7002. If you do NOT see <listen-port> tag, it means it is using DEFAULT Port which is 7001. But if you do see this tag, use that port number. Do not get confused with <ssl> port. Every domain have normal and ssl ports and most of the times we use normal port.
      <server>
        <name>AdminServer</name>
        <idle-connection-timeout>1000</idle-connection-timeout>
        <period-length>200000</period-length>
        <idle-periods-until-timeout>20</idle-periods-until-timeout>
        <dgc-idle-periods-until-timeout>21</dgc-idle-periods-until-timeout>
        <ssl>
          <name>AdminServer</name>
          <hostname-verification-ignored>true</hostname-verification-ignored>
          <listen-port>7002</listen-port>
        </ssl>
        <machine>RJEGGA</machine>
        <listen-address></listen-address>
        <server-diagnostic-config>
          <name>AdminServer</name>
          <diagnostic-context-enabled>true</diagnostic-context-enabled>
        </server-diagnostic-config>
      </server>So, try, http://youradminserverhost:adminserverport/em
    NOW, if you get like Page Not Found, or do not see entry from em.ear file in your config.xml file, this means your domain is not having EM app deployed.
    Thanks
    Ravi Jegga

  • Cant we do group and subtotal on a column which is having Go-URL in OBIEE

    Hi,
    I have a scenario that a report should show subtotal on amount column for different sales reps. At the same time, I have used GO URL for that sales rep column.
    In the GO URL Code, I have passed 4 columns as parameters. So the report is doing grouping on those columns also and showing subtotals at those column levels.
    Please help me out.
    Thanks,
    Siri

    Try these:
    SUM(SUM("Activity Metrics"."# of Closed Activities" by Employee."Employee Name") by task result)
    or
    SUM("Activity Metrics"."# of Closed Activities" by Employee."Employee Name"||task result)
    Mike L

  • OBIEE 11g - Customizing/Changing the analytics URL

    Hi All,
    My requirement is as below.
    Original URLs:
    http://localhost:9704/analytics
    http://localhost:7001/em
    http://localhost:7001/console
    But as per the requirement we want to change the URLs as below.
    http://localhost:9704/appname/analytics
    http://localhost:7001/appname/em
    http://localhost:7001/appname/console
    Kindly help. Thanks in advance.

    Refer to : http://obiee-oracledb.blogspot.com/2011/03/changing-default-url-of-obiee.html
    Also before making changes ask support.oracle.com
    Mark if helps.!
    Thanks,
    SVS

  • How to pass session variable value with GO URL to override session value

    Hi Gurus,
    We have below requirement.Please help us at the earliest.
    How to pass session variable value with GO URL to override session value. ( It is not working after making changes to authentication xml file session init block creation as explained by oracle (Bug No14372679 : which they claim it is fixed in 1.7 version  Ref No :Bug 14372679 : REQUEST VARIABLE NOT OVERRIDING SESSION VARIABLE RUNNING THRU A GO URL )
    Please provide step by step solution.No vague answers.
    I followed below steps mentioned.
    RPD:
    ****-> Created a session variable called STATUS
    -> Create Session Init block called Init_Status with SQL
        select 'ACTIVE' from dual;
    -> Assigned the session variable STATUS to Init block Init_Status
    authenticationschemas.xml:
    Added
    <RequestVariable source="url" type="informational"
    nameInSource="RE_CODE" biVariableName="NQ_SESSION.STATUS"/>
    Report
    Edit column "Contract Status" and added session variable as
    VALUEOF(NQ_SESSION.STATUS)
    URL:
    http://localhost:9704/analytics/saw.dll?PortalGo&Action=prompt&path=%2Fshared%2FQAV%2FTest_Report_By%20Contract%20Status&RE_CODE='EXPIRED'
    Issue:
    When  I run the URL above with parameter EXPIRED, the report still shows for  ACTIVE only. The URL is not making any difference with report.
    Report is picking the default value from RPD session variable init query.
    could you please let me know if I am missing something.

    Hi,
    Check those links might help you.
    Integrating Oracle OBIEE Content using GO URL
    How to set session variables using url variables | OBIEE Blog
    OBIEE 10G - How to set a request/session variable using the Saw Url (Go/Dashboard) | GerardNico.com (BI, OBIEE, O…
    Thanks,
    Satya

  • Re: Hyperion and OBIEE

    Hi all,
    Is Hyperion and Obiee a open source? What is the advantage of using Obiee reports instead of hyperion reports?
    Thanks

    Dear All,
    Am looking for same information - is there any online/internet URL for OBIEE/OBIA to access reports and Dashboards, similar to what is there for Oracle app/ EBiz from Solutionbeacon.
    Can you please respond ASAP as it will be very helpful.
    Regards
    Srinivas Chindam

  • How to set a value to a Presentation Variable using GO URL?

    Hi All,
         I am working on a drill (GO URL) from Dashboard page1 to Dashboard page2.
         The problem I am facing is, I am not able to pass a value to the presentation variable through GO URL. (I have to pass "Customer Category" static
    value to The presentation variable present in Dashboard Page2 ).
         The Dashboard page2 is having a view select in which we are using presentation variable to select the report based on the value selected in
    View Select.
         For example: If the user selects "Customer Category" value in View select and clicks on GO button Customer Category report will show the out put.
         When i am drilling from Dashboard Page1 I have to pass a value to the presentation variable used in view select and also pass some filter condition in
         GO URL.
         Please let me know if it is feasible to pass a value to the presentation variable through GO URL in OBIEE 10.1.3.4.
         It will be greate if you can provide me with the syntax to set a value to the presentation variable of dashboard page2 through GO URL.
    Thanks and Regards,
    Sagar Vishwanathwar.

    1) You have to navigate to dashboard page, not to answer request = you have to use "Dashboard URL API" not GO URL API.
    2) On the target page, you have to place dashboard prompt, which sets required presentation variable.
    3) Refer to the target using Dashboard URL API and set filter on prompt column using URL parameters. Example: http://localhost:9704/analytics/saw.dll?Dashboard&PortalPath=%2Fusers%2Fadministrator%2F_portal&Page=page%201&Action=Navigate&P0=1&P1=eq&P2=D_TIME.YEAR_CODE&P3=%221996%22
    Do not forget to use Action=Navigate. The syntax for setting filters using url parameter is the same as for GO URL API described in Business Intelligence Presentation Services Administration Guide.
    This is the way, you can implement navigation to parametrized direct SQL reports including passing filter values...
    Regards K.

  • Download link for report in OBIEE 10g

    Hi All,
    On dashboard page, we have link for the report. Our requirement is, beside the report link, Can we put a link to download the same report. Business wants users should have quicker access to download the report. So, they want a link to download report without opening it.
    -Regards
    Mayuri Shah

    Hi Mayuri,
    Possible with GoUrl.Add a gourl in this format to your dashboard object,
    Check this, Go URl in OBIEE
    Rgds,
    Dpka

  • GO URL with Session Variable

    I want to use interaction between two reports in different dashboards, which do not share the same tables but the same values.
    When clicking on column A values in Report A, I want to create action link with option to open Report B, presenting column B, which is filtered by value A.
    I also want the prompts in Report B to present the value A, as it was selected by the user on Report A.
    I thought about using GOURL in action link to specific URL. I manage to open Report B, but it is not filtered by A.
    How can I transfer the value A in the URL? how should I add the value A into '&val1=XXX'?
    I also want to transfer other prompt values (e.g. val2 of col2) from A to B. I set this prompt value to session variable, but how can I add it in the GOURL syntax of '&val2=XXX'?

    Hi,
    Check those links might help you.
    Integrating Oracle OBIEE Content using GO URL
    How to set session variables using url variables | OBIEE Blog
    OBIEE 10G - How to set a request/session variable using the Saw Url (Go/Dashboard) | GerardNico.com (BI, OBIEE, O…
    Thanks,
    Satya

  • How the hierarchy works in obiee 11G

    Hi All,
    Normally in 10g , when we set detail level then it gives data of lowest granularity. but here in 11g i created one dimension in dept table . and took two salary columns of emp and one i set it to total and other as detail .
    when i took two columns i did not get data as expected (The way we get in 10g)
    How it works in 11g??
    Is there any document/blog .. please help.

    check this
    The Port number is the AdminServer Port Number of the domain. This is where the EM app will be targetted and deployed. If you choose all defaults and have like a Simple Installation of BI Software, then you should have one Server named AdminServer running at default Port: 7001.
    To really confirm exactly, open you config.xml file which is under your domain root folder/config/config.xml file. Search for "em.ear" and see to which server it is targetted, generally it will be AdminServer (<target> tag entry). Now from the top search for "AdminServer" in the same file. You should see an entry like shown below. SSL Port is 7002. If you do NOT see <listen-port> tag, it means it is using DEFAULT Port which is 7001. But if you do see this tag, use that port number. Do not get confused with <ssl> port. Every domain have normal and ssl ports and most of the times we use normal port.
    <server>
    <name>AdminServer</name>
    <idle-connection-timeout>1000</idle-connection-timeout>
    <period-length>200000</period-length>
    <idle-periods-until-timeout>20</idle-periods-until-timeout>
    <dgc-idle-periods-until-timeout>21</dgc-idle-periods-until-timeout>
    <ssl>
    <name>AdminServer</name>
    <hostname-verification-ignored>true</hostname-verification-ignored>
    <listen-port>7002</listen-port>
    </ssl>
    <machine>RJEGGA</machine>
    <listen-address></listen-address>
    <server-diagnostic-config>
    <name>AdminServer</name>
    <diagnostic-context-enabled>true</diagnostic-context-enabled>
    </server-diagnostic-config>
    </server>
    So, try, http://youradminserverhost:adminserverport/em
    NOW, if you get like Page Not Found, or do not see entry from em.ear file in your config.xml file, this means your domain is not having EM app deployed.
    How to know the Em url in OBIEE 11g

  • Calc Manager in OBIe / URL

    Hi everyone,
    I have two questions about calc manager:
    1) Is't possible to run calc manager scripts through OBIE?
    2) Is't somehow possible to get to specific calc manager script using URL?
    Thanks in advance,
    Sergey

    The 2 questions have the same meaning : I just want to run Hyperion calc manager from OBIEE and as I know that it is possible to run
    any url from OBIEE and I thought it might be a solution .

  • OBIEE :: GoURL problem

    Hi All,
    Need help in Go-URL in OBIEE, the scenario is given below.
    I have to pass an ‘OR’ condition in Go-URL to the target report (i.e.) I have a line code which can have (Open, Closed, Finally Closed, NULL values) and I should send a condition like below one to the target report.
    Line_Code not in (‘CLOSED’, ‘FINALLY CLOSED’) OR Line_Code IS NULL
    So that I can have values in the target report other than above given values along with NULL values.
    The two reports are from same subject area and based on same table as well, but we cannot send Key values/primary key as the Source report has aggregated values and multiple key values can’t be passed to the target report.
    Any help in this regard is highly appreciated.
    Note: I cannot place any filters in the target report as it is called by other reports as well.
    Regards,
    Sam

    Create the target report as report with union:
    1.The first report of union will have conditions
    Line_Code is prompted
    AND Line_Code not in (‘CLOSED’, ‘FINALLY CLOSED’) --> this condition set to 'Protected'
    2. The second report will have condition
    Line_Code IS NULL --> this condition set to 'Protected'

Maybe you are looking for