DBA Data[Home] [Help]

APPS.IGS_FI_SUB_ELM_RNG_PKG SQL Statements

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

Line: 17

    x_logical_delete_date               IN     DATE,
    x_creation_date                     IN     DATE,
    x_created_by                        IN     NUMBER,
    x_last_update_date                  IN     DATE,
    x_last_updated_by                   IN     NUMBER,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 25-JUN-2005
  ||  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_fi_sub_elm_rng
      WHERE    rowid = x_rowid;
Line: 47

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

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

    new_references.logical_delete_date               := x_logical_delete_date;
Line: 65

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

    new_references.last_update_date                  := x_last_update_date;
Line: 74

    new_references.last_updated_by                   := x_last_updated_by;
Line: 75

    new_references.last_update_login                 := x_last_update_login;
Line: 122

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

      SELECT   rowid
      FROM     igs_fi_sub_elm_rng
      WHERE    sub_er_id = x_sub_er_id
      FOR UPDATE NOWAIT;
Line: 179

      SELECT   rowid
      FROM     igs_fi_sub_elm_rng
      WHERE    er_id = x_er_id
      AND      sub_range_num = x_sub_range_num
      AND      ((l_rowid IS NULL) OR (rowid <> l_rowid));
Line: 211

    x_logical_delete_date               IN     DATE,
    x_creation_date                     IN     DATE,
    x_created_by                        IN     NUMBER,
    x_last_update_date                  IN     DATE,
    x_last_updated_by                   IN     NUMBER,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 25-JUN-2005
  ||  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_sub_er_id,
      x_er_id,
      x_sub_range_num,
      x_sub_lower_range,
      x_sub_upper_range,
      x_sub_chg_method_code,
      x_logical_delete_date,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 247

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

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

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

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_sub_er_id                         IN OUT NOCOPY NUMBER,
    x_er_id                             IN     NUMBER,
    x_sub_range_num                     IN     NUMBER,
    x_sub_lower_range                   IN     NUMBER,
    x_sub_upper_range                   IN     NUMBER,
    x_sub_chg_method_code               IN     VARCHAR2,
    x_logical_delete_date               IN     DATE,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 25-JUN-2005
  ||  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)
  */

    x_last_update_date           DATE;
Line: 303

    x_last_updated_by            NUMBER;
Line: 304

    x_last_update_login          NUMBER;
Line: 308

    x_last_update_date := SYSDATE;
Line: 310

      x_last_updated_by := 1;
Line: 311

      x_last_update_login := 0;
Line: 313

      x_last_updated_by := fnd_global.user_id;
Line: 314

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

      x_last_update_login := fnd_global.login_id;
Line: 318

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

      fnd_message.set_token ('ROUTINE', 'IGS_FI_SUB_ELM_RNG_PKG.INSERT_ROW');
Line: 331

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_sub_er_id                         => x_sub_er_id,
      x_er_id                             => x_er_id,
      x_sub_range_num                     => x_sub_range_num,
      x_sub_lower_range                   => x_sub_lower_range,
      x_sub_upper_range                   => x_sub_upper_range,
      x_sub_chg_method_code               => x_sub_chg_method_code,
      x_logical_delete_date               => x_logical_delete_date,
      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: 347

    INSERT INTO igs_fi_sub_elm_rng (
      sub_er_id,
      er_id,
      sub_range_num,
      sub_lower_range,
      sub_upper_range,
      sub_chg_method_code,
      logical_delete_date,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      igs_fi_sub_elm_rng_s.NEXTVAL,
      new_references.er_id,
      new_references.sub_range_num,
      new_references.sub_lower_range,
      new_references.sub_upper_range,
      new_references.sub_chg_method_code,
      new_references.logical_delete_date,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    ) RETURNING ROWID, sub_er_id INTO x_rowid, x_sub_er_id;
Line: 375

  END insert_row;
Line: 386

    x_logical_delete_date               IN     DATE
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 25-JUN-2005
  ||  Purpose : Handles the LOCK mechanism for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  */
    CURSOR c1 IS
      SELECT
        er_id,
        sub_range_num,
        sub_lower_range,
        sub_upper_range,
        sub_chg_method_code,
        logical_delete_date
      FROM  igs_fi_sub_elm_rng
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 416

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

        AND ((tlinfo.logical_delete_date = x_logical_delete_date) OR ((tlinfo.logical_delete_date IS NULL) AND (X_logical_delete_date IS NULL)))
       ) THEN
      NULL;
Line: 444

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_sub_er_id                         IN     NUMBER,
    x_er_id                             IN     NUMBER,
    x_sub_range_num                     IN     NUMBER,
    x_sub_lower_range                   IN     NUMBER,
    x_sub_upper_range                   IN     NUMBER,
    x_sub_chg_method_code               IN     VARCHAR2,
    x_logical_delete_date               IN     DATE,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 25-JUN-2005
  ||  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: 465

    x_last_updated_by            NUMBER;
Line: 466

    x_last_update_login          NUMBER;
Line: 470

    x_last_update_date := SYSDATE;
Line: 472

      x_last_updated_by := 1;
Line: 473

      x_last_update_login := 0;
Line: 475

      x_last_updated_by := fnd_global.user_id;
Line: 476

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

      x_last_update_login := fnd_global.login_id;
Line: 480

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

      fnd_message.set_token ('ROUTINE', 'IGS_FI_SUB_ELM_RNG_PKG.UPDATE_ROW');
Line: 491

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_sub_er_id                         => x_sub_er_id,
      x_er_id                             => x_er_id,
      x_sub_range_num                     => x_sub_range_num,
      x_sub_lower_range                   => x_sub_lower_range,
      x_sub_upper_range                   => x_sub_upper_range,
      x_sub_chg_method_code               => x_sub_chg_method_code,
      x_logical_delete_date               => x_logical_delete_date,
      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: 507

    UPDATE igs_fi_sub_elm_rng
      SET
        er_id                             = new_references.er_id,
        sub_range_num                     = new_references.sub_range_num,
        sub_lower_range                   = new_references.sub_lower_range,
        sub_upper_range                   = new_references.sub_upper_range,
        sub_chg_method_code               = new_references.sub_chg_method_code,
        logical_delete_date               = new_references.logical_delete_date,
        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: 524

  END update_row;
Line: 535

    x_logical_delete_date               IN     DATE,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 25-JUN-2005
  ||  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_fi_sub_elm_rng
      WHERE    sub_er_id                         = x_sub_er_id;
Line: 559

      insert_row (
        x_rowid,
        x_sub_er_id,
        x_er_id,
        x_sub_range_num,
        x_sub_lower_range,
        x_sub_upper_range,
        x_sub_chg_method_code,
        x_logical_delete_date,
        x_mode
      );
Line: 574

    update_row (
      x_rowid,
      x_sub_er_id,
      x_er_id,
      x_sub_range_num,
      x_sub_lower_range,
      x_sub_upper_range,
      x_sub_chg_method_code,
      x_logical_delete_date,
      x_mode
    );