Hi,
Under Oracle APEX 24.2.11, I have a form with an item P24_CREE_PAR type LOV, but with only one value. On the form (a modal page) calling another modal page, I have created a DA type Dialogue closed to regenerate this element.

But it is not regenerated. The LOV element P24_CREE_PAR is a select instruction :
select ab.nom || ' ' || ab.prénom || ' - ' || ab.email || ' - ' || an.fiabilite as D, ab.id as R
from ad_benevole ab
left join ad_notation an
on ab.id = an.benevole
where upper(trim(ab.username)) = upper(trim(:APP_USER))
It is ad_notation table who is modified by the modal page called. I dont' understand why this element is not regenerated properly.
Best regards.