DBA Data[Home] [Help]

APPS.PQP_GDS_BUS SQL Statements

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

Line: 29

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , pqp_gap_duration_summary gds
         , pqp_gap_absence_plans gap
	 , ben_pl_f pln
     where gds.gap_duration_summary_id = p_gap_duration_summary_id
          and gap.gap_absence_plan_id = gds.gap_absence_plan_id
	  and pln.pl_id = gap.pl_id
          and pbg.business_group_id = pln.business_group_id;
Line: 105

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , pqp_gap_duration_summary gds
         , pqp_gap_absence_plans gap
	 , ben_pl_f pln
     where gds.gap_duration_summary_id = p_gap_duration_summary_id
           and gap.gap_absence_plan_id = gds.gap_absence_plan_id
	   and pln.pl_id = gap.pl_id
           and pbg.business_group_id = pln.business_group_id;
Line: 197

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

End chk_non_updateable_args;
Line: 226

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

End insert_validate;
Line: 254

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 281

End update_validate;
Line: 286

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

End delete_validate;