DBA Data[Home] [Help]

APPS.IGF_AP_ISIR_CORR_PKG SQL Statements

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

Line: 22

    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 : kpadiyar
  ||  Created On : 11-DEC-2000
  ||  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     IGF_AP_ISIR_CORR_ALL
      WHERE    rowid = x_rowid;
Line: 49

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 78

    new_references.last_updated_by                   := x_last_updated_by;
Line: 79

    new_references.last_update_login                 := x_last_update_login;
Line: 128

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

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

      SELECT   rowid
      FROM     igf_ap_isir_corr_all
      WHERE    isirc_id = x_isirc_id
      FOR UPDATE NOWAIT;
Line: 200

      SELECT   rowid
      FROM     igf_ap_isir_corr_all
      WHERE    isir_id = x_isir_id
      AND      ((sar_field_number = x_sar_field_number) OR (sar_field_number IS NULL AND x_sar_field_number IS NULL))
      AND      ((correction_status = x_correction_status) OR (correction_status IS NULL AND x_correction_status IS NULL))
      AND      ((l_rowid IS NULL) OR (rowid <> l_rowid));
Line: 239

      SELECT   rowid
      FROM     igf_ap_isir_corr_all
      WHERE   ((isir_id = x_isir_id));
Line: 249

      SELECT count(*) cnt
        FROM igf_ap_isir_corr_all
       WHERE isir_id = cp_isir_id
         AND correction_status <> 'ACKNOWLEDGED';
Line: 271

          igf_ap_isir_corr_pkg.delete_row(lv_rowid.rowid);
Line: 295

      SELECT   rowid
      FROM     igf_ap_isir_corr_all
      WHERE   ((ci_cal_type = x_cal_type) AND
               (ci_sequence_number = x_sequence_number));
Line: 332

    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 : kpadiyar
  ||  Created On : 11-DEC-2000
  ||  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_isirc_id,
      x_isir_id,
      x_ci_sequence_number,
      x_ci_cal_type,
      x_sar_field_number,
      x_original_value,
      x_batch_id,
      x_corrected_value,
      x_correction_status,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 367

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

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

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

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_isirc_id                          IN OUT NOCOPY NUMBER,
    x_isir_id                           IN     NUMBER,
    x_ci_sequence_number                IN     NUMBER,
    x_ci_cal_type                       IN     VARCHAR2,
    x_sar_field_number                  IN     NUMBER,
    x_original_value                    IN     VARCHAR2,
    x_batch_id                          IN     VARCHAR2,
    x_corrected_value                   IN     VARCHAR2,
    x_correction_status                 IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : kpadiyar
  ||  Created On : 11-DEC-2000
  ||  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     igf_ap_isir_corr_all
      WHERE    isirc_id                          = x_isirc_id;
Line: 429

      SELECT   igf_ap_isir_corr_s.nextval
      FROM     dual;
Line: 432

    x_last_update_date           DATE;
Line: 433

    x_last_updated_by            NUMBER;
Line: 434

    x_last_update_login          NUMBER;
Line: 438

    x_program_update_date        DATE;
Line: 447

    x_last_update_date := SYSDATE;
Line: 449

      x_last_updated_by := 1;
Line: 450

      x_last_update_login := 0;
Line: 452

      x_last_updated_by := fnd_global.user_id;
Line: 453

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

      x_last_update_login := fnd_global.login_id;
Line: 457

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

        x_program_update_date    := NULL;
Line: 470

        x_program_update_date    := SYSDATE;
Line: 479

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_isirc_id                          => x_isirc_id,
      x_isir_id                           => x_isir_id,
      x_ci_sequence_number                => x_ci_sequence_number,
      x_ci_cal_type                       => x_ci_cal_type,
      x_sar_field_number                  => x_sar_field_number,
      x_original_value                    => x_original_value,
      x_batch_id                          => x_batch_id,
      x_corrected_value                   => x_corrected_value,
      x_correction_status                 => x_correction_status,
      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: 497

    INSERT INTO igf_ap_isir_corr_all (
      isirc_id,
      isir_id,
      ci_sequence_number,
      ci_cal_type,
      sar_field_number,
      original_value,
      batch_id,
      corrected_value,
      correction_status,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login,
      request_id,
      program_id,
      program_application_id,
      program_update_date,
      org_id
    ) VALUES (
      new_references.isirc_id,
      new_references.isir_id,
      new_references.ci_sequence_number,
      new_references.ci_cal_type,
      new_references.sar_field_number,
      new_references.original_value,
      new_references.batch_id,
      new_references.corrected_value,
      new_references.correction_status,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login ,
      x_request_id,
      x_program_id,
      x_program_application_id,
      x_program_update_date ,
      l_org_id
    );
