DBA Data[Home] [Help]

APPS.IGS_HE_ST_SPA_UT_ALL_PKG SQL Statements

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

Line: 21

    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 : 29-JAN-2002
  ||  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_HE_ST_SPA_UT_ALL
      WHERE    rowid = x_rowid;
Line: 48

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 76

    new_references.last_updated_by                   := x_last_updated_by;
Line: 77

    new_references.last_update_login                 := x_last_update_login;
Line: 125

   SELECT rowid
   FROM igs_he_st_spa_all
   WHERE person_id =  new_references.person_id AND
         course_cd =   new_references.course_cd ;
Line: 144

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

      SELECT   rowid
      FROM     igs_he_st_spa_ut_all
      WHERE    hesa_st_spau_id = x_hesa_st_spau_id
      FOR UPDATE NOWAIT;
Line: 205

      SELECT   rowid
      FROM     igs_he_st_spa_ut_all
      WHERE    person_id = x_person_id
      AND      course_cd = x_course_cd
      AND      ((qualification_level = x_qualification_level) OR (qualification_level IS NULL AND x_qualification_level IS NULL))
      AND      ((l_rowid IS NULL) OR (rowid <> l_rowid));
Line: 243

      SELECT   rowid
      FROM     igs_he_st_spa_ut_all
      WHERE   ((course_cd = x_course_cd) AND
               (person_id = x_person_id));
Line: 279

    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 : 29-JAN-2002
  ||  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_hesa_st_spau_id,
      x_org_id,
      x_person_id,
      x_course_cd,
      x_version_number,
      x_qualification_level,
      x_number_of_qual,
      x_tariff_score,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 313

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

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

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

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_hesa_st_spau_id                   IN OUT NOCOPY NUMBER,
    x_org_id                            IN     NUMBER,
    x_person_id                         IN     NUMBER,
    x_course_cd                         IN     VARCHAR2,
    x_version_number                    IN     NUMBER,
    x_qualification_level               IN     VARCHAR2,
    x_number_of_qual                    IN     NUMBER,
    x_tariff_score                      IN     NUMBER,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 29-JAN-2002
  ||  Purpose : Handles the INSERT DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  smvk	      13-Feb-2002     Call to igs_ge_gen_003.get_org_id
  ||				      w.r.t. SWCR006
  ||  (reverse chronological order - newest change first)
  */
    CURSOR c IS
      SELECT   rowid
      FROM     igs_he_st_spa_ut_all
      WHERE    hesa_st_spau_id                   = x_hesa_st_spau_id;
Line: 375

    x_last_update_date           DATE;
Line: 376

    x_last_updated_by            NUMBER;
Line: 377

    x_last_update_login          NUMBER;
Line: 381

    x_last_update_date := SYSDATE;
Line: 383

      x_last_updated_by := 1;
Line: 384

      x_last_update_login := 0;
Line: 386

      x_last_updated_by := fnd_global.user_id;
Line: 387

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

      x_last_update_login := fnd_global.login_id;
Line: 391

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

    SELECT    igs_he_st_spa_ut_all_s.NEXTVAL
    INTO      x_hesa_st_spau_id
    FROM      dual;
Line: 405

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_hesa_st_spau_id                   => x_hesa_st_spau_id,
      x_org_id                            => igs_ge_gen_003.get_org_id,
      x_person_id                         => x_person_id,
      x_course_cd                         => x_course_cd,
      x_version_number                    => x_version_number,
      x_qualification_level               => x_qualification_level,
      x_number_of_qual                    => x_number_of_qual,
      x_tariff_score                      => x_tariff_score,
      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: 422

    INSERT INTO igs_he_st_spa_ut_all (
      hesa_st_spau_id,
      org_id,
      person_id,
      course_cd,
      version_number,
      qualification_level,
      number_of_qual,
      tariff_score,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      new_references.hesa_st_spau_id,
      new_references.org_id,
      new_references.person_id,
      new_references.course_cd,
      new_references.version_number,
      new_references.qualification_level,
      new_references.number_of_qual,
      new_references.tariff_score,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 460

  END insert_row;
Line: 486

      SELECT
        person_id,
        course_cd,
        version_number,
        qualification_level,
        number_of_qual,
        tariff_score
      FROM  igs_he_st_spa_ut_all
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 504

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_hesa_st_spau_id                   IN     NUMBER,
    x_org_id                            IN     NUMBER,
    x_person_id                         IN     NUMBER,
    x_course_cd                         IN     VARCHAR2,
    x_version_number                    IN     NUMBER,
    x_qualification_level               IN     VARCHAR2,
    x_number_of_qual                    IN     NUMBER,
    x_tariff_score                      IN     NUMBER,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 29-JAN-2002
  ||  Purpose : Handles the UPDATE DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  smvk	      13-Feb-2002     Call to igs_ge_gen_003.get_org_id
  ||				      w.r.t. SWCR006
  ||  (reverse chronological order - newest change first)
  */
    x_last_update_date           DATE ;
Line: 556

    x_last_updated_by            NUMBER;
Line: 557

    x_last_update_login          NUMBER;
Line: 561

    x_last_update_date := SYSDATE;
Line: 563

      x_last_updated_by := 1;
Line: 564

      x_last_update_login := 0;
Line: 566

      x_last_updated_by := fnd_global.user_id;
Line: 567

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

      x_last_update_login := fnd_global.login_id;
Line: 571

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_hesa_st_spau_id                   => x_hesa_st_spau_id,
      x_org_id                            => igs_ge_gen_003.get_org_id,
      x_person_id                         => x_person_id,
      x_course_cd                         => x_course_cd,
      x_version_number                    => x_version_number,
      x_qualification_level               => x_qualification_level,
      x_number_of_qual                    => x_number_of_qual,
      x_tariff_score                      => x_tariff_score,
      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: 598

    UPDATE igs_he_st_spa_ut_all
      SET
        person_id                         = new_references.person_id,
        course_cd                         = new_references.course_cd,
        version_number                    = new_references.version_number,
        qualification_level               = new_references.qualification_level,
        number_of_qual                    = new_references.number_of_qual,
        tariff_score                      = new_references.tariff_score,
        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: 615

  END update_row;
Line: 633

  ||  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_he_st_spa_ut_all
      WHERE    hesa_st_spau_id                   = x_hesa_st_spau_id;
Line: 651

      insert_row (
        x_rowid,
        x_hesa_st_spau_id,
        x_org_id,
        x_person_id,
        x_course_cd,
        x_version_number,
        x_qualification_level,
        x_number_of_qual,
        x_tariff_score,
        x_mode
      );
Line: 667

    update_row (
      x_rowid,
      x_hesa_st_spau_id,
      x_org_id,
      x_person_id,
      x_course_cd,
      x_version_number,
      x_qualification_level,
      x_number_of_qual,
      x_tariff_score,
      x_mode
    );
Line: 683

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 29-JAN-2002
  ||  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: 702

    DELETE FROM igs_he_st_spa_ut_all
    WHERE rowid = x_rowid;
Line: 709

  END delete_row;