DBA Data[Home] [Help]

APPS.PAY_NCR_BUS SQL Statements

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

Line: 110

    select null
    from   pay_accrual_plans a
    where  a.accrual_plan_id = p_accrual_plan_id;
Line: 184

  select pto_input_value_id
  from pay_accrual_plans
  where accrual_plan_id = p_accrual_plan_id;
Line: 241

  select 1
  from pay_net_calculation_rules
  where accrual_plan_id = p_accrual_plan_id
  and input_value_id = p_input_value_id
  and date_input_value_id = p_date_input_value_id
  and net_calculation_rule_id <> nvl(p_net_calc_rule_id, -1);
Line: 275

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

End insert_validate;
Line: 310

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

End update_validate;
Line: 345

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

End delete_validate;
Line: 368

    select a.legislation_code
    from   per_business_groups a,
           pay_net_calculation_rules b
    where b.net_calculation_rule_id      = p_net_calculation_rule_id
    and   a.business_group_id = b.business_group_id;