"Can select all" option in Oracle BI Publisher

Hi,
I created a parameter in my report in Oracle BI Publisher and I selected "Multiple selection" and "Can select all" for this parameter.
My data model is a sql query where I use this parameter in the "IN" condition like:
where customer_name in (:customer)
When I select in the prompt one or two or more values to "customer_name", results are correct. But when I select "All" I don't obtain results.
I noted when I select "All" is passed the "NULL" value. I don't have "All values passed" and "NULL value passed" checkboxes.
My Oracle BI Publisher version is 10.1.3.2.
Can someone help me?

Hi,
You can give range values in the Query designer.
You can include variable selection where user can enter the selections with their own selections.
Let us know if you still have any issues.
Reg
Pra

Similar Messages

  • "Select All" option in Multiselect Query Filter

    Hi,
    Is there a way to select all values in a multiselect filter option in a query. currently i have created a variable or a mandatory filter which allows me to select all values one by one and then move it to right side, but its very painful option in certain cases where in i need to select all values. Is there a way where in one can select all values with a single click in Query Filter in Web Analyzer.
    Thanks
    Akila. R

    Hi,
    You can give range values in the Query designer.
    You can include variable selection where user can enter the selections with their own selections.
    Let us know if you still have any issues.
    Reg
    Pra

  • Is there a way I can 'select all' for downloading purchase files via family sharing instead of selecting each file or folder one at a time?

    Is there a way I can 'select all' for downloading purchase files via family sharing instead of selecting each file or folder one at a time?

    or home sharing

  • I am unabel to select all rows in advance table using Select All option

    Hi all ,
    I am unable to select all the rows in advance table . Select All option in advance table selects all rows present in working page but doesnt select the rows which we get by clicking next button ... i am having a requirement to select all the rows with a single click on select all , is it possible ..
    Plz help
    Thanking you all

    Hi,
    I'm using an adf table but i don't want to have the "Select All" and "Select None" options above the table. Does someone know how i have to remove those links?
    Or is there indeed a solution to override the methodes of those links?
    Message was edited by:
    Alexander

  • How to put a select all option in a dropdown list

    i have a dropdown list
    i have to select all options from the list by putting one check box,i mean by clicking that checkbox i have to select all options.
    If any body knows give answer its urgent

    raki1221 wrote:
    i have a dropdown list
    i have to select all options from the list by putting one check box,i mean by clicking that checkbox i have to select all options.
    If any body knows give answer its urgentThis is not UI forum...post it in Swing or AWT forum..
    One thing...which API are you using for UI... AWT or Swing ?

  • I'm trying to make a AUTO slide show. I can select all the other actions like mouse clicks etc. but

    I'm trying to make a AUTO slide show. I can select all the other actions like mouse clicks etc. but ON load will not work.
    PLEASE HELP>
    I do not know how to reload/reinstall "ADOBE" golive default actions. I'm using golive cs mac version and "ON LOAD" action. I can't select it when creating a golive action.....It converts it or something to a rollover..
    How can I reistall basic adobe actions???
    Is it a bug???
    Is it a known issue???
    Do I need something??
    Am I missing something???
    Thanks a bunch..
    Kev

    In article <[email protected]>,
    [email protected] wrote:
    > I do not know how to insert the auto slideshowaction as a head action item.
    > The steps.
    > Can you explain how to do it?
    I just remembered I have a couple of screen snaps online to explain how
    it's done:
    1. place your base image and name it in the inspector
    2. from the smart objects palette grab the head action item, the one
    with a question mark in its upper, green half - the 2nd one from the
    left. Drop that into the pages head section.
    3. in the inspector set the action to run OnLoad and select the base
    image that you named in the first step and set the other parameters.
    This was done in the days of GL6, but not much had changed in GL CS.
    Anyway you might also refer to GL's online help. It describes how to set
    up all the actions that ship with GL.
    Cheers Martin

  • Selecting all columns makes oracle use more indexes than only selectng one?

    I have 3 queries here that differ only slightly, conceptually, but the plans are massively different. What I cant work out is that the difference is only in the select list.. The fields referenced in the where clause are properly indexed for this purpose
    SELECT
      scc.expiry_date
    FROM
      bw3.int_file_log_details  ifld
      INNER JOIN
      bw3.svc_card_status_change scsc
      USING
        (institution_number, file_number)
      INNER JOIN bw3.svc_client_cards scc
      USING
        (card_number)
    WHERE
      institution_number = '00000001' AND
      file_number = '00002504'This one above does a full table scan of SCC, over 3.5 million records
    SELECT
      card_number
    FROM
      bw3.int_file_log_details  ifld
      INNER JOIN
      bw3.svc_card_status_change scsc
      USING
        (institution_number, file_number)
      INNER JOIN bw3.svc_client_cards scc
      USING
        (card_number)
    WHERE
      institution_number = '00000001' AND
      file_number = '00002504'This one above does an index fast full scan of SCC's pk (which is cardnumber), as does doing a "SELECT null as dummy FROM..."
    SELECT
    FROM
      bw3.int_file_log_details  ifld
      INNER JOIN
      bw3.svc_card_status_change scsc
      USING
        (institution_number, file_number)
      INNER JOIN bw3.svc_client_cards scc
      USING
        (card_number)
    WHERE
      institution_number = '00000001' AND
      file_number = '00002504'This one above does the index range scan of the columns mentioned in the where clause and two index unique scans to link in IFLD and SCC (because they are joined on their PKs)
    I would expect all queries to run this way and completes in ~0.01 seconds
    Now, I get that oracle will sometimes use only an index instead of a table access when the requested data can be got from the index, but the actual query is pulling data from some columns not in indexes, so must be accessed in the table:
    SELECT
      scsc.card_prod_data as "Field1",
      substr(card_number,1,4)||' '||
        substr(card_number,5,4)||' '||
        substr(card_number,9,4)||' '||
        substr(card_number,13,4)||' '||
        substr(card_number,17) as "Field2",
      '                           ' as "Field3",
      scc.emboss_line_1 as "Field4",
      scc.emboss_line_2 as "Field5",
      TO_CHAR(TO_DATE(scc.last_issued_date, 'YYYYMMDD'), 'MM/YY ')||
        TO_CHAR(TO_DATE(scc.expiry_date, 'YYYYMMDD'), 'MM/YY  ')||
        '    ' as "Field6",
      'B'||
        card_number||
        '^'||
        RPAD('0', 27, ' ')||
        '^'||
        to_char(to_date(scc.expiry_date, 'YYYYMMDD'), 'YYMM')||
        service_category_code||
        '000000000000' as "Field7",
      card_number||
        '='||
        to_char(to_date(scc.expiry_date, 'YYYYMMDD'), 'YYMM')||
        service_category_code||
        '000000000000' as "Field8",
      card_number as "Field9",
      scsc.cvv_cvc2 as "Field10"
    FROM
      bw3.int_file_log_details  ifld
      INNER JOIN
      bw3.svc_card_status_change scsc
      USING
        (institution_number, file_number)
      INNER JOIN bw3.svc_client_cards scc
      USING
        (card_number)
    WHERE
      institution_number = '00000001' AND
      file_number = '00002504'This query above, which uses some data from all tables, does a table full scan of SCC, yet if I SELECT * FROM.. I get the expected index usage and table access by index rowid for all tables..
    Why is oracle doing an FTS when I choose only some columns, yet doing index access when I select * ?
    Edited by: charred on Oct 5, 2010 11:37 AM

    Selectivity of indexes?
    For a query linking these tables:
    int_file_log_details <-> svc_card_status_change <-> svc_client_cards
    I'm expecting Oracle to:
    Use an index range scan of the index on svc_card_status_change that is a nonunique index of institution_number and file number. Selectivity of this index is:
    1 institution number in the entire table
    59 distinct file numbers in the entire table
    4.1million records in the entire table
    From there, with the records it found, to use index unique scan of the PKs of int_file_log_details (file_number: 1 record required) and PK of svc_client_cards (card_number: poetntially thousands of records required)
    I can understand if oracle might decide it can get 69k records out of 4.1 million faster by FTS the cards table rather than having the indirection of the index... what I cannot understand is:
    If I select all the data from the query (SELECT *) it does unique index scans for the 2 records
    If I select say, only one non-indexed non-joined column from each table, oracle prefers a FTS of the cards table..
    Is oracle not realising that there are only 2 records I need out of cards? Why would select * differ? Is it that oracle thinks "select * is a large amount of data, so it'll be faster to use the index and target certain rows" vs "select one_column can be garnered more quickly by scanning the table and generating a lower overall memory load" ?

  • Is it possible to automatically select all a filters parameters to publish?

    Many filters have numerous parameters and selecting them all manually  is very time consuming and I find that some can be overlooked accidentally.
    So is there any way to simply select everything to publish?

    No. Publishing a parameter has to be absolutely deliberate. Also, there are parameters that cannot be published (e.g., Shape Control Points). Selecting all would generally fail since almost everything has at least one paramter that cannot be published.
    You can, however, add multiple parameters at once to a Rig widget by shift or command clicking (only in single panes at a time - like all of Fill or all of Outline, etc.) and dragging the selection onto the widget in the layers palette.
    Besides: Apple "frowns upon" using too many parameters for FCPX effects (look who's talking!) It's in the documentation -- something about "best practices" -- hahahaha.) I think they want you to think about everything you do add.

  • Selection All Option in OCR Application - OADP

    Hi All,
    I am working on the OADP interface for OCR Application. I need to understand, in the OADP interface, I need to give an option to select all which will select all the org unit and displays all the employees.
    Can anyone please guide me.
    Regards
    Ponnusamy

    Hi
    Create a variant with all the values then you can just select that variant on selections option .
    Regards,
    Chandu.

  • "Can close all" option not working for content panel within accordion widget

    Hi. I can close an accordion menu by clicking the header but it won't close by clicking on the content panel itself (even though I have can close all selected in the flyout.) I've seen tutorials where it works but I can't replicate. Seems like a bug.
    Thanks for any ideas on how to fix or a workaround.
    I'm on the CC 2014.3 release. Mac OS 10.10.2
    P

    Hello,
    if you using OAW (Outlook AnyWhere) check the authentication method
    get-OutlookAnywhere -Identity "<Servername>xpv00645\RPC (Default Web Site)" | fl *AuthenticationMethod*
    I think it is set of NTLM or Negotiate.
    Outlook 2007 has negotiate
    problems at an OAW connection
    authentication.
    Change the authentication to NTLM for
    the internal and Basic for the extenal method.
    You need to reconfigure the Outlook Exhange settings to anonymous authentication and in the proxy settings to default authentication

  • Form Field Properties, "select all option"

    A form with multiple field types such as text and check marks, having the ability to select all of a specific field type to make a properties change like "format" is very useful.  In Acrobat 8, a document with say, 50 fields of text, and 20 fields of checks, you could select all checks or text fields to make a properties change without limitations. Please quit removing useful functions.

    I guess you were using the specific Field Tool to access the common properties of specific field types. The Field tools have been abandoned (except for the Button Tool) in favor of the Form Edit Mode. (what I think of that is obvious knowing that my main tool for forms development is Acrobat 7… testing in 9 and 10 is OK, however).
    So, you might still be able to access the common properties of specific field types by switching to the Form Edit Mode and selecting the according Field tool there. A kludge, works against the hands, and may have unwanted side effects, but a possibility.
    It is a shame that we must beg in feature requests for fixing bugs…
    Max Wyss.

  • Select all option in a LOV

    Hi ,
    I have a LOV in which I would like to include a 'Select All' record. Selecting this would select all the records in the LOV and place it in the tabular form .
    Is this possible/feasible?

    Anita.I wrote:
    Hi ,
    I have a LOV in which I would like to include a 'Select All' record. Selecting this would select all the records in the LOV and place it in the tabular form .
    Is this possible/feasible?Not possible and also feasible. Use cursor and insert data in your block.
    Hope this helps
    Hamid
    Mark correct/helpful to help others to get right answer(s).*

  • Help. No 'select all' option in iTunes?

    Is there no way to select more than one track at a time in iTunes? it's relly annoying having to select every individual track when chosing which ones to put on my iPod mini when there's a few thousand to cut down to 1000.
    Anyone know any shortcuts???

    iTunes uses mostly the same shortcuts for multiple row selection as everywhere else in Windows.
    -Click a track. Hold SHIFT and click another track. Everything between and including those tracks will now be selected.
    -Click a track. Hold CTRL and click another track. Now you have just those two tracks selected.
    -Want to select all? Hit CTRL-A.
    And so forth. The only shortcut that doesn't work in iTunes is selecting multiple contingous blocks using CTRL-SHIFT-CLICK, which is kinda annoying sometimes.

  • Ssrs 2008 'select all' option to be selected for a parameter

    In a new ssrs 2008 report, the problem is all reports are not selected from the parameter called 'report' when the report runs automatically.  When the report executes, there is nothing displayed in the parameter selection  dropdown box. The user
    has to click the down arrow to select which reports they want to execute.
    Here is the siutation for the ssrs 2008 report:
    In a new SSRS 2008 report, I want to be able to allow the user to select which report they  would like to see generated by selecting the report name from a dropdown list. This is a multi-valued parameter and the parameter name is called 'report'. I
    would like the default value to be for all 5 reports to be selected.
    All 5 reports will be on the 'main' report. There will be no subreports. Each report will have its own unique matrix and the matrix will be visibile based upon what is selected in the parameter called 'report'.
    My question is how can I make the 'default' value for the parameter called 'report' have all the reports selected?
     Normally to get all multivalued parameter values selected you create a dataset and run a query against a table. However in this case, there is no table to query. The user just selects what report(s) they want executed.
    Here is the code that is used:
    1.Right-click the multiple parameter ‘repot’ to open the Properties dialog box.
    2.Specify the values below in the Available values:
     Label: report1                                                
    Value: report1
     Label: report2                                                
    Value: report2
     Label: report3                                                
    Value: report3
     Label: report4                                                
    Value: report4
     Label: report5                                                
    Value: report5
    3.Specify the values below as the Default Values:
     report1   report2   report3   report4   report5
    4.Right-click the ‘report1’ to open the Tablix Properties dialog box.
    5.Select Visibility in the left pane, type the expression below in the “Show or hide based on an expression” textbox:
     =iif(InStr(join(Parameters!report.Value,","),"report1")>0,false,true)
    6.Use the expressions below to control the visibility of the ‘report2’, ‘report3’, ‘report4’, ’report5’:
     =iif(InStr(join(Parameters!report.Value,","),"report2")>0,false,true)
     =iif(InStr(join(Parameters!report.Value,","),"report3")>0,false,true)
     =iif(InStr(join(Parameters!report.Value,","),"report4")>0,false,true)
     =iif(InStr(join(Parameters!report.Value,","),"report5")>0,false,true)
    Thus can you tell me how all values from the 'report' parameter can be selected automatically  when the ssrs report is executed?

    Pass default value as below and see
    =Split("Report1,Report2,Report3,Report4,Report5",",")
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • BI PUBLISHER : not able to select 'all' from the menu as parameter

    Hi ,
    I have created a report using a SQL query . i created a list of values using the following sql query :
    select     EDM_TRD_HDR.TRD_ID as TRD_ID
    from     MUREXEDM.EDM_TRD_HDR
    and selected this in the menu settings in parameters .
    i checked on 'can select all ' option and also on 'NULL Values passed' button.
    On clicking view , i am able to see the data for the default valu of the parameter. however, when i select 'all ' from the menu , i am just getting the column headings and no data .
    please reply if you are aware of this problem.
    Also let me know wether we can create a view selector for a BI publisher report and are there any functionalities which can be implemented in answers and not in the publisher.

    You've selected 'null value passed' so you need to write the driving query in your data model in a way that will show all values when the parameter is null:
    eg
    select *
    from
    your_table
    where
    (:p_paramter is null or your_column = :p_parameter)
    and ...
    (assuming not multi select).
    With view selector, you can create conditional regions so could mimic something like that. With regards to features they are completely different products - so almost everything.
    Regards,
    Robert

Maybe you are looking for