Change Page Read only on runtime in Oracle APEX
Table of contents
No headings in the article.
Make a process to change Page Read only on runtime
BEGIN UPDATE APEX_200200.wwv_flow_steps
SET READ_ONLY_WHEN_TYPE = 'EXISTS' , READ_ONLY_WHEN = 'select 1 from dual where 1=1'
WHERE FLOW_ID = :P7_FLOW_ID and ID = :P7_STEP_ID ;
end;