Unable to filter in the report

Hi Friends,
I am stuck up with a solution.Would appreciate if anyone can help me out.
I am running a report on the web, the report is displayed perfectly but when i am trying to filter it,its not getting filtered.
I have taken Profit center and Country in rows and coloumns apart from key figures.Both the profit center and country contains hierarchy. In the report when i want to filter it and when i expand the hierarchy i am unable to see the lower nodes to select.
Kindly let me know as to how to proceed.
Thanks,
Kapil

First, check if the hierarchy is there in place for Profit center and Country.
Thanks...
Shambhu

Similar Messages

  • Filter on the reports created using DIRECT DATABASE ACCESS in obiee 10g

    How do i filter on the report that is created by using DIRECT DATABASE ACCESS in obiee 10g?
    I have reprot A with link to report B, report B is created using DIRECT DATABASE ACCESS. so it is just a table, but i need to filter out 2 columns.
    here is the query in REPORT B:
    select strm, acad_group, crse_id, class_section, count(emplid) from v_crse_enrl
    group by crse_id, strm, class_section, acad_group;
    the link in REPORT A:
    '<a target="_blank" href="'||VALUEOF("bi_link")||'Go&Path=CF_CROSS_TEACHING_LIST&ACTION=Navigate&col1=STRM&val1='||view1_DIMEN.STRM||'&col2=CLASS_SECTION&val2='||TRIM(view1_DIMEN.CLASS_SECTION)||'">' ||view1_dimen.class_id||'</a>'
    from this link to report B.
    thank you!!

    I didnt tested using url, but the same works with using presentation variables.
    To your direct sql add where clause for those two columns like WHERE col='@{col1}' and col ='@{col2}'
    and try to run from url.
    let me know updates

  • Rank function without filter in the report

    Hi,
    I have a problem with Rank() function. The problem is the next one.
    I have a table with this rows:
    User | DATE | Cost
    user1 | 12/02/2011 | 10,4
    user1 | 13/02/2011 | 11,1
    user1 | 13/02/2011 | 10,1
    user1 | 13/02/2011 | 8,1
    user2 | 12/02/2011 | 1,4
    user2 | 13/02/2011 | 12,1
    user2 | 13/02/2011 | 22,1
    user2 | 13/02/2011 | 8,1
    In the rpd I have a agregate row as SUM(COST), and I need extract te ranking of this SUM(COST) per user, The sum of user1 is 39,7 and the sum of the user 2 is 43,7. If I show in the report all users, the ranking is correct Rank=1 per user2 and Rank=2 per user1, but the problem is that I only want show the user1, when I add a filter to the report user='user1' the ranking value changes from 2 to 1. I need that the ranking value doesn´t change when I introduce a filter.
    Any idea about how to solve this problem?
    Thanks

    Hi Antonio,
    On the Rank column in the answers edit the formula as given below.
    Case when username = 'user2' then Rank(sum(cost)) else 0 end
    Then apply a filter on the Rank column as Rank > 0.
    I hope this one helps you.
    Regards
    AP

  • Post subject: cannot apply filter to the report element

    Hi All,
    I have a report that has checkbox Input Controls. when the user is viewing the report and try to manuplate the input controls its throwing an error saying
    cannot apply filter to the report element: DP0.DO1e5
    I tried to do the same with an admin account still its showing the same error but when when I edit the report its not throwing the error. The problem is with the View mode
    Thanks
    -K

    Not sure why this is but deleting the input controls in the edit mode and re-applying works sometimes.
    Thanks,
    Karthik

  • Unable to connect to the report server

    I have a problem with run_report_object to call a report within a form. I am using 9ias Rel 2 and report server on the same machine. The test.rdf report can be executed using the URL in the browser.
    I get the "Unable to connect to the report server" when I use the run_report_object in a form. Is it a configuration problem or is the code incorrrect?
    My code is as follows:
    Declare
    repid report_object;
    report_job_id VARCHAR2(200);
    PL_ID PARAMLIST;
    rep_status varchar2(100);
    Begin
    repid := FIND_REPORT_OBJECT('OP201P');
    SET_REPORT_OBJECT_PROPERTY(repid, REPORT_EXECUTION_MODE, BATCH);
    SET_REPORT_OBJECT_PROPERTY(repid, REPORT_COMM_MODE, SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid, REPORT_DESTYPE, CACHE);
    SET_REPORT_OBJECT_PROPERTY(repid, REPORT_DESFORMAT,'pdf');
    SET_REPORT_OBJECT_PROPERTY(repid, REPORT_SERVER,'repsrv');
    PL_ID := CREATE_PARAMETER_LIST('TEMP');
    ADD_PARAMETER(pl_id, 'p_ref1', TEXT_PARAMETER,:toolbar.ref1 );
    ADD_PARAMETER(pl_id, 'p_ref2', TEXT_PARAMETER,:toolbar.ref2 );
    ADD_PARAMETER(pl_id, 'p_sort', TEXT_PARAMETER,:toolbar.p_sort );
    report_job_id := RUN_REPORT_OBJECT(repid, pl_id);
    rep_status := REPORT_OBJECT_STATUS(report_job_id);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')LOOP
    rep_status := REPORT_OBJECT_STATUS(report_job_id);
    END LOOP;
    IF rep_status = 'FINISHED' THEN
    Web.show_document('http://portal.domain_name.com:7778/getjobid='||
    substr(report_job_id,9) || '?server=repsrv', '_blank');
    ELSE
    message('Report failed with error message '|| rep_status);
    END IF;
    end;
    For the show_document, I have tried both ' .. getjobid='|| substr(report_job_id,9)' and
    ' .. getjobid'|| substr(report_job_id,9)' .
    Any help would be greatly appreciated.
    Thank You.
    Rgds
    Edwin

    Hi ,
    Did you check if TCP/IP is enabled for the SQL Server service.
    If Disable you may need to enable it.
    To resolve this error, you can either modify the connection string to use the server name or you can enable TCP/IP for the service. Follow these steps to enable TCP/IP:
    1) Start SQL Server Configuration Manager.
    2) Expand SQL Server Network Configuration.
    3) Select Protocols for MSSQLSERVER.
    4) Right-click TCP/IP, and select Enable.
    5) Select SQL Server Services.
    6) Right-click SQL Server (MSSQLSERVER), and select Restart.
    Also Check the below link.
    Hi ,
    Did you check if TCP/IP is enabled for the SQL Server service.
    If Disable you may need to enable it.
    To resolve this error, you can either modify the connection string to use the server name or you can enable TCP/IP for the service. Follow these steps to enable TCP/IP:
    1) Start SQL Server Configuration Manager.
    2) Expand SQL Server Network Configuration.
    3) Select Protocols for MSSQLSERVER.
    4) Right-click TCP/IP, and select Enable.
    5) Select SQL Server Services.
    6) Right-click SQL Server (MSSQLSERVER), and select Restart.
    Also Check the below link if doesn't work from above.
    http://msdn.microsoft.com/en-us/library/ms365170.aspx
    Regards, PS

  • Error: Unable to communicate with the Reports Server

    The configuration I am working with is:
    * Oracle 8.1.6 DB on a Unix machine
    * Oracle Reports 6i on an NT machine
    * Microsoft IIS web server
    I have successfully tested my reports during the development phase of my project. Unfortunately, now that it is considered production and is available to upwards of 30 people, I am getting the following error message after verifying the server is up and after a numerous reports have been served:
    Error: The requested URL was not found, or cannot be served at this time.
    Oracle Reports Server CGI - Unable to communicate with the Reports Server.
    After receiving this message I noticed that the Report Server service is down and the log only indicates that it "shut down immediately". (no ORA messages) I tried restarting the service, but after serving one report, it would shut down again with the same message.
    I am wondering if it is a problem related to the cache. I used the default of 50M in the config file, but when the cache directory reaches 50M, the problem seems to appear. I then deleted approx. 30M of files from the cache directory and the Report Server service appeared stable. I changed the cache limit to 1M to see if there was a problem with the cache being so big. All appeared well for the first few hours of operation but then the Report Server service shut down again and upon restart crashed within a minute or two (usually as someone tests a report, it crashes again).
    Do I have a configuration problem? Has anyone seen this problem? Thanks in advance.

    Hi,
    I just found out that if i give
    http://localhost/cgi-bin/rwcgi60.exe?key1
    where key1 is a key mapping file that contains the report name,username and pwd for the database and desformat...etc..
    the report pulls out fine with the correct data..
    i am stunned...
    while none of the other commands like
    http://.../rwcgi60.exe
    or
    http://..../showenv?server=repserver
    or any other usual command doesnt work...
    anybody faced this before??
    Thanks.

  • Oracle reports 6i error unable to communicate with the reports server

    Hi,
    I have followed the steps for running oracle reports server 6i..i am using win2k3 and IIS6.0
    i have checked tnsnames.ora and sqlnet.ora and everything looks good..
    when i try
    http://localhost/cgi-bin/rwcgi60.exe
    i get a page called User Database Authentication and asks for username,password and database..instead of the help page that should be displayed..
    when i enter those values nothing happens for the first time and the same page is displayed again..when i enter it again i am getting this error
    url requested not found or cannot be served at this time
    oracle reports cgi: unable to communicate with the reports server
    any help would be grateful..
    Thanks.

    Hi,
    I just found out that if i give
    http://localhost/cgi-bin/rwcgi60.exe?key1
    where key1 is a key mapping file that contains the report name,username and pwd for the database and desformat...etc..
    the report pulls out fine with the correct data..
    i am stunned...
    while none of the other commands like
    http://.../rwcgi60.exe
    or
    http://..../showenv?server=repserver
    or any other usual command doesnt work...
    anybody faced this before??
    Thanks.

  • How can appear just some values when i filter in the report

    Hi gurus,
    i have a query in a web template, i remember there was a form to do this:
    For example in the report there are many analist, A,B,C.
    For material 1 the analis A,
    For material 2 the analis B,
    For material 3 the analis C,
    when i filter in the report for material 1. and then the analist, i WANT when i click in filter the suggestion is ANALIST  = "A", because is the only analist for this material.
    thats my problem when i filter just material A, and click to show the analist , appears ALL the analist in the suggestion of the report and is not correct because if i cliked in analist B the report doesnt bring values , its logic, , i remember some reports when you go filter, the suggestion to show is accord the values that you are showing, can you help me to do this , thanks!

    Look at the definition of the infobject and in the query for "Query Execution Filter Value Selection"
    This controls the values ie master data or posted items for navigation

  • Unable to connect to the report server error

    Hi all,
    I have formula.jsp file, in that i have all the parameters to connect with the Crystal Report server. I have Crystal Report Server 2008. While executing this jsp i got the following error,
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: Unable to connect to the server: 192.168.1.92. --- Connection refused: connect
         org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:512)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:377)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    javax.servlet.ServletException: Unable to connect to the server: 192.168.1.92. --- Connection refused: connect
         org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:843)
         org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:776)
         org.apache.jsp.formula_jsp._jspService(formula_jsp.java:143)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException: Unable to connect to the server: 192.168.1.92. - Connection refused: connect-- Error code:-2147217387 Error code name:connectServer
         com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException.throwReportSDKServerException(Unknown Source)
         com.crystaldecisions.proxy.remoteagent.TCPIPCommunicationAdapter.connect(Unknown Source)
         com.crystaldecisions.proxy.remoteagent.z.a(Unknown Source)
         com.crystaldecisions.sdk.occa.report.application.ReportAppSession.int(Unknown Source)
         com.crystaldecisions.sdk.occa.report.application.ReportAppSession.initialize(Unknown Source)
         com.crystaldecisions.sdk.occa.report.application.ClientDocument.new(Unknown Source)
         com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.new(Unknown Source)
         com.crystaldecisions.sdk.occa.report.application.ClientDocument.open(Unknown Source)
         org.apache.jsp.formula_jsp._jspService(formula_jsp.java:93)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    But, in Crystal Report Server XI Relese 2, the formula.jsp file connecting with server and display the reports.
    Why it is not working for 2008 server alone? Please help for this. If you need the jsp i will update.
    Thanks,
    shiva

    Hi,
    We are facing a similar kind of issue, when trying to access/ view crystal report using JAVA sdks.
    Please find the below error:
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException: Unable to connect to the server: Software caused connection abort: socket write error
    Error code:- 2147217387 Error code name: connectServer
    Please let us know if you were able to resolve this.
    Thanks in advance,
    Krishnam

  • Unable to connect to the report server 9iAS

    I have a similar problem to the FRM-41213 when trying to initiate a      Report_Job_Id := RUN_REPORT_OBJECT(Report_Id, pl_id) through a form.
    I have tested everything on my LOCAL 9iDS environment which goes through a LOCAL report server (rwserver -install myserver) and it works.
    Now, I am trying to deploy it to the 9iAS server on a Windows 2000 server. When I call my form everything appears to be working fine, however, I never get a connection to the report server and the applet hangs.
    Any one have any idea what I should check to insure that I have my 9iAS server setup to run Reports though 9iAS or what this problem might be?
    Thanks
    Hyman

    Check if the reports server on 9ias is up and running. You might check out metalink note 212551.1 if it is not. The "Second Solution for Issue 1" solved the problem for me.
    Begin quotation:
    "This can be accomplished by removing the <security> tagging from the <repserver>.conf file, where <repserver> represents the reports server name. This file is found in the Developer ORACLE_HOME/reports/conf directory."
    End quotation.
    Hope this helps
    Gerald Krieger

  • FRM-41213 Unable to connect to the report server

    I am converting an app from 6i to 9i. There are many reports, and I am trying, rather unsuccessfully, to get them to work. I have run the report server setup, and have the service started on my laptop. I am trying to use the following code to run a report attached as an object to my form, but I am getting the above 'cannot connect to report server' error. Can anyone point me in the right direction to resolve this problem??
    declare
    plistid          paramlist;
    pl_name     varchar2(20) := 'report_params';
    rep_id REPORT_OBJECT;
    v_rep varchar2(100);
    begin
    plistid := create_parameter_list(pl_name);
         add_parameter(plistid, 'p_rpt_catg', text_parameter, v_rpt_hdr1);
         add_parameter(plistid, 'p_rpt_name', text_parameter, 'REPORT80');
         add_parameter(plistid, 'p_db_ver', text_parameter, 'V33');
    rep_id := find_report_object('REPORT80');
    set_report_object_property(rep_id, REPORT_EXECUTION_MODE, RUNTIME);
    set_report_object_property(rep_id, REPORT_DESTYPE, SCREEN);
    set_report_object_property(rep_id, REPORT_COMM_MODE, SYNCHRONOUS);
    set_report_object_property(rep_id, REPORT_SERVER, 'dvlpserver');
    v_rep := run_report_object(rep_id,plistid);
    Thanks -- Jean.

    1) destype=screen is not allowed
    2) Please refer this forms-reports integration document which explains in detail about the integration
    http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf
    3) In particular refer the pages 41-43 which explains some common errors and troubleshooting
    4) Also look at info provided on things to take care while migrating from 6i -> 9i
    Thanks
    The Oracle Reports Team

  • RWServlet (Oracle Reports Server CGI unable to communicate with the reports server)

    Running Oracle 6i Reports Server on one NT machine (with the default install) and trying to execute the above servlet, on another system with a java servlet server, I get the above error.
    I have added REPORTS60_REPORTS_SERVER to the environment, as well as the registry. Note that on the Servlet Server I have NO other Oracle installations.
    So, is RWServlet dependent upon ANYTHING else being installed on the servlet server machine or ANY other environment/registry settings?
    Thanks!

    You will need to install the reports client as well to get a link to your reports server.
    Ken

  • Unable to connect to the report server from FORM in 10g

    Just I start to create Forms and Reports .
    Final step I try to put Button in Form Report to call Report but this job I have not do it before just I try it by my seftstudy to do.
    However, i get message error i will show you to see which mistake i have done.
    this picture error message:
    http://img136.imageshack.us/img136/5830/errr11ex.gif
    this picture paht of Report after import it in Form builder:
    http://img146.imageshack.us/img146/4381/tree9eb.gif
    this picture show the setting of properties in Report:
    http://img501.imageshack.us/img501/3999/agent4nz.gif
    this is my code :
    declare
    report_id report_object;
    report_message varchar2(1000);
    p_id paramlist;
    v_rep VARCHAR2(100);
    begin
    report_id:=find_report_object('agent');
    v_rep := RUN_REPORT_OBJECT(report_id);
    report_message := run_report_object(report_id , p_id);
    web.show_document('http://orcl:8889/reports/rwservlet/getjobid'|| substr(report_message, length('svr')+2)||'?server=svr');
    end;
    Can any one try to tell me what the mistake in my code and how to solve it?
    My best regards;
    Message was edited by:
    ExplOrer

    Hello !
    You can try to use only the web.show_document call
    WEB.SHOW_DOCUMENT('/reports/rwservlet?report=agent.rdf&destype=cache&desformat=htmlcss&server=srv&userid=you have to enter your username/passwort@database net name here,'_blank');
    Have you defined the path for the stored reports ?
    Try to locate the registy key REPORTS_PATH in the registry and add the root C:\project\reports . to the key
    Katharina

  • Can you create a test online and get the results filter in the report tab?

    Im brand new to this software and i had a big concern about it.
    This is a great tool to create surveys and forms to fill out but i was wondering if you can create a quiz.
    By a quiz i mean that instead of sending me back the data the user click in the multiple choice is it
    possible for me to get instead if they got it right or wrong.
    I want to retun if they got it right a boolean variable (true or false)
         logic ex)
         if (answer == true)
             return "correct"
         else
              return" "incorrect"

    Hi;
    You can certainly create a Quiz using FormsCentral but there is nothing built in to "grade" the quiz and no integration with any grading systems like flubaroo.
    You might be able to use "Formulas" on the "View Response" tab to identify correct/incorrect answers. 
    This describes a bit about how to use Formulas (they can be done in a column as well as a row): http://acrobatusers.com/tutorials/how-to-work-with-formulas-in-formscentral
    This is a list of the forumulas available in FormsCentral: http://helpx.adobe.com/acrobat-com/formscentral/help/formula-syntax-built-in-functions.htm l
    Thanks,
    Josh

  • Cube values not getting populated in the report

    Hi,
    I have done the selective deletion of Purchase orders and done the repair load, the set of records are there in the cube but unable to see in the  report.. the records in the cube satisfies the selection criteria also.
    expecting the early response,
    Points will be rewarded for the any information and solution also if any body face the same problem pls share the information.
    regards,
    vishali.

    Hi,
    i have already activated the cube and that repair full request is available for reporting that icon has come in the cube and if it is reg. aggregates there are not aggregates present so .... what might be the problem pls let me know....
    regards,
    vishali.

Maybe you are looking for

  • Safari not loading .css files / hanging page load

    A bit of an odd one this... I'm having a few issues a couple of websites in that the page takes an age to load - and when (if) it does, the CSS file hasn't loaded, so the page is unstyled. One page is http://www.liverpoolfc.tv - the main page and the

  • JWS : Properties and Log file locations?

    We have a swing app that used log4j to log to a file. It also uses Apache commons PropertyConfiguration to allow the user to setup and save properties to a file. This all works great when running the app locally. The app creates the log file and prop

  • Configuring a AP 1552EU-A-K9 in layer 2 mode thru a WLC 5508 running 7.6.130.0

    We have an outdoor AP that we want to bridge to another one that is also outside and connect to our WLC 5508. I see a lot of data for connecting via a layer 3 network, but nothing yet on a layer 2 network (which we run). Can anyone point me to some d

  • List article in only one site

    Hi gurus, Can somone advise or suggest us in defining a new one or a standard sap listing procedure where it should be listed to only one specific site. example article X in article master should be listed only in one site b001 upon executing listing

  • Using NetConnection for a video in subdirectory

    The following code works if the FLV I'm trying to pull is in the same directory as the SWF. How do I target an FLV in a different folder?