Cascading LOV Parent items list too long - oracle-apex

I have many parent items in my cascading LOV. Like 14 items.
Apex throws error, when i input a few of them: Value too long by 7 characters.
I am using popup LOV and type: SQL query
Is there any way to bypass this?
Thanks in advance

Related

Issue with SELECT LIST LOV in Tabular Form

I am facing issue with Select List LOV having values more than 450.
It works fine when I limit the value by ROWNUM <= 400 or by using POP-UP LOV.
I am trying to find a solution where I don't have to do any deployment or change app from back end.
I can re produce it the issue is happening when we have large values in Select List LOV. When I changed it to Pop up LOV it works fine.

Oracle Apex 19 - lov does not read another lov selected value

I'm using Oracle Apex 19.
On a page i have two LOV's (List Of Values). The second LOV is loaded with a function which have to read the value given from the first LOV. Setting the second LOV as parent cascading LOV for the first LOV did not help. After introducing an on_change Dynamic Action that submits the page it seems to run correctly but it's too early for the page values that could not be complete.
You should use cascading List Of Values.

Oracle APEX 18.2, column filter for Popup LOV columns in Interactive Grid

I'm on Oracle APEX18.2
I have an Interactive Grid where two columns are Popup LOV based. The return value of these is text.
However I'm not able to have the column filtering feature work for these columns in the interactive grid.
When I click on the column header of these columns the filter drop down comes up empty. Even the Inetractive grid search-box doesn't search these columns. I cannot see the filter options in the attributes of these columns in the developer. I can see it for the other columns in the grid.
Is this a bug? Is there a way to have the search work for these columns?
As not much details listed here, I can see below possibilities :
return_value and display_value are not marked correctly in your LOVs causing empty list
You will also need to have default value in case you want preloaded data
Ensure you have cascading LOV parent item for 2nd LOV popup to populate data dynamically. ->
Do the following steps in your Apex Page Designer
Click on the Modal LOV column in the IG.
In the Attributes of the column search for Column Filter
Column Filter -> LOV Type => Use List of Values.
Image showing where to enable column filter
Note: If you have filled the Cascading LOV Parent Column(s) property in List of Values Section then the Column filter will be hidden because the LOV has a parent column and so apex will not be able to filter the column (Oracle Support Ticket Link)

PopUp LOV with Multi-Select

Oracle APEX gives us the option of creating a POP-UP LOV, but I couldn't find any way to have multiple select in this item.
Is there any way to have multiple select in POP-UP LOVs?
Go to Item
Type : Popup LOV
Multiple values : Yes
List of value: SQL query
select ename, empno from emp
Apex doesn't offer it, so I'd say not. Maybe with some help of e.g. JavaScript or something else, I can't tell.
Select list items or shuttles let you select more values, if you want to use them instead.

Multi Filter ORACLE Apex Popup LOV

How can I can create Popup Lov item with multi filter ?
I want to create multi filter in popup Lov item , I need:
three search filter appear;
one free text search;
two selected list.
The way you described it, solution is in 3 separate Select List items which are in parent-child relationship. Something like this:
Continents
States - whose LoV query should reference continents
Cities - whose Lov query should reference states
Never mind whether they are Pop-ups or simple select lists; they'll work just the same.