DBA Data[Home] [Help]

APPS.PQH_CRE_BUS SQL Statements

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

Line: 28

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , pqh_criteria_rate_elements cre
     where cre.criteria_rate_element_id = p_criteria_rate_element_id
       and pbg.business_group_id (+) = cre.business_group_id;
Line: 99

    select pbg.legislation_code
      from per_business_groups_perf pbg
         , pqh_criteria_rate_elements cre
     where cre.criteria_rate_element_id = p_criteria_rate_element_id
       and pbg.business_group_id (+) = cre.business_group_id;
Line: 187

Procedure chk_non_updateable_args
  (p_rec in pqh_cre_shd.g_rec_type
  ) IS
--
  l_proc     varchar2(72) := g_package || 'chk_non_updateable_args';
Line: 223

End chk_non_updateable_args;
Line: 235

  (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: 302

    select null from PQH_CRITERIA_RATE_DEFN a
    where  a.criteria_rate_defn_id = p_criteria_rate_defn_id;
Line: 385

    select null from   HR_ALL_ORGANIZATION_UNITS a
    where  a.business_group_id = p_business_group_id;
Line: 469

    select null from   PAY_ELEMENT_TYPES_F a
    where  a.element_type_id = p_element_type_id;
Line: 553

    select null from   PAY_INPUT_VALUES_F a
    where  a.input_value_id = p_input_value_id;
Line: 619

Procedure insert_validate
  (p_rec                          in pqh_cre_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 684

End insert_validate;
Line: 689

Procedure update_validate
  (p_rec                          in pqh_cre_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'update_validate';
Line: 752

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 758

End update_validate;
Line: 763

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

End delete_validate;