DBA Data[Home] [Help]

APPS.PQH_RLA_INS SQL Statements

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

Line: 75

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

  insert into pqh_rule_attributes
      (rule_attribute_id
      ,rule_set_id
      ,attribute_code
      ,operation_code
      ,attribute_value
      ,object_version_number
      )
  Values
    (p_rec.rule_attribute_id
    ,p_rec.rule_set_id
    ,p_rec.attribute_code
    ,p_rec.operation_code
    ,p_rec.attribute_value
    ,p_rec.object_version_number
    );
Line: 128

End insert_dml;
Line: 167

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

    Select null
      from pqh_rule_attributes
     where rule_attribute_id =
             pqh_rla_ins.g_rule_attribute_id_i;
Line: 179

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

End pre_insert;
Line: 254

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

    pqh_rla_rki.after_insert
      (p_rule_attribute_id
      => p_rec.rule_attribute_id
      ,p_rule_set_id
      => p_rec.rule_set_id
      ,p_attribute_code
      => p_rec.attribute_code
      ,p_operation_code
      => p_rec.operation_code
      ,p_attribute_value
      => p_rec.attribute_value
      ,p_object_version_number
      => p_rec.object_version_number
      );
Line: 290

End post_insert;
Line: 306

  pqh_rla_bus.insert_validate
     (p_rec
     );
Line: 315

  pqh_rla_ins.pre_insert(p_rec);
Line: 319

  pqh_rla_ins.insert_dml(p_rec);
Line: 323

  pqh_rla_ins.post_insert
     (p_rec
     );