DBA Data[Home] [Help]

APPS.PAY_PCT_BUS SQL Statements

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

Line: 26

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , pay_user_columns_tl pct
	 , pay_user_columns    puc
     where pct.user_column_id = p_user_column_id
     and pbg.business_group_id = puc.business_group_id;
Line: 98

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , pay_user_columns_tl pct
         , pay_user_columns    puc
     where pct.user_column_id = p_user_column_id
       and pct.language = p_language
       and pbg.business_group_id = puc.business_group_id;
Line: 192

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

End chk_non_updateable_args;
Line: 221

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

End insert_validate;
Line: 249

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 276

End update_validate;
Line: 281

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

End delete_validate;