Hi
Apex 24.2
I have a barcode application that inserts into an Apex Collection.
I can show a report if there are any duplicates using
SELECT c001, COUNT(*)
from apex_collections
where collection_name = '*****'
GROUP BY c001
HAVING COUNT(*) > 1
order by COUNT(*) desc;
Is there anyway I can populate a page item with Yes or No, if there are duplicates in the the collection.
I can then use this item to show or hide certain page items
Regards
Gus