DBA Data[Home] [Help]

APPS.PER_ABT_BUS SQL Statements

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

Line: 31

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , per_absence_attendance_types abb
     where abb.absence_attendance_type_id = p_absence_attendance_type_id
       and pbg.business_group_id (+) = abb.business_group_id;
Line: 123

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

End chk_non_updateable_args;
Line: 167

  select 1
  from per_absence_attendance_types abb, per_abs_attendance_types_tl abt
  where abt.absence_attendance_type_id <> p_absence_attendance_type_id
  and   abt.language = p_rec.language
  and   abt.name = p_rec.name
  and   abb.absence_attendance_type_id = abt.absence_attendance_type_id
  and  (abb.business_group_id is null
        or (abb.business_group_id is not null and abb.business_group_id in
             (select nvl(x.business_group_id,abb.business_group_id)
              from   per_absence_attendance_types x
              where  x.absence_attendance_type_id = p_absence_attendance_type_id)));
Line: 218

Procedure chk_delete
   (p_absence_attendance_type_id  in number
   ) is
--
  l_proc  varchar2(72) := g_package||'chk_delete';
Line: 232

End chk_delete;
Line: 237

Procedure insert_validate
  (p_rec                          in per_abt_shd.g_rec_type
  ,p_absence_attendance_type_id   in number
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 260

End insert_validate;
Line: 265

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 291

End update_validate;
Line: 296

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

  per_abt_bus.chk_delete
    ( p_absence_attendance_type_id   =>  p_rec.absence_attendance_type_id );
Line: 311

End delete_validate;
Line: 338

  select 1
  from per_absence_attendance_types abb, per_abs_attendance_types_tl abt
  where (p_absence_attendance_type_id is null
         or p_absence_attendance_type_id <> abt.absence_attendance_type_id)
  and   abt.language = p_language
  and   abt.name = p_name
  and   abb.absence_attendance_type_id = abt.absence_attendance_type_id
  and  (abb.business_group_id is null
        or (abb.business_group_id is not null
            and abb.business_group_id =
                nvl(per_abt_bus.g_business_group_id,abb.business_group_id)));