DBA Data[Home] [Help]

APPS.IGF_AW_TARGET_GRP_PKG SQL Statements

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

Line: 46

    x_last_update_date                  IN     DATE        ,
    x_last_updated_by                   IN     NUMBER      ,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By : prchandr
  ||  Created On : 13-JUL-2001
  ||  Purpose : Initialises the Old and New references for the columns of the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  ||  veramach        06-NOV-2003     FA 125 Multiple distr methods
  ||                                  Added new column adplans_id
  */

    CURSOR cur_old_ref_values IS
      SELECT   *
      FROM     IGF_AW_TARGET_GRP_ALL
      WHERE    rowid = x_rowid;
Line: 75

    IF ((cur_old_ref_values%NOTFOUND) AND (p_action NOT IN ('INSERT', 'VALIDATE_INSERT'))) THEN
      CLOSE cur_old_ref_values;
Line: 77

      fnd_message.set_name ('FND', 'FORM_RECORD_DELETED');
Line: 119

    IF (p_action = 'UPDATE') THEN
      new_references.creation_date                   := old_references.creation_date;
Line: 127

    new_references.last_update_date                  := x_last_update_date;
Line: 128

    new_references.last_updated_by                   := x_last_updated_by;
Line: 129

    new_references.last_update_login                 := x_last_update_login;
Line: 152

      fnd_message.set_name ('FND', 'FORM_RECORD_DELETED');
Line: 219

      SELECT   rowid
      FROM     igf_aw_target_grp_all
      WHERE    tgrp_id = x_tgrp_id
      FOR UPDATE NOWAIT;
Line: 262

      SELECT   rowid
      FROM     igf_aw_target_grp
      WHERE    group_cd = x_group_cd
      AND      cal_type = x_cal_type
      AND      sequence_number = x_sequence_number
      AND      ((l_rowid IS NULL) OR (rowid <> l_rowid))
      FOR UPDATE NOWAIT;
