DBA Data[Home] [Help]

APPS.PER_CAI_BUS SQL Statements

The following lines contain the word 'select', 'insert', 'update' or 'delete':

Line: 32

    select pbg.security_group_id
      from per_business_groups pbg
         , per_cagr_apis cai
      --   , EDIT_HERE table_name(s) 333
     where cai.cagr_api_id = p_cagr_api_id;
Line: 98

    select pbg.legislation_code
      from per_business_groups     pbg
         , per_cagr_apis cai
      --   , EDIT_HERE table_name(s) 333
     where cai.cagr_api_id = p_cagr_api_id;
Line: 198

    SELECT null
    FROM   per_cagr_apis per
    WHERE  ((per.cagr_api_id <> p_cagr_api_id) OR
	        (p_cagr_api_id IS NULL))
    AND    per.api_name = p_api_name;
Line: 375

    SELECT cei.item_name
    FROM   per_cagr_entitlement_items cei
    WHERE  cei.cagr_api_id = p_cagr_api_id;
Line: 434

Procedure chk_non_updateable_args
  (p_effective_date               in date
  ,p_rec in per_cai_shd.g_rec_type
  ) IS
--
  l_proc     varchar2(72) := g_package || 'chk_non_updateable_args';
Line: 481

End chk_non_updateable_args;
Line: 486

Procedure insert_validate
  (p_effective_date               in date
  ,p_rec                          in per_cai_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 516

End insert_validate;
Line: 521

Procedure update_validate
  (p_effective_date               in date
  ,p_rec                          in per_cai_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'update_validate';
Line: 533

  chk_non_updateable_args
    (p_effective_date              => p_effective_date
    ,p_rec              => p_rec
    );
Line: 557

End update_validate;
Line: 562

Procedure delete_validate
  (p_rec                          in per_cai_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'delete_validate';
Line: 579

End delete_validate;