DBA Data[Home] [Help]

APPS.HR_NMF_INS SQL Statements

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

Line: 74

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

  insert into hr_name_formats
      (name_format_id
      ,format_name
      ,legislation_code
      ,user_format_choice
      ,format_mask
      ,object_version_number
      )
  Values
    (p_rec.name_format_id
    ,p_rec.format_name
    ,p_rec.legislation_code
    ,p_rec.user_format_choice
    ,p_rec.format_mask
    ,p_rec.object_version_number
    );
Line: 123

End insert_dml;
Line: 162

Procedure pre_insert
  (p_rec  in out nocopy hr_nmf_shd.g_rec_type
  ) is
--
  Cursor C_Sel1 is select hr_name_formats_s.nextval from sys.dual;
Line: 169

    Select null
      from hr_name_formats
     where name_format_id =
             hr_nmf_ins.g_name_format_id_i;
Line: 174

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

End pre_insert;
Line: 253

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

    hr_nmf_rki.after_insert
      (p_effective_date              => p_effective_date
      ,p_name_format_id
      => p_rec.name_format_id
      ,p_format_name
      => p_rec.format_name
      ,p_legislation_code
      => p_rec.legislation_code
      ,p_user_format_choice
      => p_rec.user_format_choice
      ,p_format_mask
      => p_rec.format_mask
      ,p_object_version_number
      => p_rec.object_version_number
      );
Line: 295

End post_insert;
Line: 314

  hr_nmf_bus.insert_validate
     (p_effective_date
     ,p_rec
     );
Line: 324

  hr_nmf_ins.pre_insert(p_rec);
Line: 328

  hr_nmf_ins.insert_dml(p_rec);
Line: 332

  hr_nmf_ins.post_insert
     (p_effective_date
     ,p_rec
     );