Line: 325

    x_last_update_date                  IN     DATE        ,
    x_last_updated_by                   IN     NUMBER      ,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By : prchandr
  ||  Created On : 13-JUL-2001
  ||  Purpose : Initialises the columns, Checks Constraints, Calls the
  ||            Trigger Handlers for the table, before any DML operation.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  ||  veramach        06-NOV-2003     FA 125 Multiple distr methods
  ||                                  Added new column adplans_id
  ||  kpadiyar        11-SEP-2001     Removed the call to check_uk_child_existance
  ||                                  from the Check for the UPDATE and VALIDATE_UPDATE
  ||                                  call which is not required.
  ||                                  Bug No # 1978576 - WRONG ERROR IS PROMPTING OUT NOCOPY
  */
  BEGIN

    set_column_values (
      p_action,
      x_rowid,
      x_group_cd,
      x_description,
      x_max_grant_amt,
      x_max_grant_perct,
      x_max_grant_perct_fact,
      x_max_loan_amt,
      x_max_loan_perct,
      x_max_loan_perct_fact,
      x_max_work_amt,
      x_max_work_perct,
      x_max_work_perct_fact,
      x_max_shelp_amt,
      x_max_shelp_perct,
      x_max_shelp_perct_fact,
      x_max_gap_amt,
      x_max_gap_perct,
      x_max_gap_perct_fact,
      x_use_fixed_costs,
      x_max_aid_pkg,
      x_max_gift_amt,
      x_max_gift_perct ,
      x_max_gift_perct_fact,
      x_max_schlrshp_amt,
      x_max_schlrshp_perct ,
      x_max_schlrshp_perct_fact,
      x_cal_type,
      x_sequence_number,
      x_rule_order,
      x_s_rule_call_cd,
      x_rul_sequence_number,
      x_active,
      x_tgrp_id,
      x_adplans_id,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 390

    IF (p_action = 'INSERT') THEN
      -- Call all the procedures related to Before Insert.
      IF ( get_pk_for_validation(
             new_references.tgrp_id
           )
         ) THEN
        fnd_message.set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
Line: 402

    ELSIF (p_action = 'UPDATE') THEN
      -- Call all the procedures related to Before Update.
      check_uniqueness;
Line: 406

    ELSIF (p_action = 'DELETE') THEN
      -- Call all the procedures related to Before Delete.
      check_child_existance;
Line: 409

    ELSIF (p_action = 'VALIDATE_INSERT') THEN
      -- Call all the procedures related to Before Insert.
      IF ( get_pk_for_validation (
             new_references.tgrp_id
           )
         ) THEN
        fnd_message.set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
Line: 420

    ELSIF (p_action = 'VALIDATE_UPDATE') THEN
      check_uniqueness;
Line: 422

    ELSIF (p_action = 'VALIDATE_DELETE') THEN
      check_child_existance;
Line: 445

      SELECT   rowid
      FROM     igf_aw_awd_frml_det_all
      WHERE   ((adplans_id = x_adplans_id));
Line: 466

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_group_cd                          IN     VARCHAR2,
    x_description                       IN     VARCHAR2,
    x_max_grant_amt                     IN     NUMBER,
    x_max_grant_perct                   IN     NUMBER,
    x_max_grant_perct_fact              IN     VARCHAR2,
    x_max_loan_amt                      IN     NUMBER,
    x_max_loan_perct                    IN     NUMBER,
    x_max_loan_perct_fact               IN     VARCHAR2,
    x_max_work_amt                      IN     NUMBER,
    x_max_work_perct                    IN     NUMBER,
    x_max_work_perct_fact               IN     VARCHAR2,
    x_max_shelp_amt                     IN     NUMBER,
    x_max_shelp_perct                   IN     NUMBER,
    x_max_shelp_perct_fact              IN     VARCHAR2,
    x_max_gap_amt                       IN     NUMBER,
    x_max_gap_perct                     IN     NUMBER,
    x_max_gap_perct_fact                IN     VARCHAR2,
    x_use_fixed_costs                   IN     VARCHAR2,
    x_max_aid_pkg                       IN     NUMBER,
    x_max_gift_amt                      IN     NUMBER,
    x_max_gift_perct                    IN     NUMBER,
    x_max_gift_perct_fact               IN     VARCHAR2,
    x_max_schlrshp_amt                  IN     NUMBER,
    x_max_schlrshp_perct                IN     NUMBER,
    x_max_schlrshp_perct_fact           IN     VARCHAR2,
     x_cal_type                          IN     VARCHAR2 ,
    x_sequence_number                   IN     NUMBER   ,
    x_rule_order                        IN     NUMBER,
    x_s_rule_call_cd                    IN     VARCHAR2,
    x_rul_sequence_number               IN     NUMBER,
    x_active                            IN     VARCHAR2,
    x_tgrp_id                           IN OUT NOCOPY NUMBER,
    x_mode                              IN     VARCHAR2,
    x_adplans_id                        IN     NUMBER
  ) AS
  /*
  ||  Created By : prchandr
  ||  Created On : 13-JUL-2001
  ||  Purpose : Handles the INSERT DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  ||  veramach        06-NOV-2003     FA 125 Multiple distr methods
  ||                                  Added new column adplans_id
  */
    CURSOR c IS
      SELECT   rowid
      FROM     igf_aw_target_grp_all
      WHERE    tgrp_id                           = x_tgrp_id;
Line: 519

    x_last_update_date           DATE;
Line: 520

    x_last_updated_by            NUMBER;
Line: 521

    x_last_update_login          NUMBER;
Line: 525

    x_last_update_date := SYSDATE;
Line: 527

      x_last_updated_by := 1;
Line: 528

      x_last_update_login := 0;
Line: 530

      x_last_updated_by := fnd_global.user_id;
Line: 531

      IF (x_last_updated_by IS NULL) THEN
        x_last_updated_by := -1;
Line: 534

      x_last_update_login := fnd_global.login_id;
Line: 535

      IF (x_last_update_login IS NULL) THEN
        x_last_update_login := -1;
