DBA Data[Home] [Help]

APPS.IGS_PE_ATHLETIC_PRG_PKG SQL Statements

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

Line: 19

    x_last_update_dt                    IN     DATE     ,
    x_creation_date                     IN     DATE     ,
    x_created_by                        IN     NUMBER   ,
    x_last_update_date                  IN     DATE     ,
    x_last_updated_by                   IN     NUMBER   ,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By : cdcruz
  ||  Created On : 21-SEP-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_pe_athletic_prg
      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: 67

    new_references.last_update_dt                    := x_last_update_dt;
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: 131

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

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

      SELECT   rowid
      FROM     igs_pe_athletic_prg
      WHERE    athletic_prg_id = x_athletic_prg_id
      FOR UPDATE NOWAIT;
Line: 200

      SELECT   rowid
      FROM     igs_pe_athletic_prg
      WHERE    person_id = x_person_id
      AND      athletic_prg_code = x_athletic_prg_code
      AND      start_date = x_start_date
      AND      ((l_rowid IS NULL) OR (rowid <> l_rowid));
Line: 237

      SELECT   rowid
      FROM     igs_pe_athletic_prg
      WHERE   ((athletic_prg_code = x_code_id));
Line: 272

      SELECT   rowid
      FROM     igs_pe_athletic_prg
      WHERE   ((person_id = x_party_id));
Line: 305

    x_last_update_dt                    IN     DATE     ,
    x_creation_date                     IN     DATE     ,
    x_created_by                        IN     NUMBER   ,
    x_last_update_date                  IN     DATE     ,
    x_last_updated_by                   IN     NUMBER   ,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By : cdcruz
  ||  Created On : 21-SEP-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_athletic_prg_id,
      x_person_id,
      x_athletic_prg_code,
      x_rating,
      x_start_date,
      x_end_date,
      x_recruited_ind,
      x_participating_ind,
      x_last_update_dt,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 343

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

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

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

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_athletic_prg_id                   IN OUT NOCOPY NUMBER,
    x_person_id                         IN     NUMBER,
    x_athletic_prg_code                 IN     VARCHAR2,
    x_rating                            IN     VARCHAR2,
    x_start_date                        IN     DATE,
    x_end_date                          IN     DATE,
    x_recruited_ind                     IN     VARCHAR2,
    x_participating_ind                 IN     VARCHAR2,
    x_last_update_dt                    IN     DATE,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : cdcruz
  ||  Created On : 21-SEP-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_pe_athletic_prg
      WHERE    athletic_prg_id                   = x_athletic_prg_id;
Line: 404

    x_last_update_date           DATE;
Line: 405

    x_last_updated_by            NUMBER;
Line: 406

    x_last_update_login          NUMBER;
Line: 410

    x_last_update_date := SYSDATE;
Line: 412

      x_last_updated_by := 1;
Line: 413

      x_last_update_login := 0;
Line: 415

      x_last_updated_by := fnd_global.user_id;
Line: 416

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

      x_last_update_login := fnd_global.login_id;
Line: 420

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

    SELECT    igs_pe_athletic_prg_s.NEXTVAL
    INTO      x_athletic_prg_id
    FROM      dual;
