I am developing an application which has many region in interactive report.
Now, I want to hide some of the region in the interactive report. Is it possible to do it in APEX? I am using Oracle APEX 5.1.
I Add server side condition for region of interactive report that we want to hide based on the condition.
I USE THIS CODE IN SERVER SIDE CONDITION :
Declare
l_status pls_integer;
begin
begin
select ID into l_status
from TABLE_1 where id =:ID;
exception
when others then l_status := 0 ;
end ;
if nvl(l_status ,0) = 0 then
return true;
else
return false;
end if;
end;
WHEN DYNAMIC ACTION IS TRUE THEN I USE HIDE ACTION FOR HIDE REGION BUT Does not work . can someone help ?