DBA Data[Home] [Help]

APPS.IRC_APS_INS SQL Statements

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

Line: 75

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

  insert into irc_apl_profile_snapshots
      (profile_snapshot_id
      ,person_id
      ,profile_info
      ,object_version_number
      )
  Values
    (p_rec.profile_snapshot_id
    ,p_rec.person_id
    ,empty_clob()
    ,p_rec.object_version_number
    );
Line: 124

End insert_dml;
Line: 163

Procedure pre_insert
  (p_rec  in out nocopy irc_aps_shd.g_rec_type
  ) is
--
  Cursor C_Sel1 is select irc_apl_profile_snapshots_s.nextval from sys.dual;
Line: 170

    Select null
      from irc_apl_profile_snapshots
     where profile_snapshot_id =
             irc_aps_ins.g_profile_snapshot_id_i;
Line: 175

  l_proc   varchar2(72) := g_package||'pre_insert';
Line: 216

End pre_insert;
Line: 250

Procedure post_insert
  (p_effective_date               in date
  ,p_rec                          in irc_aps_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'post_insert';
Line: 262

    irc_aps_rki.after_insert
      (p_effective_date              => p_effective_date
      ,p_profile_snapshot_id
      => p_rec.profile_snapshot_id
      ,p_person_id
      => p_rec.person_id
      ,p_object_version_number
      => p_rec.object_version_number
      );
Line: 283

End post_insert;
Line: 300

  irc_aps_bus.insert_validate
     (p_effective_date
     ,p_rec
     );
Line: 310

  irc_aps_ins.pre_insert(p_rec);
Line: 314

  irc_aps_ins.insert_dml(p_rec);
Line: 318

  irc_aps_ins.post_insert
     (p_effective_date
     ,p_rec
     );