DBA Data[Home] [Help]

APPS.PAY_PWR_BUS SQL Statements

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

Line: 95

SELECT code
FROM   pay_wci_rates
WHERE  code = p_rate_code
AND    account_id = p_account_id
AND    business_group_id = p_business_group_id;
Line: 134

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

End insert_validate;
Line: 169

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

End update_validate;
Line: 190

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

End delete_validate;
Line: 213

    select a.legislation_code
    from   per_business_groups a,
           pay_wci_rates b
    where b.rate_id      = p_rate_id
    and   a.business_group_id = b.business_group_id;