Line: 544

    SELECT    igf_aw_target_grp_all_s.NEXTVAL
    INTO      x_tgrp_id
    FROM      dual;
Line: 551

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_group_cd                          => x_group_cd,
      x_description                       => x_description,
      x_max_grant_amt                     => x_max_grant_amt,
      x_max_grant_perct                   => x_max_grant_perct,
      x_max_grant_perct_fact              => x_max_grant_perct_fact,
      x_max_loan_amt                      => x_max_loan_amt,
      x_max_loan_perct                    => x_max_loan_perct,
      x_max_loan_perct_fact               => x_max_loan_perct_fact,
      x_max_work_amt                      => x_max_work_amt,
      x_max_work_perct                    => x_max_work_perct,
      x_max_work_perct_fact               => x_max_work_perct_fact,
      x_max_shelp_amt                     => x_max_shelp_amt,
      x_max_shelp_perct                   => x_max_shelp_perct,
      x_max_shelp_perct_fact              => x_max_shelp_perct_fact,
      x_max_gap_amt                       => x_max_gap_amt,
      x_max_gap_perct                     => x_max_gap_perct,
      x_max_gap_perct_fact                => x_max_gap_perct_fact,
      x_use_fixed_costs                   => x_use_fixed_costs,
      x_max_aid_pkg                       => x_max_aid_pkg,
      x_max_gift_amt                      => x_max_gift_amt,
      x_max_gift_perct                    => x_max_gift_perct,
      x_max_gift_perct_fact               => x_max_gift_perct_fact,
      x_max_schlrshp_amt                  => x_max_schlrshp_amt,
      x_max_schlrshp_perct                => x_max_schlrshp_perct,
      x_max_schlrshp_perct_fact           => x_max_schlrshp_perct_fact,
      x_cal_type                        => x_cal_type,
      x_sequence_number                   => x_sequence_number,
      x_rule_order                        => x_rule_order,
      x_s_rule_call_cd                    => x_s_rule_call_cd,
      x_rul_sequence_number               => x_rul_sequence_number,
      x_active                            => x_active,
      x_tgrp_id                           => x_tgrp_id,
      x_adplans_id                        => x_adplans_id,
      x_creation_date                     => x_last_update_date,
      x_created_by                        => x_last_updated_by,
      x_last_update_date                  => x_last_update_date,
      x_last_updated_by                   => x_last_updated_by,
      x_last_update_login                 => x_last_update_login
    );
