Why don't I receive not all values in a drop-down list in OBIEE?

Hello

Why I don't receive all the data which is present in the tables.and there is no limit in the County of datas? and there at - it presents another way to get all the data in the drop-down list in the tables?

Yes, there is an internal limit on the no. values that are displayed in the drop-down list on guests. I guess that its 256 in 10 g.

To increase the limit, add entry in the instanceconfig.xml below:


1000

This will increase the limit of 1000 values in the drop-down list.

Thank you

Tags: Business Intelligence

Similar Questions

  • selecting a value in the drop-down list but page must not get recharged again.

    Hello
    I created a drop-down list. After you have selected a value from him, I can get a value in the box of text below according to updon one sql query. but the problem is that I HAV to select Page Action when the changed value parameter to the set value and redirect. Thanks to her whenever I have to select a value from the drop-down list, page get updated. Is there a way that will satisfy the requirement but page does not get new dependants.
    I use apex 4.2.
    Thank you

    You can create A dynamic Action to set the value while changing the value in the Select list (drop-down list).

    Event: change
    Selection type: item (s)
    Article (s): choose your selection list item
    Action: Execute the PL/SQL Code
    PL/SQL code:

    begin
    select colum_name into :Px_text_item_name from table where column_name=:px_select_list_name;
    end;
    

    Page elements to send: px_select_list_name
    Page referred to return: Px_text_item_name

    Its work for me without refreshing the page. Assume that, if you want to pass this value to the element in another page, then use the branch for redirection and assign the value to the element on the page of another.

    Thank you
    Lacombe

  • Hello experts, I use Adobe forms in SAP. My question is, is there a any restriction for additem keyword in JavaScript? I mean, even if I use the keyword additem to add the name and value of a drop-down list, it adds up to 10000 files only. Please s

    Hello experts,

    I use Adobe Forms in SAP.

    My question is, is there a any restriction for additem keyword in JavaScript?

    I mean, even if I use the keyword additem to add the name and value of a drop-down list, it adds up to 10000 files only.

    Please sugest

    A drop-down list is the bad INTERFACE design where an element can contain more than 100 entries. It is very good in tests, but absolutely unacceptable if the form must be used by a person busy doing their work. The choice of Acrobat forms are limited, but consider a list box. Despite this, there may be limits imposed by the system or the implementation.

    Better would be

    (a) stop filling after awhile the list and add an entry saying several elements not shown, running report or use better filter

    (b) be available for all filtering of course lists

  • Adobe LiveCycle upper tiny typed value in a drop-down list

    Please let me know if there is a way for a user (someone sent a form created with Adobe LiveCycle Designer to complete and send back) to be able to click on a menu drop down populated list and type a value that corresponds to one of the values in the drop-down list, but for the user do not have to worry about whether or not they type using all capital letters lowercase, or a mixture.

    For example, my XML data for this list is a list of over 1200 names as follows:

    < text > Jim Nazium < / text >

    Chuck Roast < text > < / text >

    < text > George Towne < / text >

    etc...

    I would like the user to be able to type "Geo" or "GEO" or "geo" and taking the part of the drop-down list for the first George, it is a...

    Thank you

    I used to do this workaround was to make the data all uppercase and then forcing user uppercase input.

    To force the capital letters, you can use the following on the change event:

    XFA. Event.change = xfa.event.change.toUpperCase ();

  • How to choose a specific value in a drop-down list using javascript

    Hello

    I'm looking for a way to select a specific value in a drop-down list (the first value) using javascript? How would I do that? Thank you in advance.

    Here's how you can select the first item without having to know what it is:

    Set the value of the drop-down list to the first element cb1

    var f = getField ("cb1");

    var val = f.getItemAt (0, true);

    If (val) f.value = val;

    Change 0 to a different index if desired, or use-1 for the last item in the list. More information for the field getItemAt method is in the Acrobat JavaScript documentation.

  • Value from the drop-down list

    The value of the drop-down list are A, B, C.

    If 'A' check the box, Text_A will be equal to Text_1. (this.getField ("Text_A") = this.getField ("Text_1") .value)

    What is the code and where should I put it?

    I did the code for it, but it shows invalid left hand.

    As the combo validate the script, enter this:

    this.getField("Text_A").value ="";

    this.getField("Text_B").value ="";

    this.getField("Text_C").value ="";

    If (event.value == "A")

    this.getField("Text_A").value = this.getField ("Text_1") .value;

    Else if (event.value == "B")

    this.getField("Text_B").value = this.getField ("Text_1") .value;

    Else if (event.value == "C")

    this.getField("Text_C").value = this.getField ("Text_1") .value;

    etc.

  • Get the value of the drop-down list (selectedIndex) and the text field - does not

    Hi all

    I'm trying to find and change the values selected by the user using a drop-down list and text field. Here's the code.

    ChangeRevDetails();
    function ChangeRevDetails(){
    
    
              var myDialog = app.dialogs.add({name:"Enter copyright information"});
    
    
    //    var monthlist = col1.dropdowns.add('myList', undefined, myList);
    
    
              var col1 = myDialog.dialogColumns.add();
              var col2 = myDialog.dialogColumns.add();
      
        col1.staticTexts.add({staticLabel:"Month:"});
              col1.staticTexts.add({staticLabel:"Year:"});
        col1.staticTexts.add({staticLabel:"Rev. no.:"});
        
        var myList = [ "January", "February",  "March", "April", "March", "April", "May", "June", "July", "August", "Sepetember", "October", "November", "December" ];
    
    
         var myMonth = col2.dropdowns.add({stringList:myList, selectedIndex:0, minWidth:100});//{minWidth:100});
         var myYear = col2.textEditboxes.add({editContents:"2013", minWidth:100});   
         var MyRev = col2.textEditboxes.add({minWidth:100});
    
    
        var RevMonth = (myList [myMonth.selectedIndex]);
        var RevYear = myYear.editContents;
        var RevNumber = MyRev.editContents;
        var RevToReplace1 = RevMonth +", "+ RevYear;
        var RevToReplace2 = RevMonth +", "+ RevYear + " Rev. " + RevNumber;
    
    
        var myResult = myDialog.show();
    
    
            if(myYear.editContents == "") //entry is "" 
            { 
            alert("Please enter some text into the contents field."); 
            ChangeRevDetails(); 
            }
            else if(myResult == true) //user entered datas 
            { 
    
    
                alert (RevMonth);
                alert (RevYear);
                alert (RevNumber);
                alert (RevToReplace1);
                alert (RevToReplace2);
    
    
                app.findGrepPreferences = NothingEnum.nothing;
                app.changeGrepPreferences = NothingEnum.nothing;
    
    
                // grep find/change
                app.findGrepPreferences = app.changeGrepPreferences = null;       
                app.findGrepPreferences.findWhat = "[\\l\\u]+?\\s?\\d{4},?\\s+[\\l\\u]+\\.*\\s+\\d+";
                app.findGrepPreferences.appliedParagraphStyle = app.activeDocument.paragraphStyleGroups.item("Back page"). paragraphStyles.item("Legal_7/9");
                app.changeGrepPreferences.changeTo = RevToReplace1;
                app.changeGrepPreferences.appliedParagraphStyle = app.activeDocument.paragraphStyleGroups.item("Back page"). paragraphStyles.item("Legal_7/9");
                app.activeDocument.changeGrep();
    
    
                app.findGrepPreferences = NothingEnum.nothing;
                app.changeGrepPreferences = NothingEnum.nothing;
      
        } 
        else //implies user clicked cancel 
        { 
        myDialog.destroy(); 
        }
    
    
    }
    
    

    The problem is, it does not take the value that the user selects in the drop-down list and the text field. It takes the default value as "January" and the year is '2013' as these two values are given as selectedIndex:0 and editContents: "2013". I compared the coding with a few other scripts work as well, but it does not work. I added several alert boxes to check the value we get.

    In addition, search for it and change also does not work. Please help me on this. Thank you.

    Kind regards

    Bachi. D

    Change the order of dialogresults:

    ...

    var myYear = col2.textEditboxes.add ({editContents: "2013", minWidth:100});})
    var MyRev = col2.textEditboxes.add({minWidth:100});)
    Ditto var = myDialog.show ();
        If (myYear.editContents == "") //entry is «»
        {
        Alert ("Please enter a text in the content field.");
        ChangeRevDetails();
        }
        else //user entered if(myResult == true) datas
        {
    var RevMonth = (myList [myMonth.selectedIndex]);
    var RevYear = myYear.editContents;
    var RevNumber = MyRev.editContents;
    "var RevToReplace1 = RevMonth + ', '+ RevYear;

    "var RevToReplace2 = RevMonth + ', '+ RevYear + 'Rev' + RevNumber;

    ...

    did not have a look for the problem of change to find

  • What is the initial value of a drop-down list empty?

    I wrote a script to populate the items in a drop-down list but only if there is no existing entry.

    The problem I have is to acknowledge that the list is empty. I tried to test the value null (if dropdown.isNull = true) and test the

    rawValue = "" and a bunch of other things without good result.

    I don't know that it's easy, but apparently not for me.

    Thanks for the help!

    These commands to test the value selected by the user. As they have not chosen anything and yet they will not have a value.

    The command:

    DropDownList1.items.nodes.length

    This will give you the number of items in the DDlist. It is 1 based. Note that it will count all the elements that have been added to the drop-down list by the user.

    Paul

  • fill a list based on a value from the drop-down list box

    Well, I know a way around it but its quite long with what I know. I worked on a better solution for a day now. So maybe (or likely) someone knows better. I'm trying to fill a drop drop down based on a user selection figure in a list of check boxes. I know I could create several drop-down lists and hide away them until the user changes the value of binding. But the dropdowns would consume a lot of space in my form design in liveCycle. So is there another way or I'm stuck he made a long journey. I also need to assign values to these elements, since they change because the values are used as item numbers later that fill a text/number field later in form as a list of materials.

    Tell me if I'm wrong, please (I'm new to all this)

    in the box in the click event

    If (this.) RawValue == 1)

    {

    dropDownList1.addItem ("item # 1", "value1111");

    dropDownList1.addItem ("item # 2", "value2222");

    }

    on the other

    {

    dropDownList1.rawValue = "null";

    }

    I'm sure that null is not good and I don't know that I have to set the drop-down menu to clear items on preOpen. Or maybe not. And there is a way to add items without the addition of a new right of the line? I'm on the right track?

    Hello

    Rather than having the script in each of the boxes, you can have the script in the event preOpen the drop-down list that leans on the boxes.

    I downloaded an example here: https://acrobat.com/#d=VwREjsMgvqXpVqPu54kSNw

    Take a look at the preOpen the dropdown event.

    // clear the dropdown displayed value and items
    this.rawValue = null;
    this.clearItems(); 
    
    // repopulate the items based on the checkboxes
    if(fruit.rawValue == 1)
    {
         this.addItem("Apples", "fruit_001");
         this.addItem("Pears", "fruit_002");
         this.addItem("Oranges", "fruit_003");
         this.addItem("Bananas", "fruit_004");
         this.addItem("Grapes", "fruit_005");
    }
    
    if(cars.rawValue == 1)
    {
         this.addItem("Volvo", "car_001");
         this.addItem("Ford", "car_002");
         this.addItem("Opel", "car_003");
         this.addItem("Toyota", "car_004");
         this.addItem("Nissan", "car_005");
    }
    
    if(counties.rawValue == 1)
    {
         this.addItem("Co. Tipperary", "county_001");
         this.addItem("Co. Cork", "county_002");
         this.addItem("Co. Dublin", "county_003");
         this.addItem("Co. Clare", "county_004");
         this.addItem("Co. Kerry", "county_005");
    }
    

    Hope that helps,

    Niall

  • Police found during the opening of file and not able to solve, but drop-down list fonts?

    Hi, I just downloaded some files from a friend and he sent me a link to download the fonts. I have done so and 98% of the book of fonts, but there are two fonts, with that I fight.

    When I open the file I get the police lack of attention and it asks me to set the fonts. I can't find the police appropriate in the drop-down list if I click "solve" and begin editing the file. Then I met a text which lack of fonts and I'm able to highlight text and change the text for the police appropriate using the text tool and the font you are looking for is in the drop-down list.

    The fonts that are not working are:

    Franchise "BOLD" and BebasNeue

    The problem is there are several separate incidents where occur these fonts, and passing through each change manually would take a lot of time.

    Is there something I can do to fix all at once?


    Thank you

    Harry

    d9c317be81edbaf79cf4e5225a6f2ca8.png83f707320ba36bdec7b840e37c302791.png

    I don't see the two fonts in the list that show you.  I see Bebas Neue xxx but no Bebas Neue without any additional style. Try Bebas Neue Download Bebas Neue police - thousands of fonts for free download

  • Selecting a value in a drop-down list returns to an incorrect value

    Hello

    I have a table with drop-down lists in a column. The drop-down list provides 3 values: Yes, no and s/o. When the user selects n/d and leaves the cell, the value changes to no.

    Any thoughts on what is the cause and how to fix it?

    Thank you

    MDawn

    You can set the same value for two choices in the drop-down list. This is why it is failing the first condition in the list with the same value...

    Or

    You could not give the values for the items in the list... In this case, as they both start with "N", it will highlight the first item that starts with "N"...

    Set different values for each element in the binding tab, then click on specify point values.

    Thank you

    Srini

  • Non-visible value in the drop-down list box

    Hi all

    I have a bar of control with 5 drop-down list boxes.

    As the user, the value in a box, others are refined to include only items that are related to the user's selection.

    All works well with an exception in a single list, the value is this drink is not visible.

    Anyone has previously met and nobody knows how to correct?

    Thanks in advance for any help.

    Duh.

    In the one case where him point fails to show I was not have cast the value as a string.

    Casting solved the problem.

  • Quick question on the dashboard (limiting values in the drop-down list)?

    Hi friends,
    In my report, I have "days to start" column that lists the almost 10,000 values range from-1000 to 5000.
    I need to create a prompt for this report on the column "days to Start.

    When I create a prompt on days of starting with the operator "superior to" and "Drop Down List" control it shows me all the values in drop down.
    I need only specific values such as 30, 60, 90, 180, which might not be in the "start day" column.

    If I select "SQL result", which should be the SQL for this?

    Y at - it another way to solve this problem


    Appreciate your help on this
    Thank you

    You could make a table of VALUES with 1 column and fill it with values such as 30,60, 90... then in sql, you would write SELECT *... that simple VALUES
    (of course, it must be in DR., and you would need to expose it in the presentation layer)

    Published by: wildmight on February 19, 2009 08:18

    Also, you can try this: it works for me - but it might be slower and you can understand how to get around - also, it must be a number or the cast in digital format

    SELECT the Table. "Column" / 30 saw_0 OF the 'Subj area' ORDER BY saw_0 "

    Published by: wildmight on February 19, 2009 08:29

  • Installed Firefox 17.0.1. Drop-down lists does not open now (like the drop-down list Twitter connection).

    Installed Firefox 17.0.1.

    Drop-down lists will not open now - for example, Twitter login drop-down list (so cannot connect to Twitter). Drop-down lists has worked for all the previous versions of Firefox.

    Its happens very rarely...

    No need to do it each time...

  • Unable to increase the Indent/margin left on the value in the drop-down list (no label)

    Hello

    How is it that I can't increase the left margin for the part of the value of the drop-down fields?  Just to clarify, I'm not trying increase the left margin in the setting tab on the page of the object, but the left indent or margin of the value selected in the drop-down list.  The text is just against the left side of the drop-down list box, as you can see in the first picture below, where defence"is.   When I go into formatting, withdrawal of left which cannot be increased from zero.  Any help is appreciated.


    temp.png


    temp2.png


    Alternatively, you can cheat it. It seems to work. Define the field as a text field, and the dash. Then go to the Type of object field and replace it with a drop-down list. This seems to keep the dash.

Maybe you are looking for