DBA Data[Home] [Help]

APPS.PAY_EVP_BUS SQL Statements

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

Line: 27

    select pbg.security_group_id
      from per_business_groups pbg
         , pay_event_procedures evp
     where evp.event_procedure_id = p_event_procedure_id
       and pbg.business_group_id = evp.business_group_id;
Line: 87

    select pbg.legislation_code
      from per_business_groups pbg
         , pay_event_procedures evp
     where evp.event_procedure_id = p_event_procedure_id
       and pbg.business_group_id (+) = evp.business_group_id;
Line: 175

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

End chk_non_updateable_args;
Line: 256

  select 1
  from   dual
  where  exists (
    select 1
    from   pay_dated_tables dt,
           fnd_tables tab,
           fnd_columns col
    where  dt.dated_table_id  = p_rec.dated_table_id
      and  dt.table_name = tab.table_name
      and  tab.table_id = col.table_id
      and  col.column_name = p_rec.column_name
    );
Line: 293

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

End insert_validate;
Line: 314

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 334

End update_validate;
Line: 339

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

End delete_validate;