Line: 547

  END insert_row;
Line: 572

      SELECT
        isir_id,
        ci_sequence_number,
        ci_cal_type,
        sar_field_number,
        original_value,
        batch_id,
        corrected_value,
        correction_status,
        org_id
      FROM  igf_ap_isir_corr_all
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 593

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_isirc_id                          IN     NUMBER,
    x_isir_id                           IN     NUMBER,
    x_ci_sequence_number                IN     NUMBER,
    x_ci_cal_type                       IN     VARCHAR2,
    x_sar_field_number                  IN     NUMBER,
    x_original_value                    IN     VARCHAR2,
    x_batch_id                          IN     VARCHAR2,
    x_corrected_value                   IN     VARCHAR2,
    x_correction_status                 IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : kpadiyar
  ||  Created On : 11-DEC-2000
  ||  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: 646

    x_last_updated_by            NUMBER;
Line: 647

    x_last_update_login          NUMBER;
Line: 651

    x_program_update_date        DATE;
Line: 655

    x_last_update_date := SYSDATE;
Line: 657

      x_last_updated_by := 1;
Line: 658

      x_last_update_login := 0;
Line: 660

      x_last_updated_by := fnd_global.user_id;
Line: 661

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

      x_last_update_login := fnd_global.login_id;
Line: 665

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_isirc_id                          => x_isirc_id,
      x_isir_id                           => x_isir_id,
      x_ci_sequence_number                => x_ci_sequence_number,
      x_ci_cal_type                       => x_ci_cal_type,
      x_sar_field_number                  => x_sar_field_number,
      x_original_value                    => x_original_value,
      x_batch_id                          => x_batch_id,
      x_corrected_value                   => x_corrected_value,
      x_correction_status                 => x_correction_status,
      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: 701

        x_program_update_date := old_references.program_update_date;
Line: 703

        x_program_update_date := SYSDATE;
Line: 707

    UPDATE igf_ap_isir_corr_all
      SET
        isir_id                           = new_references.isir_id,
        ci_sequence_number                = new_references.ci_sequence_number,
        ci_cal_type                       = new_references.ci_cal_type,
        sar_field_number                  = new_references.sar_field_number,
        original_value                    = new_references.original_value,
        batch_id                          = new_references.batch_id,
        corrected_value                   = new_references.corrected_value,
        correction_status                 = new_references.correction_status,
        last_update_date                  = x_last_update_date,
        last_updated_by                   = x_last_updated_by,
        last_update_login                 = x_last_update_login ,
        request_id                        = x_request_id,
        program_id                        = x_program_id,
        program_application_id            = x_program_application_id,
        program_update_date               = x_program_update_date
      WHERE rowid = x_rowid;
Line: 730

  END update_row;
Line: 749

  ||  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     igf_ap_isir_corr_all
      WHERE    isirc_id                          = x_isirc_id;
Line: 767

      insert_row (
        x_rowid,
        x_isirc_id,
        x_isir_id,
        x_ci_sequence_number,
        x_ci_cal_type,
        x_sar_field_number,
        x_original_value,
        x_batch_id,
        x_corrected_value,
        x_correction_status,
        x_mode
      );
Line: 784

    update_row (
      x_rowid,
      x_isirc_id,
      x_isir_id,
      x_ci_sequence_number,
      x_ci_cal_type,
      x_sar_field_number,
      x_original_value,
      x_batch_id,
      x_corrected_value,
      x_correction_status,
      x_mode
    );
Line: 801

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : kpadiyar
  ||  Created On : 11-DEC-2000
  ||  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: 820

    DELETE FROM igf_ap_isir_corr_all
    WHERE rowid = x_rowid;
Line: 827

  END delete_row;