Line: 593

    INSERT INTO igf_aw_target_grp_all (
      group_cd,
      description,
      max_grant_amt,
      max_grant_perct,
      max_grant_perct_fact,
      max_loan_amt,
      max_loan_perct,
      max_loan_perct_fact,
      max_work_amt,
      max_work_perct,
      max_work_perct_fact,
      max_shelp_amt,
      max_shelp_perct,
      max_shelp_perct_fact,
      max_gap_amt,
      max_gap_perct,
      max_gap_perct_fact,
      use_fixed_costs,
      max_aid_pkg,
      max_gift_amt,
      max_gift_perct,
      max_gift_perct_fact,
      max_schlrshp_amt,
      max_schlrshp_perct,
      max_schlrshp_perct_fact,
      cal_type,
      sequence_number,
      rule_order,
      s_rule_call_cd,
      rul_sequence_number,
      active,
      org_id,
      tgrp_id,
      adplans_id,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      new_references.group_cd,
      new_references.description,
      new_references.max_grant_amt,
      new_references.max_grant_perct,
      new_references.max_grant_perct_fact,
      new_references.max_loan_amt,
      new_references.max_loan_perct,
      new_references.max_loan_perct_fact,
      new_references.max_work_amt,
      new_references.max_work_perct,
      new_references.max_work_perct_fact,
      new_references.max_shelp_amt,
      new_references.max_shelp_perct,
      new_references.max_shelp_perct_fact,
      new_references.max_gap_amt,
      new_references.max_gap_perct,
      new_references.max_gap_perct_fact,
      new_references.use_fixed_costs,
      new_references.max_aid_pkg,
      new_references.max_gift_amt,
      new_references.max_gift_perct,
      new_references.max_gift_perct_fact,
      new_references.max_schlrshp_amt,
      new_references.max_schlrshp_perct,
      new_references.max_schlrshp_perct_fact,
     new_references.cal_type,
      new_references.sequence_number,
      new_references.rule_order,
      new_references.s_rule_call_cd,
      new_references.rul_sequence_number,
      new_references.active,
      new_references.org_id,
      new_references.tgrp_id,
      new_references.adplans_id,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 683

  END insert_row;
Line: 734

      SELECT
        group_cd,
        description,
        max_grant_amt,
        max_grant_perct,
        max_grant_perct_fact,
        max_loan_amt,
        max_loan_perct,
        max_loan_perct_fact,
        max_work_amt,
        max_work_perct,
        max_work_perct_fact,
        max_shelp_amt,
        max_shelp_perct,
        max_shelp_perct_fact,
        max_gap_amt,
        max_gap_perct,
        max_gap_perct_fact,
        use_fixed_costs,
        max_aid_pkg,
        max_gift_amt,
        max_gift_perct ,
        max_gift_perct_fact,
        max_schlrshp_amt,
        max_schlrshp_perct ,
        max_schlrshp_perct_fact,
        cal_type,
        sequence_number,
        rule_order,
        s_rule_call_cd,
        rul_sequence_number,
        active,
        adplans_id
      FROM  igf_aw_target_grp_all
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 778

      fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
Line: 830

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_group_cd                          IN     VARCHAR2,
    x_description                       IN     VARCHAR2,
    x_max_grant_amt                     IN     NUMBER,
    x_max_grant_perct                   IN     NUMBER,
    x_max_grant_perct_fact              IN     VARCHAR2,
    x_max_loan_amt                      IN     NUMBER,
    x_max_loan_perct                    IN     NUMBER,
    x_max_loan_perct_fact               IN     VARCHAR2,
    x_max_work_amt                      IN     NUMBER,
    x_max_work_perct                    IN     NUMBER,
    x_max_work_perct_fact               IN     VARCHAR2,
    x_max_shelp_amt                     IN     NUMBER,
    x_max_shelp_perct                   IN     NUMBER,
    x_max_shelp_perct_fact              IN     VARCHAR2,
    x_max_gap_amt                       IN     NUMBER,
    x_max_gap_perct                     IN     NUMBER,
    x_max_gap_perct_fact                IN     VARCHAR2,
    x_use_fixed_costs                   IN     VARCHAR2,
    x_max_aid_pkg                       IN     NUMBER,
    x_max_gift_amt                      IN     NUMBER,
    x_max_gift_perct                    IN     NUMBER,
    x_max_gift_perct_fact               IN     VARCHAR2,
    x_max_schlrshp_amt                  IN     NUMBER,
    x_max_schlrshp_perct                IN     NUMBER,
    x_max_schlrshp_perct_fact           IN     VARCHAR2,
    x_cal_type                          IN     VARCHAR2 ,
    x_sequence_number                   IN     NUMBER   ,
    x_rule_order                        IN     NUMBER,
    x_s_rule_call_cd                    IN     VARCHAR2,
    x_rul_sequence_number               IN     NUMBER,
    x_active                            IN     VARCHAR2,
    x_tgrp_id                           IN     NUMBER,
    x_mode                              IN     VARCHAR2,
    x_adplans_id                        IN     NUMBER
  ) AS
  /*
  ||  Created By : prchandr
  ||  Created On : 13-JUL-2001
  ||  Purpose : Handles the UPDATE DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  ||  veramach        06-NOV-2003     FA 125 Multiple distr methods
  ||                                  Added new column adplans_id
  */
    x_last_update_date           DATE ;
Line: 879

    x_last_updated_by            NUMBER;
Line: 880

    x_last_update_login          NUMBER;
Line: 884

    x_last_update_date := SYSDATE;
