DBA Data[Home] [Help]

APPS.PER_ENV_BUS SQL Statements

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

Line: 28

     select pbg.security_group_id
     from per_business_groups_perf     pbg
         , per_calendar_entries ent
         , per_cal_entry_values env
     where env.cal_entry_value_id = p_cal_entry_value_id
     and   env.calendar_entry_id = ent.calendar_entry_id
     and   pbg.business_group_id (+) = ent.business_group_id;
Line: 95

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , per_calendar_entries ent
         , per_cal_entry_values env
     where env.cal_entry_value_id = p_cal_entry_value_id
     and   env.calendar_entry_id = ent.calendar_entry_id
     and   pbg.business_group_id (+) = ent.business_group_id;
Line: 185

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

End chk_non_updateable_args;
Line: 242

  SELECT 'X'
  FROM per_calendar_entries ent
  WHERE ent.calendar_entry_id = p_calendar_entry_id;
Line: 302

  SELECT ent.hierarchy_id
  FROM per_calendar_entries ent
  WHERE ent.calendar_entry_id = p_calendar_entry_id
  AND ent.value_set_id is NULL;
Line: 310

  SELECT 'X'
  FROM  per_gen_hierarchy_nodes pgn
  WHERE pgn.hierarchy_node_id = p_hierarchy_node_id
  AND   pgn.hierarchy_version_id = (select pgv.hierarchy_version_id
                                    from per_gen_hierarchy_versions pgv
                                    where  pgv.hierarchy_id = l_gen_hier
                                    and  pgv.version_number = 1);
Line: 323

  SELECT 'X'
  FROM  per_cal_entry_values env
  WHERE env.hierarchy_node_id = p_hierarchy_node_id
  AND   env.calendar_entry_id = p_calendar_entry_id;
Line: 414

  SELECT ent.VALUE_SET_ID
  FROM per_calendar_entries ent
  WHERE ent.calendar_entry_id = p_calendar_entry_id
  AND ent.hierarchy_id is NULL;
Line: 528

  SELECT name, type from per_calendar_entries
  WHERE calendar_entry_id = p_calendar_entry_id;
Line: 634

  SELECT env.calendar_entry_id, env.parent_entry_value_id
  FROM  per_cal_entry_values env
  WHERE env.cal_entry_value_id = p_parent_entry_value_id;
Line: 732

  SELECT 'Y'
  FROM PER_CAL_ENTRY_VALUES ENV
  WHERE ENV.IDENTIFIER_KEY = p_identifier_key;
Line: 767

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

End insert_validate;
Line: 822

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

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

End update_validate;
Line: 863

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

End delete_validate;