Line: 434

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_athletic_prg_id                   => x_athletic_prg_id,
      x_person_id                         => x_person_id,
      x_athletic_prg_code                 => x_athletic_prg_code,
      x_rating                            => x_rating,
      x_start_date                        => x_start_date,
      x_end_date                          => x_end_date,
      x_recruited_ind                     => x_recruited_ind,
      x_participating_ind                 => x_participating_ind,
      x_last_update_dt                    => x_last_update_dt,
      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: 455

 INSERT INTO igs_pe_athletic_prg (
      athletic_prg_id,
      person_id,
      athletic_prg_code,
      rating,
      start_date,
      end_date,
      recruited_ind,
      participating_ind,
      last_update_dt,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      new_references.athletic_prg_id,
      new_references.person_id,
      new_references.athletic_prg_code,
      new_references.rating,
      new_references.start_date,
      new_references.end_date,
      new_references.recruited_ind,
      new_references.participating_ind,
      new_references.last_update_dt,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 512

 END insert_row;
Line: 525

    x_last_update_dt                    IN     DATE
  ) AS
  /*
  ||  Created By : cdcruz
  ||  Created On : 21-SEP-2001
  ||  Purpose : Handles the LOCK mechanism for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  */
    CURSOR c1 IS
      SELECT
        person_id,
        athletic_prg_code,
        rating,
        start_date,
        end_date,
        recruited_ind,
        participating_ind,
        last_update_dt
      FROM  igs_pe_athletic_prg
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 557

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

        AND ((tlinfo.last_update_dt = x_last_update_dt) OR ((tlinfo.last_update_dt IS NULL) AND (X_last_update_dt IS NULL)))
       ) THEN
      NULL;
Line: 587

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_athletic_prg_id                   IN     NUMBER,
    x_person_id                         IN     NUMBER,
    x_athletic_prg_code                 IN     VARCHAR2,
    x_rating                            IN     VARCHAR2,
    x_start_date                        IN     DATE,
    x_end_date                          IN     DATE,
    x_recruited_ind                     IN     VARCHAR2,
    x_participating_ind                 IN     VARCHAR2,
    x_last_update_dt                    IN     DATE,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : cdcruz
  ||  Created On : 21-SEP-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: 610

    x_last_updated_by            NUMBER;
Line: 611

    x_last_update_login          NUMBER;
Line: 615

    x_last_update_date := SYSDATE;
Line: 617

      x_last_updated_by := 1;
Line: 618

      x_last_update_login := 0;
Line: 620

      x_last_updated_by := fnd_global.user_id;
Line: 621

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

      x_last_update_login := fnd_global.login_id;
Line: 625

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_athletic_prg_id                   => x_athletic_prg_id,
      x_person_id                         => x_person_id,
      x_athletic_prg_code                 => x_athletic_prg_code,
      x_rating                            => x_rating,
      x_start_date                        => x_start_date,
      x_end_date                          => x_end_date,
      x_recruited_ind                     => x_recruited_ind,
      x_participating_ind                 => x_participating_ind,
      x_last_update_dt                    => x_last_update_dt,
      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: 656

 UPDATE igs_pe_athletic_prg
      SET
        person_id                         = new_references.person_id,
        athletic_prg_code                 = new_references.athletic_prg_code,
        rating                            = new_references.rating,
        start_date                        = new_references.start_date,
        end_date                          = new_references.end_date,
        recruited_ind                     = new_references.recruited_ind,
        participating_ind                 = new_references.participating_ind,
        last_update_dt                    = new_references.last_update_dt,
        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: 695

 END update_row;
Line: 708

    x_last_update_dt                    IN     DATE,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : cdcruz
  ||  Created On : 21-SEP-2001
  ||  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_pe_athletic_prg
      WHERE    athletic_prg_id                   = x_athletic_prg_id;
Line: 732

      insert_row (
        x_rowid,
        x_athletic_prg_id,
        x_person_id,
        x_athletic_prg_code,
        x_rating,
        x_start_date,
        x_end_date,
        x_recruited_ind,
        x_participating_ind,
        x_last_update_dt,
        x_mode
      );
Line: 749

    update_row (
      x_rowid,
      x_athletic_prg_id,
      x_person_id,
      x_athletic_prg_code,
      x_rating,
      x_start_date,
      x_end_date,
      x_recruited_ind,
      x_participating_ind,
      x_last_update_dt,
      x_mode
    );
Line: 766

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2,
  x_mode IN VARCHAR2
  ) AS
  /*
  ||  Created By : cdcruz
  ||  Created On : 21-SEP-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: 789

 DELETE FROM igs_pe_athletic_prg
    WHERE rowid = x_rowid;
Line: 803

  END delete_row;