Line: 886

      x_last_updated_by := 1;
Line: 887

      x_last_update_login := 0;
Line: 889

      x_last_updated_by := fnd_global.user_id;
Line: 890

      IF x_last_updated_by IS NULL THEN
        x_last_updated_by := -1;
Line: 893

      x_last_update_login := fnd_global.login_id;
Line: 894

      IF (x_last_update_login IS NULL) THEN
        x_last_update_login := -1;
Line: 904

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_group_cd                          => x_group_cd,
      x_description                       => x_description,
      x_max_grant_amt                     => x_max_grant_amt,
      x_max_grant_perct                   => x_max_grant_perct,
      x_max_grant_perct_fact              => x_max_grant_perct_fact,
      x_max_loan_amt                      => x_max_loan_amt,
      x_max_loan_perct                    => x_max_loan_perct,
      x_max_loan_perct_fact               => x_max_loan_perct_fact,
      x_max_work_amt                      => x_max_work_amt,
      x_max_work_perct                    => x_max_work_perct,
      x_max_work_perct_fact               => x_max_work_perct_fact,
      x_max_shelp_amt                     => x_max_shelp_amt,
      x_max_shelp_perct                   => x_max_shelp_perct,
      x_max_shelp_perct_fact              => x_max_shelp_perct_fact,
      x_max_gap_amt                       => x_max_gap_amt,
      x_max_gap_perct                     => x_max_gap_perct,
      x_max_gap_perct_fact                => x_max_gap_perct_fact,
      x_use_fixed_costs                   => x_use_fixed_costs,
      x_max_aid_pkg                       => x_max_aid_pkg,
      x_max_gift_amt                      => x_max_gift_amt,
      x_max_gift_perct                    => x_max_gift_perct,
      x_max_gift_perct_fact               => x_max_gift_perct_fact,
      x_max_schlrshp_amt                  => x_max_schlrshp_amt,
      x_max_schlrshp_perct                => x_max_schlrshp_perct,
      x_max_schlrshp_perct_fact           => x_max_schlrshp_perct_fact,
      x_cal_type                        => x_cal_type,
      x_sequence_number                 => x_sequence_number,
      x_rule_order                        => x_rule_order,
      x_s_rule_call_cd                    => x_s_rule_call_cd,
      x_rul_sequence_number               => x_rul_sequence_number,
      x_active                            => x_active,
      x_tgrp_id                           => x_tgrp_id,
      x_adplans_id                        => x_adplans_id,
      x_creation_date                     => x_last_update_date,
      x_created_by                        => x_last_updated_by,
      x_last_update_date                  => x_last_update_date,
      x_last_updated_by                   => x_last_updated_by,
      x_last_update_login                 => x_last_update_login
    );
Line: 946

    UPDATE igf_aw_target_grp_all
      SET
        group_cd                          = new_references.group_cd,
        description                       = new_references.description,
        max_grant_amt                     = new_references.max_grant_amt,
        max_grant_perct                   = new_references.max_grant_perct,
        max_grant_perct_fact              = new_references.max_grant_perct_fact,
        max_loan_amt                      = new_references.max_loan_amt,
        max_loan_perct                    = new_references.max_loan_perct,
        max_loan_perct_fact               = new_references.max_loan_perct_fact,
        max_work_amt                      = new_references.max_work_amt,
        max_work_perct                    = new_references.max_work_perct,
        max_work_perct_fact               = new_references.max_work_perct_fact,
        max_shelp_amt                     = new_references.max_shelp_amt,
        max_shelp_perct                   = new_references.max_shelp_perct,
        max_shelp_perct_fact              = new_references.max_shelp_perct_fact,
        max_gap_amt                       = new_references.max_gap_amt,
        max_gap_perct                     = new_references.max_gap_perct,
        max_gap_perct_fact                = new_references.max_gap_perct_fact,
        use_fixed_costs                   = new_references.use_fixed_costs,
        max_aid_pkg                       = new_references.max_aid_pkg,
        max_gift_amt                      = new_references.max_gift_amt,
        max_gift_perct                    = new_references.max_gift_perct,
        max_gift_perct_fact               = new_references.max_gift_perct_fact,
        max_schlrshp_amt                  = new_references.max_schlrshp_amt,
        max_schlrshp_perct                = new_references.max_schlrshp_perct,
        max_schlrshp_perct_fact           = new_references.max_schlrshp_perct_fact,
        cal_type                          = new_references.cal_type,
        sequence_number                   = new_references.sequence_number,
        rule_order                        = new_references.rule_order,
        s_rule_call_cd                    = new_references.s_rule_call_cd,
        rul_sequence_number               = new_references.rul_sequence_number,
        active                            = new_references.active,
        adplans_id                        = new_references.adplans_id,
        last_update_date                  = x_last_update_date,
        last_updated_by                   = x_last_updated_by,
        last_update_login                 = x_last_update_login
      WHERE rowid = x_rowid;
