📜  oracle apex 防止初始加载 - SQL 代码示例

📅  最后修改于: 2022-03-11 15:05:15.649000             🧑  作者: Mango

代码示例1
-- 1. Put a HIDDEN field P1_IS_LOADED in the region

-- 2. Requesting datas in region becomes:
SELECT /* your columns */
  FROM /* your tables */
WHERE 1 = 1 
  AND nvl(:P1_IS_LOADED, 'N') = 'Y'
   
-- 3. At page level:
>> Post-Rendering > After Regions > Computation > add one computation with: 
    Computation: Static Value: Y