DBA Data[Home] [Help]

APPS.HR_UCX_INS SQL Statements

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

Line: 75

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

  insert into hr_ki_ui_contexts
      (ui_context_id
      ,ui_context_key
      ,user_interface_id
      ,label
      ,location
      ,object_version_number
      )
  Values
    (p_rec.ui_context_id
    ,p_rec.ui_context_key
    ,p_rec.user_interface_id
    ,p_rec.label
    ,p_rec.location
    ,p_rec.object_version_number
    );
Line: 128

End insert_dml;
Line: 167

Procedure pre_insert
  (p_rec  in out nocopy hr_ucx_shd.g_rec_type
  ) is
--
  Cursor C_Sel1 is select hr_ki_ui_contexts_s.nextval from sys.dual;
Line: 174

    Select null
      from hr_ki_ui_contexts
     where ui_context_id =
             hr_ucx_ins.g_ui_context_id_i;
Line: 179

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

End pre_insert;
Line: 264

Procedure post_insert
  (p_rec                          in hr_ucx_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'post_insert';
Line: 274

    hr_ucx_rki.after_insert
      (p_ui_context_id
      => p_rec.ui_context_id
      ,p_ui_context_key
      => p_rec.ui_context_key
      ,p_user_interface_id
      => p_rec.user_interface_id
      ,p_label
      => p_rec.label
      ,p_location
      => p_rec.location
      ,p_object_version_number
      => p_rec.object_version_number
      );
Line: 300

End post_insert;
Line: 316

  hr_ucx_bus.insert_validate
     (p_rec
     );
Line: 325

  hr_ucx_ins.pre_insert(p_rec);
Line: 329

  hr_ucx_ins.insert_dml(p_rec);
Line: 333

  hr_ucx_ins.post_insert
     (p_rec
     );