DBA Data[Home] [Help]

APPS.IGF_AP_ISIR_BATCHES_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 : rasingh
  ||  Created On : 02-JAN-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     IGF_AP_ISIR_BATCHES_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: 97

      SELECT   rowid
      FROM     igf_ap_isir_batches_all
      WHERE    batch_number = x_batch_number
      FOR UPDATE NOWAIT;
Line: 133

    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 : rasingh
  ||  Created On : 02-JAN-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_batch_number,
      x_batch_year,
      x_batch_type,
      x_batch_count,
      x_tran_source_site,
      x_stud_rec_count,
      x_err_rec_count,
      x_not_on_db_count,
      x_batch_creation_date,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 168

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

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_batch_number                      IN     VARCHAR2,
    x_batch_year                        IN     VARCHAR2,
    x_batch_type                        IN     VARCHAR2,
    x_batch_count                       IN     NUMBER,
    x_tran_source_site                  IN     NUMBER,
    x_stud_rec_count                    IN     NUMBER,
    x_err_rec_count                     IN     NUMBER,
    x_not_on_db_count                   IN     NUMBER,
    x_batch_creation_date               IN     DATE,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : rasingh
  ||  Created On : 02-JAN-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     igf_ap_isir_batches_all
      WHERE    batch_number                      = x_batch_number;
Line: 220

    x_last_update_date           DATE;
Line: 221

    x_last_updated_by            NUMBER;
Line: 222

    x_last_update_login          NUMBER;
Line: 228

    x_last_update_date := SYSDATE;
Line: 230

      x_last_updated_by := 1;
Line: 231

      x_last_update_login := 0;
Line: 233

      x_last_updated_by := fnd_global.user_id;
Line: 234

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

      x_last_update_login := fnd_global.login_id;
Line: 238

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

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_batch_number                      => x_batch_number,
      x_batch_year                        => x_batch_year,
      x_batch_type                        => x_batch_type,
      x_batch_count                       => x_batch_count,
      x_tran_source_site                  => x_tran_source_site,
      x_stud_rec_count                    => x_stud_rec_count,
      x_err_rec_count                     => x_err_rec_count,
      x_not_on_db_count                   => x_not_on_db_count,
      x_batch_creation_date               => x_batch_creation_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: 266

    INSERT INTO igf_ap_isir_batches_all (
      batch_number,
      batch_year,
      batch_type,
      batch_count,
      tran_source_site,
      stud_rec_count,
      err_rec_count,
      not_on_db_count,
      batch_creation_date,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login,
      org_id
    ) VALUES (
      new_references.batch_number,
      new_references.batch_year,
      new_references.batch_type,
      new_references.batch_count,
      new_references.tran_source_site,
      new_references.stud_rec_count,
      new_references.err_rec_count,
      new_references.not_on_db_count,
      new_references.batch_creation_date,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login,
      l_org_id
    );
Line: 308

  END insert_row;
Line: 333

      SELECT
        batch_year,
        batch_type,
        batch_count,
        tran_source_site,
        stud_rec_count,
        err_rec_count,
        not_on_db_count,
        batch_creation_date,
        org_id
      FROM  igf_ap_isir_batches_all
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 354

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_batch_number                      IN     VARCHAR2,
    x_batch_year                        IN     VARCHAR2,
    x_batch_type                        IN     VARCHAR2,
    x_batch_count                       IN     NUMBER,
    x_tran_source_site                  IN     NUMBER,
    x_stud_rec_count                    IN     NUMBER,
    x_err_rec_count                     IN     NUMBER,
    x_not_on_db_count                   IN     NUMBER,
    x_batch_creation_date               IN     DATE,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : rasingh
  ||  Created On : 02-JAN-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: 407

    x_last_updated_by            NUMBER;
Line: 408

    x_last_update_login          NUMBER;
Line: 413

    x_last_update_date := SYSDATE;
Line: 415

      x_last_updated_by := 1;
Line: 416

      x_last_update_login := 0;
Line: 418

      x_last_updated_by := fnd_global.user_id;
Line: 419

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

      x_last_update_login := fnd_global.login_id;
Line: 423

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_batch_number                      => x_batch_number,
      x_batch_year                        => x_batch_year,
      x_batch_type                        => x_batch_type,
      x_batch_count                       => x_batch_count,
      x_tran_source_site                  => x_tran_source_site,
      x_stud_rec_count                    => x_stud_rec_count,
      x_err_rec_count                     => x_err_rec_count,
      x_not_on_db_count                   => x_not_on_db_count,
      x_batch_creation_date               => x_batch_creation_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: 451

    UPDATE igf_ap_isir_batches_all
      SET
        batch_year                        = new_references.batch_year,
        batch_type                        = new_references.batch_type,
        batch_count                       = new_references.batch_count,
        tran_source_site                  = new_references.tran_source_site,
        stud_rec_count                    = new_references.stud_rec_count,
        err_rec_count                     = new_references.err_rec_count,
        not_on_db_count                   = new_references.not_on_db_count,
        batch_creation_date               = new_references.batch_creation_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: 470

  END update_row;
Line: 489

  ||  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_batches_all
      WHERE    batch_number                      = x_batch_number;
Line: 507

      insert_row (
        x_rowid,
        x_batch_number,
        x_batch_year,
        x_batch_type,
        x_batch_count,
        x_tran_source_site,
        x_stud_rec_count,
        x_err_rec_count,
        x_not_on_db_count,
        x_batch_creation_date,
        x_mode
      );
Line: 524

    update_row (
      x_rowid,
      x_batch_number,
      x_batch_year,
      x_batch_type,
      x_batch_count,
      x_tran_source_site,
      x_stud_rec_count,
      x_err_rec_count,
      x_not_on_db_count,
      x_batch_creation_date,
      x_mode
    );
Line: 541

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : rasingh
  ||  Created On : 02-JAN-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: 560

    DELETE FROM igf_ap_isir_batches_all
    WHERE rowid = x_rowid;
Line: 567

  END delete_row;