How to Select More then 1000 values in Multi-Select prompt!!!

Hello Users,
I have Scenario where i have to pass all the values from prompt to report and the values in the prompt are coming from session variable, so whatever value access user has the report will run with that only...
Now the question is that Multi-Select Prompt is not able to take more then certain values, so is there any way that we can increase the limit for selected values??
in-short how to increase the limit for selected values in multi-select prompt??
Thanks In Advance!!!

Hey David,
The Scenario is like, we have data level security on "Unit" attribute. now based on the user selection when user logs in he should able to see the report only for those units which he/she has access.
in total we have 1800 units available, now for 5-10 units access is fine, but the question will arise when user will not have only some units access from 1800 units.
because report will not take those values from the multi-select prompt reason is that multi-select prompt is not able to take more then certain values in selected side.
now in multi-select until-unless u have data coming in selected side those values will not pass. so i have kept the sql in default for that prompt.
so when user logs in he will able to see those values in selected side for the multi-select prompt, but when values increase from some level it's going automatically in un-selected side.
i want everything on selected side of multi-select prompt.
Let me know if you need any further details.

Similar Messages

  • How to return more then one value in OC4J

    Hi,
    do I really need to create a serializable object + interface with an reader and writer to pass more then 2 variables back to the client ?
    Must this object a java bean ?
    .. or does anybody know an easier way to solve this problems.
    greetings
    Mike

    What is your client, and what are you using on the server? Are you trying to return values from a servlet to a web page, or from a servlet to a JSP, or from a EJB to a Java client?
    John H. Hi John
    We have some services currentliy implementet as PL/SQL stored Procedures on Oracle. They are now accessable with DCE and C-clients.
    The task is now to implement the services as Web-Services with SOAP. For that we want to use the OC4J. - as an SOAP Server.
    But unforunatly the only examples I found are returning only one parameter.
    The Java books learned me to create a class and an interface to pass more parameter to the client. This interface should be inherit from Serializable.
    The compiler is happy, the deployment is ok. But when I try to get the wsdl and stub I get something like: "must be an bean" or "have to be a reader and write property.
    From my point of view this looks very complicated. I want to use SOAP and therefore all parameters should be passed with one call and the parameter should be explained in the WSDL so that they could be used independed of the programming language and plattform.
    When I implement the read and write methods I will pass the parameters in one stream. When I only use Java I think this is a solution - but what is with C or other languages.
    Ciao Mike

  • How to put more than 1000 values into an Oracle IN clause

    Is there any way to get around the Oracle 10g limitation of 1000 items in a static IN clause? I have a comma delimited list of many of IDs that I want to use in an IN clause, Most of the times values may exceed 5000. And I don't have privileges to create a temporary table, so that I can put all those in that and run at a time.
    Thanks
    Sreenivas

    Although the trick of using OR would likely work, why don't you use a dynamic collection on the right-hand-side of the where in clause?
    This thread has details Re: Binding collection to right-hand-side of WHERE num_col in (:1) clause?
    Binding a VArray is not super easy, but at least with a bind value (the collection), you can have a single prepared statement, and vary just the collection you pass in. --DD                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Charts - More then 15 value in X axis

    Hi guys,
    I couldn't find how to show more then 15 value in X axis in 2D column chart. It only shows 15 values in default. I searched Chart xml but i couldnt find that which code block i need to change..
    Could you pls help me.?
    Thanks

    I just find out.
    There is an option to set Maximum Rows. It is on the series query editing page under the query text region..
    Thnks

  • How do I select more then one channel to view in tdms file viewer graph panel

    I have a TDMS file that I can view with the labview 2013 TDMS file viewer and I can select one signal out of 15 signals to view on the graph panel. however I would like be able to look at 2 or 3 signals
    on the same graph but can't seem to be able to select more then one signal at a time. Is there a way to select more then one to view?  

    I've modified the TDMS viewer in the past to allow selecting multple channels.  It's a little bit of a pain because the tree control in the viewer only allows you to select one item.  You have to edit the tree to allow multiple items.  Now your selection is an array instead of a scalar.  This means the rest of the code has to be updated, and the references to the tree in subVIs need to be updated.  Not impossible but it takes some time.  Alternativly open it in Excel with the free add-in then you can select the two columns you want and insert a graph.  Not as simple for the user but using Excel, which users should be familiar with might mean users need less training on data files.
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.

  • How to get more than 1000 rec from Oracle?

    Hi
    i got this issue from 1 of my fnd.
    can any one tell me how to over come this issue?
    I need help in solving the issue
    This is the oracle error coming when we try to export
    the records to the excel sheet.
    Macromedia][Oracle JDBC Driver][Oracle]ORA-01795:
    maximum number of expressions in a list is 1000
    This error is due to the limitation in oracle db list
    query.
    example:
    select * from FEEDBACK_IN Where feedback_in.case_id
    IN ( (param 1) , (param 2) , (param 3) , (param 4) ,
    (param 5) , (param 6) , (param 7) , (param 8) , (param
    9) , (param 10) , (param 11) , (param 12) , (param
    13)……………………….(param
    5000))
    If the list exceeds 1000, we will get the following
    error from the database. And there is a limitation in
    oracle db to 1000.
    We need to rewrite the query to avoid the list error
    if the list exceeds more then 1000 records.

    You must work with the guy who asked the same question
    yesterday.
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?catid=6&threadid=1149324&ente rthread=y

  • IN operator with more than 1000 values

    Hi,
    For a given list of IDs (PKs), I need to fetch the corresponding rows.
    The problem is that I have more than 1000 values and as far as I know that IN operator is limited to 1000
    values.
    I thought about using UNION such that each Select contains up to 1000 IDs.
    example":
    select * from temp where id in(1....1000)
    union all
    select * from temp where id in(1001....2000)
    Is there a better way to do that?
    Thanks
    dyahav

    As others have presented technical solutions, i'll present you a logical one (seemingly logical anyways, but it will depend on your application).
    I have seen some applications where you get
    select * from some_table where ... <conditions>;That result set is returned to the front end and presented to the users who then pick a series of records and submit another request to the database which ends up being...
    --note, this could be a many table join, with lots more information that just the some_table, this is illustrative only
    select * from some_table where pk_value in (super_super_duper_list_based_on_last_result_set);If this mimics what you have in your application, i'd recommend just fixing it so the users can select a reasonable set of data, OR the entire set (in the last case you'd just send the <conditions> instead of a massive list of PK values).
    Again, highly speculative but i thought i'd mention it in the off chance it's useful to you.

  • How to pass more than one value for one column in procedure

    hi
    select id, name from col_tab where dept_name in ('ECE','CIVIL');
    when i was running this it is working well.
    CREATE OR REPLACE PACKAGE pack_str
    AS
    TYPE type_refcur IS REF CURSOR;
    PROCEDURE str(char_in VARCHAR2,ans OUT type_refcur);
    END pack_str;
    CREATE OR REPLACE PACKAGE BODY pack_str
    AS
    PROCEDURE str(char_in VARCHAR2,ans OUT type_refcur)
    IS
    BEGIN
    OPEN ans FOR
    select id,name from col_tab where dept_name in char_in ;
    END str;
    END pack_str;
    the package was created.
    my doubt is
    1.how to pass more than one value for char_in (e.g ('ECE','CIVIL'))
    2. when i was storing the value in string like val = 'ECE,CIVIL' ,
    how to get the id,name for ECE and CIVIL.
    plz help me

    Hi Rebekh ,
    I am recreating your packages for the desired output.
    CREATE OR REPLACE PACKAGE pack_str
    AS
         TYPE type_refcur IS REF CURSOR;
         PROCEDURE str(char_in VARCHAR2,ans OUT type_refcur);
    END pack_str;
    CREATE OR REPLACE PACKAGE BODY pack_str
    AS
         PROCEDURE str(char_in VARCHAR2,ans OUT type_refcur)
         IS
              lv_t varchar2(200);
         BEGIN
              lv_t := REPLACE(char_in,',',''',''');
              lv_t := 'select id,name from col_tab where dept_name in (''' || lv_t || ''')' ;
              OPEN ans FOR lv_t;
         END str;
    END pack_str;
    Note:-
    Input Parameter char_in is a comma seperated value for dept_name
    -Debamalya

  • Select more than one value in a query

    Hi,
    since V7.0 we have a problem in the selection screen to select more than one value in a easy way.
    How can I select e.g. 20 BuisinessPartner with one selection?
    To create a variant isn't possible, because every user needs different values.
    Thanks

    Hi,
    Go for "Selection Options " instead of Multiple single values ..
    With this option u can get single values, multiple single values & ranges also..
    Can u please explain clearly regarding that function of whole excel sheet into a variable??
    Regards,
    Vijay
    Edited by: vijaya kumar on May 22, 2009 6:15 PM

  • Selecting more then one song

    Hi...how do I select more then one song at a time?
    Thanks!

    You hold the "Ctrl" key while clicking the songs you want highlighted OR if you want to select a whole group in a list, Just Highlight the first song, hold the shift key then select the last song in the list/group

  • Collection which stores more then 2 values

    Hi there ,
    How to create a collection which stores more then 2 values of different types like int,string,date etc and retrieve each elements separately.Will any one help me
    Thank u
    Ramya

    Go to this page:
    http://java.sun.com/docs/books/tutorial/
    and read the tutorial on Collections.

  • I like to edit single letter in the pdf file having more then 1000 page, Example "T" in place of "V" in all the 1000 pages in pdf file. Please let me know

    I like to edit single letter in the pdf file having more then 1000 page, Example "T" in place of "V" in all the 1000 pages in pdf file. Please let me know !

    In a PDF you can´t change single letter.
    You can only try to convert the PDF document into a Word document.
    Now you can search and replace a letter.

  • Set more then 3 values in link

    Hello,
    i am using oracle 10g apex 3.2.
    I created a interactive report,with shows 5 columns in page 1.
    Now 2nd column i made it as link.
    On clicking that link it goes to page 3.
    When i click the link i want to set few items of page 3 with page 1 values.
    But in the column link(report attributes) of the interactive report i could see only 3 items can be set.
    What to do if i need to set more then 3 values?
    For More info on what i am doing---------
    Page 3 is having a form whose values i need to fill from page 1.A user need to click the link i.e. col2 on page 1 and then it goes to page 3 and could be able to see some values in the form of page 3 already filled.I want to send total 6 values.
    Thanks
    Swapna

    Hi,
    Option 1>>>
    When you click link on interactive report , send the primary key to page 3 which contains the form.
    In page 3 add a on load , before header process which will populate the other items based on the primary key value..
    Option 2>>>
    You can enter comma separated item names / values in the link tab of interactive report..
    eg. Name Field you can P1_ITEM1 , P1_ITEM2 , P1_ITEM3 and in value field you can enter the corresponding values eg.. #field1# , #field2# , #field3#
    Regards,
    Shijesh
    Please reward the answer if was helpful/correct

  • Problems with query with more than 20 values in the select clause

    I have a region based on a function returning a SQL query. It needs to have more than 20 values in the select clause. When I run the page I get a no data found error in the region. I managed to reproduce this behavior with just the following as the select returned by the function:
    select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21
    from dual
    I am running the 1.3.9.00.15 release of Marvel on 9.2.0.2 of the db on Solaris.

    Hello Raju,
    I will email you the connection settings when I return to the office.
    One thing I should have mentioned: The sql string is returned from a package in the db, so the query region text I originally posted isn't quite correct.
    it is something like:
    declare
    begin
    return my_pkg.my_fnc;
    end;
    the stored package is nothing more than:
    package my_pks is
    funtion my_fnc(i_test_param in varchar2) is
    begin
    return 'select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20, 21 from dual';
    end;
    end;
    Sorry for the inaccurate info in the first post, but I am away from the server in question right now.

  • Select more than 60 values at a query isn't possible?

    Post Author: fmonsma
    CA Forum: WebIntelligence Reporting
    I can't select more than 60 values at my query. We got id numbers. I want to select the name, adress, zipcode etc. of for example 80 id numbers. BO doesn't allow me to make this query. In SQL it's no problem.
    The only thing i can do is to make a query with all id numbers and in the report itself i can select this more than 60 values. This is not very handy if you havemore than 150,000 id's in your databases.

    Rather several select fields because single returned value is a functional limitation of <select>.

Maybe you are looking for

  • Dead 17" display

    I had my 17" Studio Display set up as a secondary display on my Mac system. I was working this morning and suddenly its screen went black. The ready light was normal, not blinking. The primary display, a 20" cinema display, was fine. I'm unable to co

  • 3D TV Adjustments

    We just recently tried out the 3D capability of our LG 55LX6500 with the IMAX Under the Sea movie.  After figuring out nothing can be blocking the sensor on the TV frame (after about an hour of freaking out)....we finally could see the fish swimming

  • Mac & windows formatting on ipod

    OK, here's the deal... I have a laptop that runs windows that I've been using and I've loaded a bunch of CDs on, as well as a bunch of itunes purchased music. I just got an imac (which is very cool - just trying to get used to using a mac!), loaded i

  • Cannot download App / Song

    I just flew out to Gran Canaria on Monday and yesterday I tried updating my apps over the hotels wifi without success. It seems to download but as it gets to the end it stops and says that it cannot be downloaded at this time. Today now I just purcha

  • Photoshop won't open image from lightroom

    When I try to export an image from Lightroom to Photoshop (CC) Photoshop opens, but the image doesn't.