DBA Data[Home] [Help]

APPS.PAY_IVT_BUS SQL Statements

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

Line: 29

    select pbg.security_group_id
      from per_business_groups pbg
         , pay_input_values_f_tl ivt
     where ivt.input_value_id = p_input_value_id;
Line: 94

    select pbg.legislation_code
      from per_business_groups     pbg
         , pay_input_values_f_tl ivt
     where ivt.input_value_id = p_input_value_id
       and ivt.language = p_language;
Line: 186

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

End chk_non_updateable_args;
Line: 215

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

End insert_validate;
Line: 239

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 262

End update_validate;
Line: 267

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

End delete_validate;