Filter on field in Interactive report to small/narrow

In a interactive report I have the problem that the first (about) 30 positions of the values of one of the fields is not unique. So if you want to use the filter function it is impossible to know which value is selected. Is there a way to make these drop down select list wider for some fields?
Any one?

Found the ANSWER!!
If I click on the little 'wheel' and click filter, I can choose other expressions. whooa!
Marco

Similar Messages

  • Is it possible to have editable text field in interactive report?

    Is it possible to have editable text field in interactive report?
    Thanks,
    Dip

    Hi,
    I followed your suggestion and defined an IR with apex_item.text columns and it works fine. Now however I face a new problem when I run the page and use the standard Search Bar:
    - Click on Actions/Filter
    - Select a column, for example the employee name.
    - Open the Expression field LOV: I correctly see the different names.
    - When I select one of the names, in the Expression field, instead of the name, I see:
    "<input type="text" name="f03" size="20" maxlength="2000" value="Eugene" />"
    Horrible!!!!!!
    Is there a way to see the name and not that expression? The same thing get downloaded, so it´s really annoying.
    Thank you very much in advance for your help!!!
    Regards
    Francesco

  • Hide filter type - row in interactive report

    Hello all,
    how can I deactivate or hide the filter type - row in interactive report and the only option to be filter type - column?
    Is it possible with some javascript?
    Thanks in advance !

    The CSS approach works fine, but I made some improvements:
    1. CSS-Selector is case sensitive
    2. Only select the label with the attribute for="apexir_FILTER_TYPE". Attention: the CSS-Selector for the for-attribute works in IE and Firefox different
    /* Hide IR Filter Type Row */
    #apexir_FILTER_TYPE {
    display:none;}
    /* IE */
    label[htmlFor="apexir_FILTER_TYPE"] {
    display:none;}
    /* Firefox */
    label[for="apexir_FILTER_TYPE"] {
    display:none;}

  • Custom date fields in Interactive Report

    Hi,
    I am using newly patched version of Apex - 4.0.2.00.06
    What I am trying to do is to have two datepicker fields P84_DATE_FROM and P84_DATE_TO in separate HTML region, on the page that has IR / Interactive Report, that will be filter in report source.
    In debug mode I noticed that values that are picked with datepicker are not binding in report sql.
    select * from calendar_x
    where
    date between to_date(:P84_DATE_FROM,'DD.MM.YYYY') and to_date(:P84_DATE_TO,'DD.MM.YYYY')
    Do I have to force submit on Go button before it executes gReport.search('SEARCH')? Is it the right way to go about this?
    Thnx,

    Hi Vish,
    I was informed by SAP few months back that Interactive Reports can not be enhanced with custom fields. I don't see any documentation regarding this.
    You may want to check with SAP also.
    Regards,
    Paparao Undavali

  • Changing value of input field in interactive report

    Hi all,
    I have created interactive report. On 3rd list, i had calculated total for netwr filed and it is displayed at bottom.
    netwr field on list is editable. If value in netwr changed by user , value for total should be changed on same list.
    Can anybody help me out?
    Thanks and Regards,
    Rakesh.

    Hi Rakesh
    Within the third alv's usercommand, Try this code.
    FORM user_command1 USING r_ucomm LIKE sy-ucomm
           rs_selfield TYPE slis_selfield.
        CASE r_ucomm.
             WHEN 'EDIT'.
                 <code>
                 CALL METHOD <alv_instance>->refresh_table_display
                     EXPORTING
                     is_stable = <third_alv_internal_table>
                     EXCEPTIONS
                     finished = 1
                     OTHERS = 2.
      ENDCASE.
    ENDFORM.
    This will refresh the internal table each item a edit operation is done, after this write the code to find the sum.
    Thanks and Regards,
    Rinzy Deena Mathews

  • Enable email field on Interactive report

    Hi,
    I have a column that contains the contact email as well an other column that contains the website of the company both displayed on an interactive report .
    Does anyone knows what I need to do to be able to:
    1. Click on the email (on the report) and open the local email client to send an email
    2. Click on the URL field (on the report) and open the default browser to visit that site
    Thank you
    YannisR

    for the mail question, you would create a tag like this as a report column:
    <a href="mailto:youremailaddress">Email Me</a> 
    or with a subject
    <a href="mailto:[email protected]?subject=DAMIFINOY">
    Send Email</a> Thank you,
    Tony Miller
    Webster, TX
    On the road of life...There are 'windshields', and there are 'bugs'
    (splat!)
    "Squeegees Wanted"
    If this question is answered, please mark the thread as closed and assign points where earned..

  • Adding new fields in interactive reports in Opportunity area

    Hi All,
         We have implemented SAP CRM 7.0 ( SP8) and we are using the interactive reporting available in the system.  When we try to build a custom report using the manage reporting link (which leads to a wizard), the wizard lets us choose between 34 available fields in opportunity area. The customer wants to include few more fields to this list like Prospect id, Opportunity id, Item descriptions which are standard fields but not available in interactive reporting. So I am trying to find out from where in system those 34 fields are configured and how I can add few extra fields to that list. 
    With EHP1, SAP has provided a interactive reporting enhancement workbench, but we are on SP8. So any help or information is highly appreciated.
    Regards,
    Manas.

    Hi Sven,
    Could you please let me know whether i can add SAP fields(like lead partner address) using Interactive Reporting Workbench  on to the Standard Leads Origin  Interactive Report .
    I am using Eph-2 Version of CRM .
    Basically i want to pull a field which is already  in the Lead Transaction on to the standard Interactive Report .
    Thanks
    With Best Regards
    Mamatha

  • Custom Z fields in Interactive reports

    Hi Gurus,
    We have enhanced the Opportunity Object using EEWB
    These fields are now not available in the Interactive Reports
    I have tried to create my own report using the 'Manage Reports' Work Center
    and saw that these fields are not available for picking in the report
    Is there anything i need to do inorder to make these fields pickable in the reports
    Regards,
    Vish

    Hi Vish,
    I was informed by SAP few months back that Interactive Reports can not be enhanced with custom fields. I don't see any documentation regarding this.
    You may want to check with SAP also.
    Regards,
    Paparao Undavali

  • Higlighting currency fields in interactive report

    I have an interactive report where two cells need to be highlighted if the values in these two cells are not equal. Both cells have the currency mask (FML999G999G999G999G990D00) in the column attributes. I have modified the sql for the first column based on info in this forum. However when I use the span tag to conditionally highlight the cell, the format mask is apparently overriden by the span tag in the SQL statement. Is there a way to have both highlighting and a currency mask on the same cell?
    SQL for report
    SELECT  CASE
                     WHEN TO_NUMBER (v.committed) < pwd.obligatedamt
                     THEN '<span style="background-color:yellow;">' || TO_NUMBER (v.committed) || '</span>'
                     ELSE
                        TO_CHAR (v.committed)
          END committed, ...Thanks,
    Kim

    Figured it out. Here is the revised code. Instead of using the Number / Date Format field in the column definition (in APEX) and the span tag in the select statement, put all the formatting in the select statement and leave the Number / Date Format field blank in APEX.
    SELECT  CASE
                     WHEN v.committed < pwd.obligatedamt
                     THEN
                           '<span style="background-color:yellow;">'
                        || TO_CHAR (v.committed, 'L999G999G999G999G990D00')
                        || '</span>'
                     ELSE
                        TO_CHAR (v.committed, 'L999G999G999G999G990D00')
                     END committed,  ....

  • Display Filter box automatically for Interactive Reports

    Hi,
    I have a page which uses an Interactive Report and I would like to automacially display the filter box on the screen when the page is loaded. Does anyone know how to do that?
    Regards
    Paul

    Hi,
    The IR Search bar is displayed and the user then can click the down arrow next to the green cog which displays opitions such as Filter, Sort, Save Report etc. If they click Filter the Filter box is displayed where the user can then select the column, operator and expression they would like to filter on.
    I want to display this Filter box automatically when the page is loaded. The javascript being called to display that box is 'gReport.controls.filter();'. I must be able to add that on my page somewhere when it is loading. If I do it ONLOAD or in the header or footer i get 'gReport is undefined'. If I create a button and call that javascript it works.
    Regards
    Paul

  • How to Add a Filter By field to a Report

    Hello, I am running Apex 3.x and I currently have in production, a standard report page with the following columns:
    Grant#, Grant Name, Project #, Project Name, Project Fiscal Year, Task #, Task Name
    A grant can have many projects, and a project can have many tasks.
    I have been asked to add a "Filter By:" field acting as a select List , with just these values: Show All, Show Projects and Tasks, Show Projects
    If "Show All" is selected, the report remains the same and displays all the column headings and data for all the fields above.
    If "Show Projects and Tasks" is selected, I am to refresh the page, and only show data (and column headings) for Project #, Project Name, Project Fiscal Year, Task #, Task Name.
    If "Show Projects" is selected, I am to refresh the page, and only show data (and column headings) for Project #, Project Name, Project Fiscal Year
    Could you please assist in directing me on how I can go about hiding these other columns and data if "Show All" is not selected.
    Many thanks,
    Laura

    Create a select list with those 3 values ( and make it a select with submit ), then in your report attributes, go to the conditional columns you have and set the condition accordingly, ex: for example:
    column Task # >> edit >> condition >> PLSQL expression
    :PX_FILTER != 'Show Projects'
    Where PX_FILTER is the new select list that you will create....
    Hope this helps,
    Sam

  • Referencing fields from interactive report

    Nevermind!
    Hi,
    I'm working with an interactive report for the first time and I'd like to direct the "edit" button for a record to another page so I can use that record's data in the new page. How do I get the other page to reference the record I selected in the interactive report?
    Thanks!
    Edited by: Tinlemon on Mar 19, 2009 11:36 AM

    Found my answer in the LINK COLUMN section of the Report Attributes

  • Since Adobe Connect 9 hosted release missing filter date field in registration report tab

    Prior to the new version we use to do the below steps and get a Filter Reports option.  Now that option is missing.  Is there another way to pull this report?  Is this a bug and can be resolved?  Am I missing something?
    -Event Management
    -Shared Events
    -PREP Master 2011 1.0 (Name of our Main Folder)
    -Click on PREP Master (Cty.) 2011 1.0 (Name of on demand stored in main folder)
    --Reports
    -Filter Reports
    -Change Time, Later Time-One day behind time frame 12:00am start to 12:00am finished (Missing Date Filter)
    (Date should have remained the same from Training report, no need to filter date)
    -By Registrants (Attendance Report)(Missing Option/Replaced by Campaign Report)
    -Download Report Data
    If you go to the By Answers Tab you get the Filter Reports link.  If you go to pull Training reports you get the filter link.  But going to Event Management, locating the event, and then trying to pull a report on Registration does NOT give you filter reports like it use to.  We need this. 

    HI
    add that fileds in the all locations where you need it like
    in internal table declaration , write statement , select statement
    these are the main areas where you have to add that 2 fileds

  • Enter in search field in Interactive report does not work

    APEX 3.2.1
    When I type a string in apexir_SEARCH field and clichk on OK button, the report behaves in a correct way - it adds a filter line and does filtering.
    When I type a string in apexir_SEARCH field and then <Enter>, nothing happens.
    The same behavior in IE9 and Chrome.
    Apparently, it's gReport.search('SEARCH') function actioned on apexir_SEARCH's keyup event that is fired, but I don't manage to get further.
    I have deleted all non-odp processes and created a test IR page, but there the behavior is still the same.
    Any idea what could cause this?
    Igor

    inspect the input element and see if it has something like this
    if($f_Enter(event)){gReport.search('SEARCH'); return false;}if not add this using javascript

  • Variable or Substitution String in Interactive Report Filter

    Background: I have an application that has a number of customized Interactive Reports where the Filter on the reports is set to a custom company name. When I install the application, I do not want to go through the reports and change the filter for the new company's name. The filters I need to change are all set by LOVs.
    Question: Is there a way that I can do one of the following:
    - associate a Filter with a Variable or Substitution String such that I can set that variable or string on login and then the user always sees the correct Filter displayed in the Interactive Report?
    - or is there a code method to update a sql apex table behind the scenes to reset the Filter to the new value. So that I could run that after installation as part of a customization / set-up time?
    System Info: 4.1.0.00.32
    Thanks,
    Stephen
    I used the IR_FILTER function, and while it allowed for a new filter to be set. It did not save the filter after logout or for other users accessing the Primary report. I could not find a SAVE Interactive Report function. So, my question still stands on looking for a method to set and save Filters programatically.
    Edited by: slsmith on Apr 19, 2012 8:07 PM

    Hi,
    I don't have access to an Apex 3 environment to check this, but I think that the Apex 4 Interactive Reports save the filters slightly differently and an attempt to mimic that functionality using IR conditions would fail.
    The only alternative I can think of right now is to have an additional column that returns 0 or 1 - eg:
    SELECT FIELD1,
    FIELD2,
    FIELD3,
    CASE WHEN (FIELD1 IS NULL OR FIELD2 IS NULL OR FIELD3 IS NULL) THEN 1 ELSE 0 END INCLUDE_NULLS
    FROM YOURTABLEand then apply a filter to INCLUDE_NULLS = 1
    Andy

Maybe you are looking for