DBA Data[Home] [Help]

APPS.PAY_BTH_INS SQL Statements

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

Line: 53

Procedure insert_dml
  (p_rec in out nocopy pay_bth_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_dml';
Line: 67

  insert into pay_batch_headers
      (batch_id
      ,business_group_id
      ,batch_name
      ,batch_status
      ,action_if_exists
      ,batch_reference
      ,batch_source
      ,batch_type
      ,comments
      ,date_effective_changes
      ,purge_after_transfer
      ,reject_if_future_changes
      ,reject_if_results_exists
      ,purge_after_rollback
      ,REJECT_ENTRY_NOT_REMOVED
      ,ROLLBACK_ENTRY_UPDATES
      ,object_version_number
      )
  Values
    (p_rec.batch_id
    ,p_rec.business_group_id
    ,p_rec.batch_name
    ,p_rec.batch_status
    ,p_rec.action_if_exists
    ,p_rec.batch_reference
    ,p_rec.batch_source
    ,p_rec.batch_type
    ,p_rec.comments
    ,p_rec.date_effective_changes
    ,p_rec.purge_after_transfer
    ,p_rec.reject_if_future_changes
    ,p_rec.reject_if_results_exists
    ,p_rec.purge_after_rollback
    ,p_rec.REJECT_ENTRY_NOT_REMOVED
    ,p_rec.ROLLBACK_ENTRY_UPDATES
    ,p_rec.object_version_number
    );
Line: 128

End insert_dml;
Line: 167

Procedure pre_insert
  (p_rec  in out nocopy pay_bth_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'pre_insert';
Line: 173

  Cursor C_Sel1 is select pay_batch_headers_s.nextval from sys.dual;
Line: 186

End pre_insert;
Line: 220

Procedure post_insert
  (p_session_date                 in date
  ,p_rec                          in pay_bth_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'post_insert';
Line: 231

    pay_bth_rki.after_insert
      (p_session_date
      => p_session_date
      ,p_batch_id
      => p_rec.batch_id
      ,p_business_group_id
      => p_rec.business_group_id
      ,p_batch_name
      => p_rec.batch_name
      ,p_batch_status
      => p_rec.batch_status
      ,p_action_if_exists
      => p_rec.action_if_exists
      ,p_batch_reference
      => p_rec.batch_reference
      ,p_batch_source
      => p_rec.batch_source
      ,p_batch_type
      => p_rec.batch_type
      ,p_comments
      => p_rec.comments
      ,p_date_effective_changes
      => p_rec.date_effective_changes
      ,p_purge_after_transfer
      => p_rec.purge_after_transfer
      ,p_reject_if_future_changes
      => p_rec.reject_if_future_changes
      ,p_object_version_number
      => p_rec.object_version_number
      ,p_reject_if_results_exists
      => p_rec.reject_if_results_exists
      ,p_purge_after_rollback
      => p_rec.purge_after_rollback
      ,p_REJECT_ENTRY_NOT_REMOVED
      => p_rec.REJECT_ENTRY_NOT_REMOVED
      ,p_ROLLBACK_ENTRY_UPDATES
      => p_rec.ROLLBACK_ENTRY_UPDATES
      );
Line: 281

End post_insert;
Line: 298

  pay_bth_bus.insert_validate
     (p_session_date,
      p_rec
     );
Line: 305

  pay_bth_ins.pre_insert(p_rec);
Line: 309

  pay_bth_ins.insert_dml(p_rec);
Line: 313

  pay_bth_ins.post_insert
     (p_session_date
     ,p_rec
     );
Line: 342

  ,p_ROLLBACK_ENTRY_UPDATES         in     varchar2 default null
  ) is
--
  l_rec	  pay_bth_shd.g_rec_type;
Line: 371

    ,p_ROLLBACK_ENTRY_UPDATES
    ,null
    );