DBA Data[Home] [Help]

APPS.PAY_AMP_UPD SQL Statements

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

Line: 54

Procedure update_dml
  (p_rec in out nocopy pay_amp_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72);
Line: 61

  l_proc  := g_package||'update_dml';
Line: 72

  update pay_au_module_parameters
    set
     module_parameter_id             = p_rec.module_parameter_id
    ,module_id                       = p_rec.module_id
    ,internal_name                   = p_rec.internal_name
    ,data_type                       = p_rec.data_type
    ,input_flag                      = p_rec.input_flag
    ,context_flag                    = p_rec.context_flag
    ,output_flag                     = p_rec.output_flag
    ,result_flag                     = p_rec.result_flag
    ,error_message_flag              = p_rec.error_message_flag
    ,function_return_flag            = p_rec.function_return_flag
    ,enabled_flag                    = p_rec.enabled_flag
    ,external_name                   = p_rec.external_name
    ,database_item_name              = p_rec.database_item_name
    ,constant_value                  = p_rec.constant_value
    ,object_version_number           = p_rec.object_version_number
    where module_parameter_id = p_rec.module_parameter_id;
Line: 114

End update_dml;
Line: 148

Procedure pre_update
  (p_rec in pay_amp_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72);
Line: 155

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

End pre_update;
Line: 194

Procedure post_update
  (p_rec                          in pay_amp_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72);
Line: 201

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

End post_update;
Line: 345

  pay_amp_bus.update_validate
     (p_rec
     );
Line: 354

  pay_amp_upd.pre_update(p_rec);
Line: 358

  pay_amp_upd.update_dml(p_rec);
Line: 362

  pay_amp_upd.post_update
     (p_rec
     );