DBA Data[Home] [Help]

APPS.PQP_FXT_INS SQL Statements

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

Line: 75

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

  insert into pqp_flxdu_xml_tags
      (flxdu_xml_tag_id
      ,flxdu_column_id
      ,flxdu_xml_tag_name
      ,business_group_id
      ,object_version_number
      )
  Values
    (p_rec.flxdu_xml_tag_id
    ,p_rec.flxdu_column_id
    ,p_rec.flxdu_xml_tag_name
    ,p_rec.business_group_id
    ,p_rec.object_version_number
    );
Line: 126

End insert_dml;
Line: 165

Procedure pre_insert
  (p_rec  in out nocopy pqp_fxt_shd.g_rec_type
  ) is
--
  Cursor C_Sel1 is select pqp_flxdu_xml_tags_s.nextval from sys.dual;
Line: 172

    Select null
      from pqp_flxdu_xml_tags
     where flxdu_xml_tag_id =
             pqp_fxt_ins.g_flxdu_xml_tag_id_i;
Line: 177

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

End pre_insert;
Line: 252

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

    pqp_fxt_rki.after_insert
      (p_flxdu_xml_tag_id
      => p_rec.flxdu_xml_tag_id
      ,p_flxdu_column_id
      => p_rec.flxdu_column_id
      ,p_flxdu_xml_tag_name
      => p_rec.flxdu_xml_tag_name
      ,p_business_group_id
      => p_rec.business_group_id
      ,p_object_version_number
      => p_rec.object_version_number
      );
Line: 286

End post_insert;
Line: 302

  pqp_fxt_bus.insert_validate
     (p_rec
     );
Line: 311

  pqp_fxt_ins.pre_insert(p_rec);
Line: 315

  pqp_fxt_ins.insert_dml(p_rec);
Line: 319

  pqp_fxt_ins.post_insert
     (p_rec
     );