绑定变量 :app_region_id 适用于区域,但不适用于授权方案
区域 SQL 语句
SELECT WORKSPACE,APPLICATION_ID , PAGE_ID, REGION_ID, REGION_NAME,AUTHORIZATION_SCHEME, :app_region_id
from apex_application_page_regions
where region_id = :app_region_id
授权方案
方案类型:存在 SQL 查询
SQL 查询:
Select 1
from apex_application_page_regions
where region_id = :app_region_id;
我应该使用哪个绑定变量来实现区域授权。我想要实现的代码,它没有返回想要的结果
Select 1
from AD_GRP_APEX_REGION_ASSOC r,
AD_GRP_EMP e
where e.ad_grp = r.ad_grp
and e.user_id = :app_user
and r.region_id = :app_region_id