DBA Data[Home] [Help]

APPS.IGS_AD_RVGR_INC_EXC_PKG SQL Statements

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

Line: 23

    x_last_update_date                  IN     DATE        DEFAULT NULL,
    x_last_updated_by                   IN     NUMBER      DEFAULT NULL,
    x_last_update_login                 IN     NUMBER      DEFAULT NULL
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 09-NOV-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)
  */

    CURSOR cur_old_ref_values IS
      SELECT   *
      FROM     igs_ad_rvgr_inc_exc
      WHERE    rowid = x_rowid;
Line: 50

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 80

    new_references.last_updated_by                   := x_last_updated_by;
Line: 81

    new_references.last_update_login                 := x_last_update_login;
Line: 104

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

      SELECT   rowid
      FROM     igs_ad_rvgr_inc_exc
      WHERE    revgr_incl_excl_id = x_revgr_incl_excl_id
      FOR UPDATE NOWAIT;
Line: 160

      SELECT   rowid
      FROM     igs_ad_rvgr_inc_exc
      WHERE   ((appl_revprof_revgr_id = x_appl_revprof_revgr_id));
Line: 197

    x_last_update_date                  IN     DATE        DEFAULT NULL,
    x_last_updated_by                   IN     NUMBER      DEFAULT NULL,
    x_last_update_login                 IN     NUMBER      DEFAULT NULL
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 09-NOV-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)
  */
  BEGIN

    set_column_values (
      p_action,
      x_rowid,
      x_revgr_incl_excl_id,
      x_appl_revprof_revgr_id,
      x_incl_excl_ind,
      x_start_value,
      x_end_value,
      x_version_number,
      x_country,
      x_postal_incl_excl_ind,
      x_postal_start_value,
      x_postal_end_value,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 233

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

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

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_revgr_incl_excl_id                IN OUT NOCOPY NUMBER,
    x_appl_revprof_revgr_id             IN     NUMBER,
    x_incl_excl_ind                     IN     VARCHAR2,
    x_start_value                       IN     VARCHAR2,
    x_end_value                         IN     VARCHAR2,
    x_version_number                    IN     NUMBER,
    x_country                           IN     VARCHAR2,
    x_postal_incl_excl_ind              IN     VARCHAR2,
    x_postal_start_value                IN     VARCHAR2,
    x_postal_end_value                  IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 09-NOV-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)
  */
    CURSOR c IS
      SELECT   rowid
      FROM     igs_ad_rvgr_inc_exc
      WHERE    revgr_incl_excl_id                = x_revgr_incl_excl_id;
Line: 290

    x_last_update_date           DATE;
Line: 291

    x_last_updated_by            NUMBER;
Line: 292

    x_last_update_login          NUMBER;
Line: 296

    x_last_update_date := SYSDATE;
Line: 298

      x_last_updated_by := 1;
Line: 299

      x_last_update_login := 0;
Line: 301

      x_last_updated_by := fnd_global.user_id;
Line: 302

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

      x_last_update_login := fnd_global.login_id;
Line: 306

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

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_revgr_incl_excl_id                => x_revgr_incl_excl_id,
      x_appl_revprof_revgr_id             => x_appl_revprof_revgr_id,
      x_incl_excl_ind                     => x_incl_excl_ind,
      x_start_value                       => x_start_value,
      x_end_value                         => x_end_value,
      x_version_number                    => x_version_number,
      x_country                           => x_country,
      x_postal_incl_excl_ind              => x_postal_incl_excl_ind,
      x_postal_start_value                => x_postal_start_value,
      x_postal_end_value                  => x_postal_end_value,
      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: 336

    INSERT INTO igs_ad_rvgr_inc_exc (
      revgr_incl_excl_id,
      appl_revprof_revgr_id,
      incl_excl_ind,
      start_value,
      end_value,
      version_number,
      country,
      postal_incl_excl_ind,
      postal_start_value,
      postal_end_value,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      IGS_AD_RVGR_INC_EXC_S.NEXTVAL,
      new_references.appl_revprof_revgr_id,
      new_references.incl_excl_ind,
      new_references.start_value,
      new_references.end_value,
      new_references.version_number,
      new_references.country,
      new_references.postal_incl_excl_ind,
      new_references.postal_start_value,
      new_references.postal_end_value,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    ) RETURNING revgr_incl_excl_id INTO x_revgr_incl_excl_id;
