Report -- filter with selection list -- show all values after select page

Hello!
I have the following problem:
- I have a report
- this report can be filtered with a selection-list
- the selection list is based on dynamic LOV and has a null-value
- I added the code of the report the following, to filter the report after choosing a value of the selection list:
... and (instr(type, decode(:P8_FILTER_type, '%null%',type,:P8_FILTER_type)) > 0)
This works very well.
But my problem is: When the user logs out and the next time, he logs in, the selection list shows " --- show all values --- " (my null-display-value) and the report is empty "no values found".
---> I want to show the first time, the page is selected ALL the values of the report. (this is now only possile if I press the button which belongs to the selection list)
I hope, somebody understands my problem.
Thank you so much,
LISA

Hello Lisa,
The first time it's probably NULL.
So what you can do in your where: (instr(type, decode(NVL(:P8_FILTER_type,'%null%'), '%null%',type,:P8_FILTER_type)) > 0)
Off topic: I also wonder if that where clause can't be simpler? Do you rely need the instr?
Regards,
Dimitri
http://dgielis.blogspot.com/
http://www.apex-evangelists.com/
http://www.apexblogs.info/

Similar Messages

  • Sap m select not showing all values from gateway

    Hello Experts,
    This is the code for my select:
    var SelectCondType = new sap.m.Select("SelectCondType", {
       width : "200px"
       var oItemSelectTemplate1 = new sap.ui.core.Item({ 
                 key : "{ID}", 
                 text : "{Name}" 
      var sServiceUrl = "blablabla.com:8000/sap/opu/odata/sap/YXM_GWS_BART_SRV";
      var oModel = new sap.ui.model.odata.ODataModel(sServiceUrl, false,
      "user", "pass");
      SelectCondType.setModel(oModel);
      SelectCondType.bindAggregation("items","/cond_type",oItemSelectTemplate1);
    The select is showing around 50 (didn't really count em) items while there are like 500 in the gateway...
    Any Ideas ?
    Kind Regards,
    Bart

    Nevermind,
    awiedemann.com • SAPUI5 / oData / JSON model - set size limit
    Kind Regards,
    Bart

  • Unable to create a dynamic action ALERT to be generated on a Select List when particular value is selected.

    Hi everyone, this should be so easy, yet I am stuck.
    I have a form region with an item P110_VESSEL_ID.   This item is a select list.   It is based on the query: 
    select distinct v.vessel_name, v.vessel_id
    from vessels vessels v, frequent_fishermen ff
    where ff.dea_permit_id = :G_PERMIT_ID and
    ff:vessel_id = v.vessel_id
    UNION
    select v.vessel_name, v.vessel_id
    from apex_collections a, vessels v
    where collection_name = 'SUPVES_COLLECTION' and
    a.c002 = v.vessel_id
    If the user decides against the values in the select list query, they may opt to SELECT ALL VALUES.  This SELECT ALL VALUES is a POST ELEMENT TEXT on P110_VESSEL_ID.
    <a id="popVessels" href="#"><font color=blue>Select from ALL Vessels</a>
    This all works fine.
    The issue is that when the user selects a vessel name = 'UNKNOWN' and it's corresponding vessel_id value, I would like an ALERT to appear indicating that they should double check that the vessel is UNKNOWN and not that the is no vessel. 
    I created a dynamic action
    event= change
    select type = item
    item = P110_VESSEL_ID
    True ACtion #1 is the ALERT.
    I currently have no other logic, but cannot even get this to work.  Any thoughts.   I have also tried the SELECT TYPE = jQuery Selector = select[name='P110_VESSEL_ID'] but that does not work either (though I am not certain if the value should be P110_VESSEL_ID or the static name of VESSEL_ID).
    Any help is appreciated.
    ps.  the page is not submitted when the vessel is changed.  There is other data that needs to be entered both in this region and others and many validations run when submit, so the submit would not be an option.
    thanks again,
    Karen

    KarenH,
    KarenH wrote:
    I created a dynamic action
    event= change
    select type = item
    item = P110_VESSEL_ID
    True ACtion #1 is the ALERT.
    This should work.  Sometimes I've see where there is other javascript on the page that may have some errors and is causing the dynamic action code to not be executed.  Use your favorite browser script console to try and determine if this may be the case.
    --Jeff
    P.S. Your jQuery selector can be: select#P110_VESSEL_ID

  • SSRS 2012: How to get a "Select All" that returns NULL instead of an actual list of all values from a multi-select parameter?

    I have a multi-select parameter that can have a list of thousands of entries. In general, the user will pick a few entries from the list or "Select All". If they check "Select All", I would much prefer that I get a NULL or an empty string
    instead of a list of all values. Is there any way to do that?
    In experimenting with a work-around, I tried putting an "All" label with a null value in the list, but it is ignored (does not display in the drop-down). If I use an empty string for the value, my "All" entry does get displayed, but so
    does "Select All", which is confusing. Is there a way to suppress "Select All"?
    - Mark

    I adapted the following from a workaround posted by JNeo on 4/16/2010 at 11:14 AM at
    http://connect.microsoft.com/SQLServer/feedback/details/249227/multi-value-select-all-parameter-in-reporting-services
    To get a null value instead of the full list of all values when "Select All" is chosen:
    1) Add a multi-value parameter "MyParam" that lists the values to choose.
    2) Add a DataSet "ParamCount" identical to the one used by "MyParam", except that it returns a single column named [Count] that is a COUNT(*) of the same data
    3) Add a parameter "MyParamCount", set it to hidden and internal, then set the default value to 'Get values from a query', choosing "ParamCount" for the Dataset and the one [Count] column for the Value field.
    4) Change the parameter for the main report DataSet so that instead of using [@MyParam], it uses this expression:
    =IIF(Parameters!MyParam.Count =
    Parameters!ParamCount.Value, Nothing, Join(Parameters!MyParam.Value, ","))

  • SSRS (Report Builder 3.0) Showing all values for Multiple Line field with Append Changes

    I have a simple SharePoint list with a multiple line column that has append changes enabled. I am doing a report with Report Builder 3.0 and I want to show all values of the field the same way you achieve it through a DVWP using:<SharePoint:AppendOnlyHistory
    FieldName="Comments" runat="server"
    ControlMode="Display" ItemId="{@ID}"/>
    Any suggestions to show all the appended values?

    Hi,
    I am trying to involve someone familiar with this topic to further look at this issue.
    Regards,
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Rebecca Tu
    TechNet Community Support

  • How to show "ALL" Values by default in Page Drop-Down Lists in Pivot Tables

    Hi Everyone,
    Iam stuck with 1 problem please can any 1 help me if u know the solution.
    Here is my problem:
    How to show "ALL" Values by default in Page Drop-Down Lists in Oracle BI Pivot Tables?
    For example, if you place Region in the pages area, a Region drop-down list allows the user to select a particular region, and see the data for only that region, rather than seeing all the Regions,But by default its not showing "ALL" option in the drop down list ,rather than doing that its showing result for only 1 region by default.
    And an other problem with this pages area is, if we palce the multiple attributes in the Pages area in the pivot table, the (Fields)result is showing in vertically, the attributes 1 by 1(Every attribute in a new line) ,rather than showing like that, is there any way to show the results in horizantally?(We want to have it as a seperate drop drown list for every field horizantally not as a concatenated list).

    Thanks Nikhil. But I am fetching the values from the LOVCache.java.
    I am using <af:selectManyChoice>. Is there any way I can use LOVCache.java value for selecting default values instead of hard coding?
    I mean to say can I write
    unselectedLabel="#{LOVCache.entityTypeSelectionList.anyValue}"
    where LOVCache.entityTypeSelectionList is used to populate the drop down box.
    Regards,
    Aseet

  • Showing all values for Multiple Line field with Append Changes

    I have a simple SharePoint list with a multiple line column that has append changes enabled. I am doing a report with Report Builder 3.0 and I want to show all values of the field the same way you achieve it through a DVWP using:<SharePoint:AppendOnlyHistory
    FieldName="Comments" runat="server"
    ControlMode="Display" ItemId="{@ID}"/>
    For reference, I'm trying to replicate this function, but on a report:
    http://sympmarc.com/2011/02/07/showing-all-versions-of-append-changes-to-existing-text-in-a-data-view-web-part-dvwp/ 
    Any suggestions to show all the appended values in a report?

    Hi Lewis75581,
    According to your description, you want to show the append changes history of a column in Reporting Services. Right?
    In Reporting Services, we don't have a feature to show the change history of a column. However, we can have workaround on SQL level. In SQL Server, we have tables: inserted table and deleted table which contains the recently inserted and deleted records.
    In this scenario, we can create a trigger in your database. Once you insert rows into the table, it will be triggered and get those inserted rows. Then insert those rows into another table. Now we can create one more dataset based on this table and display
    these inserted rows in our report. This might be the most effective workaround for your requirement. Please refer to a similar thread below:
    http://social.technet.microsoft.com/Forums/en-US/dacfb141-a976-489a-acca-789ba90e15de/ssrs-multiple-reports-with-different-parameteres-in-single-window?forum=sqlreportingservices
    Reference:
    Use the inserted and deleted Tables
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • By Default All Value Into Select List,If Select % In select List

    Hi ,
    i have created application process to extract state name in select list based on city name.
    Now i need if i don't have city name and i have select % into City Name select List then All State Name Should Come into Select List.
    Right Now if i select % into select List then It show me Blank In to state Name Select List.
    How can i extract All State Name if i select % Into Select List.
    My Application Process
    BEGIN
      OWA_UTIL.mime_header ('text/xml', FALSE);
      HTP.p ('Cache-Control: no-cache');
      HTP.p ('Pragma: no-cache');
      OWA_UTIL.http_header_close;
    htp.prn('<data>');
       HTP.prn ('<select>');
       FOR c IN (select S.NAME,S.CODE from STATE_MAS S,CITY_MAS C where C.STATE_CODE=S.CODE AND C.CODE =:SELECT5)
    LOOP
      HTP.prn ('<option value="' || c.CODE || '">' || c.NAME || '</option>');
       END LOOP;
       HTP.prn ('</select>');
    htp.prn('</data>');
    END;My City Name Table
    CREATE TABLE  "CITY_MAS"
       (     "CODE" VARCHAR2(3) NOT NULL ENABLE,
         "NAME" VARCHAR2(1000) NOT NULL ENABLE,
         "STATE_CODE" VARCHAR2(3) NOT NULL ENABLE
            )My State Name Table
    CREATE TABLE  "STATE_MAS"
       (     "CODE" VARCHAR2(3) NOT NULL ENABLE,
         "NAME" VARCHAR2(50) NOT NULL ENABLE
    /How can i do this.
    Thanks
    Edited by: 805629 on Jan 25, 2011 2:06 AM

    select S.NAME,S.CODE from STATE_MAS S join CITY_MAS C on (C.STATE_CODE=S.CODE)If you join two table you must have some equal data between this tables. and define it on your sql. Else you join will be cartesian join. if you dont want use this sql then create view
    create view TEST1 as (
    select S.NAME,S.CODE from STATE_MAS S,CITY_MAS C where C.STATE_CODE=S.CODE
    select * from test1 where  C.CODE =:SELECT5 OR :SELECT5 = '%' Edited by: Adigozalov Gurban on Jan 25, 2011 3:46 PM

  • SelectOneChoice not showing all values from database

    Hi!
    I have to put a list of values in my select one choice. When I do the query in database, all the values are selected. But, with the same query on JPQL, the select on choice do not show all values in database. Anyone can help me, please?
    P.S.: I am using SelectOneChoice with SelectItems, in JDeveloper 11g
    Code:
    <af:selectOneChoice id="selAction" value="#{row.idCmd}"
    unselectedLabel="&lt;Selecione>">
    <af:forEach var="alertTypeNode"
    items="#{bindings.actionFindAll.iteratorBinding.allRowsInRange}">
    <af:selectItem value="#{alertTypeNode.dataProvider.idCmd}"
    label="#{alertTypeNode.dataProvider.nmCmd}"
    id="si1"/>
    </af:forEach>
    </af:selectOneChoice>

    In your page binding check the rangesize setting for the executable you use - set it to -1.

  • Urgent :Show all records till selection screen date

    Hi Techis
    i want to show all records till selected date , selection screen consist of date also and my select statement is given below so any body pls tell me what changes i hav to make so that all records till particular date should b shwn
    Select statement is
    SELECT BUKRS KUNNR
    BLDAT
    GSBER
    DMBTR
    BUDAT
    GJAHR
    SGTXT
    SAKNR
    SHKZG
    PRCTR FROM BSID INTO corresponding fields of TABLE IT_FINAL WHERE BUKRS IN S_BUKRS AND
    SAKNR IN S_SAKNR AND
    GSBER IN S_GSBER AND
    PRCTR IN S_PRCTR AND
    BUDAT IN S_BUDAT AND
    KOSTL IN S_KOSTL.
    and selection screen is ...
    SELECTION-SCREEN BEGIN OF BLOCK AGE WITH FRAME TITLE TEXT-001.
    SELECT-OPTIONS : S_BUKRS FOR BSID-BUKRS," OBLIGATORY DEFAULT 'TCIL'
    S_KUNNR FOR KNA1-KUNNR,
    S_SORTL FOR KNA1-SORTL,
    S_SAKNR FOR BSID-SAKNR DEFAULT '15110013',
    S_KTOKD FOR KNA1-KTOKD ,"OBLIGATORY DEFAULT 'LTOB'
    S_GSBER FOR BSID-GSBER,
    S_PRCTR FOR BSID-PRCTR,
    S_KOSTL FOR BSID-KOSTL,
    S_GJAHR FOR BKPF-GJAHR," OBLIGATORY.
    S_BUDAT FOR BSID-BUDAT DEFAULT SY-DATUM."OPEN ITEM DATE
    *PARAMETERS : P_BUDAT LIKE BSID-BUDAT DEFAULT SY-DATUM." OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK AGE.
    rewars for help ful ans

    Hi Santosh,
    If your requirement is up to the selection date you'd better use a parameter (which can only hold one value).
    Then define a range in your program:
    DATA:
    zlt_budat_range TYPE RANGE OF budat,
    zls_budat_range LIKE LINE OF zlt_budat_range.
    zls_budat_range-sign = 'I'.
    zls_budat_range-option = 'LE'.
    zls_budat_range-low = pa_budat.
    APPEND zls_budat_range TO zlt_budat_range.
    .....AND budat IN zlt_budat_range.
    Regards,
    John.

  • Select List View All submit option

    Hello everyone,
    I currently have a select list that each value is a submit page item. Is there an option to combine all values and have a view all value in my select list. Please let me know of any options.
    Thanks
    Ryan

    Hi All,
    Got a message from cini007, but I get an error message when I want to reply to that message. I have copied the "solution" below.
    I have tried this, but it's not working. The only thing happening is it has changed the dates randomly.
    Although I have been looking for the auto shut-off option. I can't find that option only in the alarm clock options?
    cini007 posted "Re: iPhone calendar + List View All Calendars option (MobileMe)" in "iPhone calendar + List View All Calendars option (MobileMe)" on Mar 9, 2010 8:20:57 AM.
    I had Genius Bar visit with same issue—no go (was advised to reset to factory settings).
    BUT here is the SOLUTION as it happened again:
    1. set auto shut-off to never
    2. turn OFF MobileMe syncing for calendars on the iPhone (from Settings menu)
    3. wait for calendar entries to be removed—takes minutes if you have several calendars
    4. hard reset iPhone (press Home and On/Off at the same time for >5 seconds), and wait 2 minutes (about the time to reboot)
    5. restart iPhone
    6. turn ON MobileMe syncing for calendars on the iPhone (again, from Settings menu)
    Message was edited by: Arjon Stellinga
    Message was edited by: Arjon Stellinga

  • Is it possible to export a file from Organizer with the list of all the images in an album?

    Is it possible to export a file from Organizer with a list of all the images in a certain album? In filling one of my albums I did not save my edited images to the same file... they are spread out a bit.... Now I want them to make a book with them (outside of Elements).

    As far as I know, Elements does not have the ability to create lists.
    The solution to your problem of making a book outside of Elements is to place all the desired photos in an Album and then select File->Export->As New Files which gives you the ability to make a copy of every photo in the album in a new folder, from which you would create your photobook.

  • COPA Report Layout with Object List (ALV)

    Hi,
    I have question about the COPA report layout with object list (ALV). Everytime I executed the report with ALV format, the amount for quantity column always shows with 3 decimal number, menwhile for amount column always follow by 2 decimal number.
    Can anyone help me regarding this matter? I do not know how to turn off the decimal number to be 0 in this type of layout, although in the form itself I already put 0 decimal number.
    Thanks.

    Hi,
    Better to raise this issue in CO Forum. You can expect some solution.
    regards

  • Infopath - Show All values in Text box From PeoplePicker control (Display Name)

    I have One People Picker Control and one Text box.I set Value of Text box to "Display Name" and problem is that it show only First Value.so is there a way to show all values of "Display Name" in Text box ?
    Thanks

    Thanks
    the link that you provied , didnt help me but i dig into "http://www.infopathdev.com/forums/t/19623.aspx" and found solution.
    here is my solution :
    1- Create one Picker control (i changed name of control to Member ) and one Text Box
    2- Set Value of Text box to xdMath:Eval(xdMath:Eval(../my:Member/pc:Person, 'concat(pc:AccountId, ";")'), "..")
    3- if you changed name's picker control just Replace "../my:Member/pc:Person" with name's People Picker control on your Form.
    Edit 1 : I found out Why the formula in that Blog didn't work.it Because of copy/Paste
    Dont Copy/Paste Formula because maybe you get Error . how ? here :
    if you copy this formula :
    xdMath:Eval(xdMath:Eval(../my:Member/pc:Person, 'concat(pc:AccountId,
    result will be in Field :
    xdMath:Eval(xdMath:Eval(../my:Member/pc:Person, ‘concat(pc:AccountId,
    Look carefully, you see “..” instead ".." , this why you get Error Because of “
    Edit 2 : if you want to show only Display name you can Replace
    "pc:AccountId" to "pc:DisplayName".Here is Formula
    xdMath:Eval(xdMath:Eval(../my:Member/pc:Person, 'concat(pc:DisplayName, ";")'), "..")

  • SSHR - APPROVAL CHAIN IS OPEN, APPROVAL LIST SHOWS ALL SUPERVISORS

    Hi,
    In SSHR,I'm trying to raise any Approval Based Request like leave of Absence, Appraisal etc.. in approvers list shows
    all Supervisor list.
    We are using Seeded Workflow with Customized menu, Responsibility. We have the same issue with seeded responsibility also.
    The Approval Chain is open and its keep on adding the Approver List based on
    supervisor Chain.
    We haven't defined "Supervisor Hierarchy "
    Pl suggest

    You may need to configure AME and redefine the default approver rule. I believe the default rule 'out of the box' is approval up 10 levels of the supervisor hierarchy. If you change that action to the action that matches up to approval up 1 level of the supervisor hierarchy, I think you'll be where you want to be.

Maybe you are looking for

  • Lumia 625 "hangs" for 10-15 minutes and then resta...

    Hi, Just purchased a new Nokia Lumia 625 on 27 August 2013. From the afternoon of 28th the phone would hang and no activity can be performed on it. After about 10-15 minutes it will start by showing NOKIA -> Windows Phone -> normal screen. This has h

  • Using a vector graphic for a button

    Adobe Photoshop, Illustrator, and Encore CS5, everything is patched, Windows 7 64-bit I have been reading various posts, and either not seeing or not understanding something about using a vector graphic as a button on a menu. I drew a one-color shape

  • SNMP traps from Cisco 4404

    I have a Cisco 4404 WLC that sends its system logs to a syslog server (kiwicat), but I'm interested in getting the snmp traps sent over there as well.  I've configured the syslog server to accept the snmp on the right ports and I've confirmed that th

  • How do I upgrade to 10.6

    I am currently using MacOS X 10.5.8 and want to upgrade to 10.6, how do I do this? I am not computer savvy, so will need a fairly detailed step by step instruction list

  • Somethings wrong with my usb drive?

    I connect my Ipod to my computer and my computer recognizes my ipod but when I connect my camera to my computer it doesn't show up anywhere but i know it connects because on my camera it says PC.