DBA Data[Home] [Help]

APPS.PAY_CNU_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_fr_contribution_usages con
     where con.contribution_usage_id = p_contribution_usage_id
       and pbg.business_group_id = con.business_group_id;
Line: 87

    select pbg.legislation_code
      from per_business_groups pbg
         , pay_fr_contribution_usages con
     where con.contribution_usage_id = p_contribution_usage_id
       and pbg.business_group_id (+) = con.business_group_id;
Line: 175

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

End chk_non_updateable_args;
Line: 295

Procedure insert_validate
  (p_effective_date               in     date
  ,p_rec                          in pay_cnu_shd.g_rec_type
  ,p_code_Rate_id                 out nocopy PAY_FR_CONTRIBUTION_USAGES.CODE_RATE_ID%TYPE
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 405

End insert_validate;
Line: 410

Procedure update_validate
  (p_effective_date               in     date
  ,p_rec                          in pay_cnu_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'update_validate';
Line: 425

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 458

End update_validate;
Line: 463

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

End delete_validate;