DBA Data[Home] [Help]

APPS.PAY_RFP_BUS SQL Statements

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

Line: 19

  select null
  from   pay_report_format_mappings_f
  where  report_format_mapping_id = p_report_format_mapping_id;
Line: 90

  select null
  from   pay_report_format_parameters
  where  report_format_mapping_id = p_report_format_mapping_id
  and    parameter_name = p_parameter_name;
Line: 209

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

End chk_non_updateable_args;
Line: 236

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

End insert_validate;
Line: 270

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 295

End update_validate;
Line: 300

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

End delete_validate;