DBA Data[Home] [Help]

APPS.IGS_FI_1098T_DTLS_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 : [email protected]
  ||  Created On : 27-APR-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_1098t_dtls
      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: 94

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

      SELECT   rowid
      FROM     igs_fi_1098t_dtls
      WHERE    stu_1098t_id = x_stu_1098t_id
      AND      box_num = x_box_num
      AND      transaction_id = x_transaction_id
      AND      transaction_code = x_transaction_code
      FOR UPDATE NOWAIT;
Line: 153

    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 : 27-APR-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_stu_1098t_id,
      x_box_num,
      x_transaction_id,
      x_transaction_code,
      x_object_version_number,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 184

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

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

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_stu_1098t_id                      IN     NUMBER,
    x_box_num                           IN     NUMBER,
    x_transaction_id                    IN     NUMBER,
    x_transaction_code                  IN     VARCHAR2,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 27-APR-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: 238

    x_last_updated_by            NUMBER;
Line: 239

    x_last_update_login          NUMBER;
Line: 243

    x_program_update_date        DATE;
Line: 247

    x_last_update_date := SYSDATE;
Line: 249

      x_last_updated_by := 1;
Line: 250

      x_last_update_login := 0;
Line: 252

      x_last_updated_by := fnd_global.user_id;
Line: 253

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

      x_last_update_login := fnd_global.login_id;
Line: 257

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

        x_program_update_date    := NULL;
Line: 270

        x_program_update_date    := SYSDATE;
Line: 274

      fnd_message.set_token ('ROUTINE', 'IGS_FI_1098T_DTLS_PKG.INSERT_ROW');
Line: 280

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_stu_1098t_id                      => x_stu_1098t_id,
      x_box_num                           => x_box_num,
      x_transaction_id                    => x_transaction_id,
      x_transaction_code                  => x_transaction_code,
      x_object_version_number             => 1,
      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: 294

    INSERT INTO igs_fi_1098t_dtls (
      stu_1098t_id,
      box_num,
      transaction_id,
      transaction_code,
      object_version_number,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login,
      request_id,
      program_id,
      program_application_id,
      program_update_date
    ) VALUES (
      new_references.stu_1098t_id,
      new_references.box_num,
      new_references.transaction_id,
      new_references.transaction_code,
      new_references.object_version_number,
      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 INTO x_rowid;
Line: 326

  END insert_row;
Line: 329

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_stu_1098t_id                      IN     NUMBER,
    x_box_num                           IN     NUMBER,
    x_transaction_id                    IN     NUMBER,
    x_transaction_code                  IN     VARCHAR2,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 27-APR-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: 347

    x_last_updated_by            NUMBER;
Line: 348

    x_last_update_login          NUMBER;
Line: 352

    x_program_update_date        DATE;
Line: 355

      SELECT object_version_number
      FROM   igs_fi_1098t_dtls
      WHERE  rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 363

    x_last_update_date := SYSDATE;
Line: 365

      x_last_updated_by := 1;
Line: 366

      x_last_update_login := 0;
Line: 368

      x_last_updated_by := fnd_global.user_id;
Line: 369

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

      x_last_update_login := fnd_global.login_id;
Line: 373

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

      fnd_message.set_token ('ROUTINE', 'IGS_FI_1098T_DTLS_PKG.UPDATE_ROW');
Line: 390

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_stu_1098t_id                      => x_stu_1098t_id,
      x_box_num                           => x_box_num,
      x_transaction_id                    => x_transaction_id,
      x_transaction_code                  => x_transaction_code,
      x_object_version_number             => l_n_object_version_number,
      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: 412

        x_program_update_date := old_references.program_update_date;
Line: 414

        x_program_update_date := SYSDATE;
Line: 418

    UPDATE igs_fi_1098t_dtls
      SET
        object_version_number             = new_references.object_version_number,
        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: 434

  END update_row;
Line: 448

  ||  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_1098t_dtls
      WHERE    stu_1098t_id                      = x_stu_1098t_id
      AND      box_num                           = x_box_num
      AND      transaction_id                    = x_transaction_id
      AND      transaction_code                  = x_transaction_code;
Line: 469

      insert_row (
        x_rowid,
        x_stu_1098t_id,
        x_box_num,
        x_transaction_id,
        x_transaction_code,
        x_mode
      );
Line: 481

    update_row (
      x_rowid,
      x_stu_1098t_id,
      x_box_num,
      x_transaction_id,
      x_transaction_code,
      x_mode
    );
Line: 493

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 27-APR-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: 512

    DELETE FROM igs_fi_1098t_dtls
    WHERE rowid = x_rowid;
Line: 519

  END delete_row;