DBA Data[Home] [Help]

APPS.PER_RES_BUS SQL Statements

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

Line: 27

    select pbg.security_group_id
      from per_business_groups pbg
         , per_cagr_entitlement_results res
     where res.cagr_entitlement_result_id = p_cagr_entitlement_result_id
       and pbg.business_group_id = res.business_group_id;
Line: 87

    select pbg.legislation_code
      from per_business_groups pbg
         , per_cagr_entitlement_results res
     where res.cagr_entitlement_result_id = p_cagr_entitlement_result_id
       and pbg.business_group_id (+) = res.business_group_id;
Line: 175

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

End chk_non_updateable_args;
Line: 511

  (p_insert               IN boolean
  ,p_business_group_id    IN number
  ,p_legislation_code     IN varchar2
  ,p_legislation_subgroup IN varchar2 DEFAULT NULL) IS
--
BEGIN
  --
  -- Call the supporting procedure to check startup mode
  -- EDIT_HERE: The following call should be edited if certain types of rows
  -- are not permitted.
  IF (p_insert) THEN
    hr_startup_data_api_support.chk_startup_action
      (p_generic_allowed   => TRUE
      ,p_startup_allowed   => TRUE
      ,p_user_allowed      => TRUE
      ,p_business_group_id => p_business_group_id
      ,p_legislation_code  => p_legislation_code
      ,p_legislation_subgroup => p_legislation_subgroup
      );
Line: 546

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

End insert_validate;
Line: 571

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

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

End update_validate;
Line: 603

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

End delete_validate;