Using the pre-installed domain sys.day_enum_d for reference, how do I turn an enum into a LOV for APEX?
I'm wanting the LOV to show distinct enum_value and results of domain_display()
This doesn't work: all lov_text values are null
select distinct e.enum_value lov_id, domain_display( e.enum_value ) lov_text
from sys.day_enum_d e
(DB 23.4 VirtualBox)