DBA Data[Home] [Help]

APPS.PER_ENT_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 pbg
         , per_calendar_entries ent
     where ent.calendar_entry_id = p_calendar_entry_id
       and pbg.business_group_id = ent.business_group_id;
Line: 92

    select pbg.legislation_code
      from per_business_groups_perf pbg
         , per_calendar_entries ent
     where ent.calendar_entry_id = p_calendar_entry_id
       and pbg.business_group_id (+) = ent.business_group_id;
Line: 180

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

End chk_non_updateable_args;
Line: 372

  select date_from,date_to
 from PER_ORG_STRUCTURE_VERSIONS
where org_structure_version_id = p_org_structure_version_id;
Line: 377

 select date_from, date_to
 from PER_GEN_HIERARCHY_VERSIONS
where hierarchy_id = p_hierarchy_id;
Line: 502

  Select 'x'
  From per_cal_entry_values env
  Where env.calendar_entry_id = p_calendar_entry_id;
Line: 517

      fnd_message.set_name('PER', 'PER_289964_CAL_NO_DELETE');
Line: 557

  SELECT 'Y'
  FROM  per_gen_hierarchy gen
  WHERE gen.hierarchy_id = p_hierarchy_id
  AND gen.TYPE like 'PER_CAL%'
  AND ( (p_business_group_id is not null and
         (gen.business_group_id = p_business_group_id or gen.business_group_id is null))
       OR
        (p_business_group_id is null and gen.business_group_id is null));
Line: 570

  SELECT 'Y'
  FROM  per_org_structure_versions osv
  WHERE OSV.ORGANIZATION_STRUCTURE_ID = p_organization_structure_id
  AND   OSV.ORG_STRUCTURE_VERSION_ID  = p_org_structure_version_id
  AND ( (p_business_group_id is not null and
         (osv.business_group_id = p_business_group_id or osv.business_group_id is null))
       OR
        (p_business_group_id is null and osv.business_group_id is null) );
Line: 581

  SELECT 'Y'
  FROM  fnd_flex_value_sets vs
  WHERE vs.FLEX_VALUE_SET_ID = p_value_set_id
  AND vs.VALIDATION_TYPE = 'F';
Line: 588

  SELECT decode (ent.HIERARCHY_ID, NULL,
                                        decode (ent.VALUE_SET_ID, NULL,'O','V'),
                                       'H')

  FROM  per_calendar_entries ent
  WHERE ent.calendar_entry_id = p_calendar_entry_id
  AND exists (select 'Y' from per_cal_entry_values env
              where env.calendar_entry_id = p_calendar_entry_id);
Line: 842

  SELECT 'Y'
  FROM PER_CALENDAR_ENTRIES ENT
  WHERE ENT.IDENTIFIER_KEY = p_identifier_key;
Line: 917

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

End insert_validate;
Line: 997

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

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

End update_validate;
Line: 1071

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

End delete_validate;