DBA Data[Home] [Help]

APPS.IGF_AW_FISAP_BATCH_PKG SQL Statements

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

Line: 18

    x_last_update_date                  IN     DATE,
    x_last_updated_by                   IN     NUMBER,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By : Uday Kiran Reddy
  ||  Created On : 13-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     igf_aw_fisap_batch
      WHERE    rowid = x_rowid;
Line: 45

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 70

    new_references.last_updated_by                   := x_last_updated_by;
Line: 71

    new_references.last_update_login                 := x_last_update_login;
Line: 108

      SELECT   rowid
      FROM     igf_aw_fisap_batch
      WHERE    batch_id = x_batch_id
      FOR UPDATE NOWAIT;
Line: 140

    x_last_update_date                  IN     DATE,
    x_last_updated_by                   IN     NUMBER,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By : Uday Kiran Reddy
  ||  Created On : 13-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_batch_id,
      x_ci_cal_type,
      x_ci_sequence_number,
      x_description,
      x_reported_time_txt,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 171

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

    ELSIF (p_action = 'DELETE') THEN
      -- Call all the procedures related to Before Delete.
      check_child_existance;
Line: 184

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

    ELSIF (p_action = 'VALIDATE_DELETE') THEN
      check_child_existance;
Line: 201

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_batch_id                          IN OUT NOCOPY NUMBER,
    x_ci_cal_type                       IN     VARCHAR2,
    x_ci_sequence_number                IN     NUMBER,
    x_description                       IN     VARCHAR2,
    x_reported_time_txt                 IN     VARCHAR2,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : Uday Kiran Reddy
  ||  Created On : 13-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: 221

    x_last_updated_by            NUMBER;
Line: 222

    x_last_update_login          NUMBER;
Line: 226

    x_program_update_date        DATE;
Line: 230

    x_last_update_date := SYSDATE;
Line: 232

      x_last_updated_by := 1;
Line: 233

      x_last_update_login := 0;
Line: 235

      x_last_updated_by := fnd_global.user_id;
Line: 236

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

      x_last_update_login := fnd_global.login_id;
Line: 240

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

        x_program_update_date    := NULL;
Line: 253

        x_program_update_date    := SYSDATE;
Line: 257

      fnd_message.set_token ('ROUTINE', 'IGF_AW_FISAP_BATCH_PKG.INSERT_ROW');
Line: 265

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_batch_id                          => x_batch_id,
      x_ci_cal_type                       => x_ci_cal_type,
      x_ci_sequence_number                => x_ci_sequence_number,
      x_description                       => x_description,
      x_reported_time_txt                 => x_reported_time_txt,
      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: 279

    INSERT INTO igf_aw_fisap_batch (
      batch_id,
      ci_cal_type,
      ci_sequence_number,
      description,
      reported_time_txt,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login,
      request_id,
      program_id,
      program_application_id,
      program_update_date
    ) VALUES (
      igf_aw_fisap_batch_s.NEXTVAL,
      new_references.ci_cal_type,
      new_references.ci_sequence_number,
      new_references.description,
      new_references.reported_time_txt,
      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
    ) RETURNING ROWID, batch_id INTO x_rowid, x_batch_id;
Line: 311

  END insert_row;
Line: 332

      SELECT
        ci_cal_type,
        ci_sequence_number,
        description,
        reported_time_txt
      FROM  igf_aw_fisap_batch
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 348

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_batch_id                          IN     NUMBER,
    x_ci_cal_type                       IN     VARCHAR2,
    x_ci_sequence_number                IN     NUMBER,
    x_description                       IN     VARCHAR2,
    x_reported_time_txt                 IN     VARCHAR2,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : Uday Kiran Reddy
  ||  Created On : 13-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: 393

    x_last_updated_by            NUMBER;
Line: 394

    x_last_update_login          NUMBER;
Line: 398

    x_program_update_date        DATE;
Line: 402

    x_last_update_date := SYSDATE;
Line: 404

      x_last_updated_by := 1;
Line: 405

      x_last_update_login := 0;
Line: 407

      x_last_updated_by := fnd_global.user_id;
Line: 408

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

      x_last_update_login := fnd_global.login_id;
Line: 412

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

      fnd_message.set_token ('ROUTINE', 'IGF_AW_FISAP_BATCH_PKG.UPDATE_ROW');
Line: 423

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_batch_id                          => x_batch_id,
      x_ci_cal_type                       => x_ci_cal_type,
      x_ci_sequence_number                => x_ci_sequence_number,
      x_description                       => x_description,
      x_reported_time_txt                 => x_reported_time_txt,
      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: 445

        x_program_update_date := old_references.program_update_date;
Line: 447

        x_program_update_date := SYSDATE;
Line: 451

    UPDATE igf_aw_fisap_batch
      SET
        ci_cal_type                       = new_references.ci_cal_type,
        ci_sequence_number                = new_references.ci_sequence_number,
        description                       = new_references.description,
        reported_time_txt                 = new_references.reported_time_txt,
        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: 470

  END update_row;
Line: 485

  ||  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_aw_fisap_batch
      WHERE    batch_id                          = x_batch_id;
Line: 503

      insert_row (
        x_rowid,
        x_batch_id,
        x_ci_cal_type,
        x_ci_sequence_number,
        x_description,
        x_reported_time_txt,
        x_mode
      );
Line: 516

    update_row (
      x_rowid,
      x_batch_id,
      x_ci_cal_type,
      x_ci_sequence_number,
      x_description,
      x_reported_time_txt,
      x_mode
    );
Line: 529

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : Uday Kiran Reddy
  ||  Created On : 13-JUN-2005
  ||  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: 548

    DELETE FROM igf_aw_fisap_batch
    WHERE rowid = x_rowid;
Line: 555

  END delete_row;