DBA Data[Home] [Help]

APPS.IGS_EN_REP_PROCESS_PKG SQL Statements

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

Line: 21

    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 : smaddali
  ||  Created On : 22-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_EN_REP_PROCESS
      WHERE    rowid = x_rowid;
Line: 48

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 76

    new_references.last_updated_by                   := x_last_updated_by;
Line: 77

    new_references.last_update_login                 := x_last_update_login;
Line: 118

    SELECT rowid
    FROM igs_pe_hz_parties
    WHERE party_id = new_references.org_unit_id ;
Line: 134

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

      SELECT   rowid
      FROM     igs_en_rep_process
      WHERE    repeat_process_id = x_repeat_process_id
      FOR UPDATE NOWAIT;
Line: 194

      SELECT   rowid
      FROM     igs_en_rep_process
      WHERE    ((org_unit_id = x_org_unit_id)  -- The extreme left parenthesis was missing earlier, Added by Nishikant, Bug#2383216
               OR ( org_unit_id IS NULL  AND  x_org_unit_id IS NULL))  -- The extreme right parenthesis was missing earlier, Added by Nishikant, Bug#2383216
      AND      ((l_rowid IS NULL) OR (rowid <> l_rowid));
Line: 231

    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 : smaddali
  ||  Created On : 22-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_repeat_process_id,
      x_org_unit_id,
      x_include_adv_standing_units,
      x_max_repeats_for_credit,
      x_max_repeats_for_funding,
      x_use_most_recent_unit_attempt,
      x_use_best_grade_attempt,
      x_external_formula,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 265

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

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

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

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_repeat_process_id                 IN OUT NOCOPY NUMBER,
    x_org_unit_id                       IN     NUMBER,
    x_include_adv_standing_units        IN     VARCHAR2,
    x_max_repeats_for_credit            IN     NUMBER,
    x_max_repeats_for_funding           IN     NUMBER,
    x_use_most_recent_unit_attempt      IN     VARCHAR2,
    x_use_best_grade_attempt            IN     VARCHAR2,
    x_external_formula                  IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : smaddali
  ||  Created On : 22-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_en_rep_process
      WHERE    repeat_process_id                 = x_repeat_process_id;
Line: 325

    x_last_update_date           DATE;
Line: 326

    x_last_updated_by            NUMBER;
Line: 327

    x_last_update_login          NUMBER;
Line: 331

    x_last_update_date := SYSDATE;
Line: 333

      x_last_updated_by := 1;
Line: 334

      x_last_update_login := 0;
Line: 336

      x_last_updated_by := fnd_global.user_id;
Line: 337

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

      x_last_update_login := fnd_global.login_id;
Line: 341

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

    SELECT    igs_en_rep_process_s.NEXTVAL
    INTO      x_repeat_process_id
    FROM      dual;
Line: 355

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_repeat_process_id                 => x_repeat_process_id,
      x_org_unit_id                       => x_org_unit_id,
      x_include_adv_standing_units        => x_include_adv_standing_units,
      x_max_repeats_for_credit            => x_max_repeats_for_credit,
      x_max_repeats_for_funding           => x_max_repeats_for_funding,
      x_use_most_recent_unit_attempt      => x_use_most_recent_unit_attempt,
      x_use_best_grade_attempt            => x_use_best_grade_attempt,
      x_external_formula                  => x_external_formula,
      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: 372

    INSERT INTO igs_en_rep_process (
      repeat_process_id,
      org_unit_id,
      include_adv_standing_units,
      max_repeats_for_credit,
      max_repeats_for_funding,
      use_most_recent_unit_attempt,
      use_best_grade_attempt,
      external_formula,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      new_references.repeat_process_id,
      new_references.org_unit_id,
      new_references.include_adv_standing_units,
      new_references.max_repeats_for_credit,
      new_references.max_repeats_for_funding,
      new_references.use_most_recent_unit_attempt,
      new_references.use_best_grade_attempt,
      new_references.external_formula,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 410

  END insert_row;
Line: 434

      SELECT
        org_unit_id,
        include_adv_standing_units,
        max_repeats_for_credit,
        max_repeats_for_funding,
        use_most_recent_unit_attempt,
        use_best_grade_attempt,
        external_formula
      FROM  igs_en_rep_process
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 453

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_repeat_process_id                 IN     NUMBER,
    x_org_unit_id                       IN     NUMBER,
    x_include_adv_standing_units        IN     VARCHAR2,
    x_max_repeats_for_credit            IN     NUMBER,
    x_max_repeats_for_funding           IN     NUMBER,
    x_use_most_recent_unit_attempt      IN     VARCHAR2,
    x_use_best_grade_attempt            IN     VARCHAR2,
    x_external_formula                  IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : smaddali
  ||  Created On : 22-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: 504

    x_last_updated_by            NUMBER;
Line: 505

    x_last_update_login          NUMBER;
Line: 509

    x_last_update_date := SYSDATE;
Line: 511

      x_last_updated_by := 1;
Line: 512

      x_last_update_login := 0;
Line: 514

      x_last_updated_by := fnd_global.user_id;
Line: 515

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

      x_last_update_login := fnd_global.login_id;
Line: 519

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_repeat_process_id                 => x_repeat_process_id,
      x_org_unit_id                       => x_org_unit_id,
      x_include_adv_standing_units        => x_include_adv_standing_units,
      x_max_repeats_for_credit            => x_max_repeats_for_credit,
      x_max_repeats_for_funding           => x_max_repeats_for_funding,
      x_use_most_recent_unit_attempt      => x_use_most_recent_unit_attempt,
      x_use_best_grade_attempt            => x_use_best_grade_attempt,
      x_external_formula                  => x_external_formula,
      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: 546

    UPDATE igs_en_rep_process
      SET
        org_unit_id                       = new_references.org_unit_id,
        include_adv_standing_units        = new_references.include_adv_standing_units,
        max_repeats_for_credit            = new_references.max_repeats_for_credit,
        max_repeats_for_funding           = new_references.max_repeats_for_funding,
        use_most_recent_unit_attempt      = new_references.use_most_recent_unit_attempt,
        use_best_grade_attempt            = new_references.use_best_grade_attempt,
        external_formula                  = new_references.external_formula,
        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: 564

  END update_row;
Line: 582

  ||  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_en_rep_process
      WHERE    repeat_process_id                 = x_repeat_process_id;
Line: 600

      insert_row (
        x_rowid,
        x_repeat_process_id,
        x_org_unit_id,
        x_include_adv_standing_units,
        x_max_repeats_for_credit,
        x_max_repeats_for_funding,
        x_use_most_recent_unit_attempt,
        x_use_best_grade_attempt,
        x_external_formula,
        x_mode
      );
Line: 616

    update_row (
      x_rowid,
      x_repeat_process_id,
      x_org_unit_id,
      x_include_adv_standing_units,
      x_max_repeats_for_credit,
      x_max_repeats_for_funding,
      x_use_most_recent_unit_attempt,
      x_use_best_grade_attempt,
      x_external_formula,
      x_mode
    );
Line: 632

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : smaddali
  ||  Created On : 22-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: 651

    DELETE FROM igs_en_rep_process
    WHERE rowid = x_rowid;
Line: 658

  END delete_row;