Hi,
Under APEX 24.2.0 I have a form on p. 9. The item name is P9_ADRESSE. I want to put its value in session state.

I want P9_ADRESSE to be in the session state. I tried this but it does not work as I thought. On page LOAD I made a DA :
declare
l_adresse lg_don.adresse%type;
begin
select adresse
into l_adresse
from lg_don
where id = :p9_ID;
apex_util.set_session_state('P9_ADRESSE', NVL(l_Adresse, 'Adresse inconnue'));
end;
The item does not appear in the session state. Maybe I am mistaken.
Best regards.