Line: 989

  END update_row;
Line: 1032

  ||  Purpose : Adds a row if there is no existing row, otherwise updates existing row in the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  ||  veramach        06-NOV-2003     FA 125 Multiple distr methods
  ||                                  Added new column adplans_id
  */
    CURSOR c1 IS
      SELECT   rowid
      FROM     igf_aw_target_grp_all
      WHERE    tgrp_id                           = x_tgrp_id;
Line: 1052

      insert_row (
        x_rowid,
        x_group_cd,
        x_description,
        x_max_grant_amt,
        x_max_grant_perct,
        x_max_grant_perct_fact,
        x_max_loan_amt,
        x_max_loan_perct,
        x_max_loan_perct_fact,
        x_max_work_amt,
        x_max_work_perct,
        x_max_work_perct_fact,
        x_max_shelp_amt,
        x_max_shelp_perct,
        x_max_shelp_perct_fact,
        x_max_gap_amt,
        x_max_gap_perct,
        x_max_gap_perct_fact,
        x_use_fixed_costs,
        x_max_aid_pkg,
        x_max_gift_amt,
        x_max_gift_perct ,
        x_max_gift_perct_fact,
        x_max_schlrshp_amt,
        x_max_schlrshp_perct ,
        x_max_schlrshp_perct_fact,
        x_cal_type,
        x_sequence_number,
        x_rule_order,
        x_s_rule_call_cd,
        x_rul_sequence_number,
        x_active,
        x_tgrp_id,
        x_mode,
        x_adplans_id
      );
Line: 1093

    update_row (
      x_rowid,
      x_group_cd,
      x_description,
      x_max_grant_amt,
      x_max_grant_perct,
      x_max_grant_perct_fact,
      x_max_loan_amt,
      x_max_loan_perct,
      x_max_loan_perct_fact,
      x_max_work_amt,
      x_max_work_perct,
      x_max_work_perct_fact,
      x_max_shelp_amt,
      x_max_shelp_perct,
      x_max_shelp_perct_fact,
      x_max_gap_amt,
      x_max_gap_perct,
      x_max_gap_perct_fact,
      x_use_fixed_costs,
      x_max_aid_pkg,
      x_max_gift_amt,
      x_max_gift_perct ,
      x_max_gift_perct_fact,
      x_max_schlrshp_amt,
      x_max_schlrshp_perct ,
      x_max_schlrshp_perct_fact,
      x_cal_type,
      x_sequence_number,
      x_rule_order,
      x_s_rule_call_cd,
      x_rul_sequence_number,
      x_active,
      x_tgrp_id,
      x_mode,
      x_adplans_id
    );
Line: 1134

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : prchandr
  ||  Created On : 13-JUL-2001
  ||  Purpose : Handles the DELETE DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  */
  BEGIN

    before_dml (
      p_action => 'DELETE',
      x_rowid => x_rowid
    );
Line: 1153

    DELETE FROM igf_aw_target_grp_all
    WHERE rowid = x_rowid;
Line: 1160

  END delete_row;