DBA Data[Home] [Help]

APPS.PAY_AMT_BUS SQL Statements

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

Line: 111

Procedure chk_non_updateable_args
  (p_rec in pay_amt_shd.g_rec_type
  ) IS
--
  l_proc     varchar2(72);
Line: 119

  l_proc := g_package || 'chk_non_updateable_args';
Line: 137

End chk_non_updateable_args;
Line: 142

Procedure insert_validate
  (p_rec                          in pay_amt_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72);
Line: 149

  l_proc := g_package||'insert_validate';
Line: 160

End insert_validate;
Line: 165

Procedure update_validate
  (p_rec                          in pay_amt_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72);
Line: 172

  l_proc := g_package||'update_validate';
Line: 181

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 187

End update_validate;
Line: 192

Procedure delete_validate
  (p_rec                          in pay_amt_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72);
Line: 199

  l_proc := g_package||'delete_validate';
Line: 206

End delete_validate;