Line: 378

  END insert_row;
Line: 404

      SELECT
        appl_revprof_revgr_id,
        incl_excl_ind,
        start_value,
        end_value,
        version_number,
        country,
        postal_incl_excl_ind,
        postal_start_value,
        postal_end_value
      FROM  igs_ad_rvgr_inc_exc
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 425

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_revgr_incl_excl_id                IN     NUMBER,
    x_appl_revprof_revgr_id             IN     NUMBER,
    x_incl_excl_ind                     IN     VARCHAR2,
    x_start_value                       IN     VARCHAR2,
    x_end_value                         IN     VARCHAR2,
    x_version_number                    IN     NUMBER,
    x_country                           IN     VARCHAR2,
    x_postal_incl_excl_ind              IN     VARCHAR2,
    x_postal_start_value                IN     VARCHAR2,
    x_postal_end_value                  IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 09-NOV-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)
  */
    x_last_update_date           DATE ;
Line: 480

    x_last_updated_by            NUMBER;
Line: 481

    x_last_update_login          NUMBER;
Line: 485

    x_last_update_date := SYSDATE;
Line: 487

      x_last_updated_by := 1;
Line: 488

      x_last_update_login := 0;
Line: 490

      x_last_updated_by := fnd_global.user_id;
Line: 491

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

      x_last_update_login := fnd_global.login_id;
Line: 495

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_revgr_incl_excl_id                => x_revgr_incl_excl_id,
      x_appl_revprof_revgr_id             => x_appl_revprof_revgr_id,
      x_incl_excl_ind                     => x_incl_excl_ind,
      x_start_value                       => x_start_value,
      x_end_value                         => x_end_value,
      x_version_number                    => x_version_number,
      x_country                           => x_country,
      x_postal_incl_excl_ind              => x_postal_incl_excl_ind,
      x_postal_start_value                => x_postal_start_value,
      x_postal_end_value                  => x_postal_end_value,
      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: 524

    UPDATE igs_ad_rvgr_inc_exc
      SET
        appl_revprof_revgr_id             = new_references.appl_revprof_revgr_id,
        incl_excl_ind                     = new_references.incl_excl_ind,
        start_value                       = new_references.start_value,
        end_value                         = new_references.end_value,
        version_number                    = new_references.version_number,
        country                           = new_references.country,
        postal_incl_excl_ind              = new_references.postal_incl_excl_ind,
        postal_start_value                = new_references.postal_start_value,
        postal_end_value                  = new_references.postal_end_value,
        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: 544

  END update_row;
Line: 564

  ||  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)
  */
    CURSOR c1 IS
      SELECT   rowid
      FROM     igs_ad_rvgr_inc_exc
      WHERE    revgr_incl_excl_id                = x_revgr_incl_excl_id;
Line: 582

      insert_row (
        x_rowid,
        x_revgr_incl_excl_id,
        x_appl_revprof_revgr_id,
        x_incl_excl_ind,
        x_start_value,
        x_end_value,
        x_version_number,
        x_country,
        x_postal_incl_excl_ind,
        x_postal_start_value,
        x_postal_end_value,
        x_mode
      );
Line: 600

    update_row (
      x_rowid,
      x_revgr_incl_excl_id,
      x_appl_revprof_revgr_id,
      x_incl_excl_ind,
      x_start_value,
      x_end_value,
      x_version_number,
      x_country,
      x_postal_incl_excl_ind,
      x_postal_start_value,
      x_postal_end_value,
      x_mode
    );
Line: 618

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 09-NOV-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: 637

    DELETE FROM igs_ad_rvgr_inc_exc
    WHERE rowid = x_rowid;
Line: 644

  END delete_row;