DBA Data[Home] [Help]

APPS.IGS_EN_SPLACEMENTS_PKG SQL Statements

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

Line: 29

    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 : 16-NOV-2004
  ||  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_en_splacements
      WHERE    rowid = x_rowid;
Line: 56

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 92

    new_references.last_updated_by                   := x_last_updated_by;
Line: 93

    new_references.last_update_login                 := x_last_update_login;
Line: 150

      SELECT   rowid
      FROM     igs_en_splacements
      WHERE    splacement_id = x_splacement_id
      FOR UPDATE NOWAIT;
Line: 187

      SELECT   rowid
      FROM     igs_en_splacements
      WHERE    person_id = x_person_id
      AND      course_cd = x_course_cd
      AND      uoo_id = x_uoo_id
      AND      ((l_rowid IS NULL) OR (rowid <> l_rowid));
Line: 227

      SELECT   rowid
      FROM     igs_en_splacements
      WHERE    person_id = x_person_id
      AND      institution_code = x_institution_code
      AND      title = x_title
      AND      start_date = x_start_date
      AND      ((l_rowid IS NULL) OR (rowid <> l_rowid));
Line: 273

    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 : 16-NOV-2004
  ||  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_splacement_id,
      x_person_id,
      x_course_cd,
      x_uoo_id,
      x_start_date,
      x_end_date,
      x_institution_code,
      x_title,
      x_description,
      x_category_code,
      x_placement_type_code,
      x_specialty_code,
      x_compensation_flag,
      x_attendance_type,
      x_location,
      x_notes,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 315

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

    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.splacement_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_splacement_id                     IN OUT NOCOPY NUMBER,
    x_person_id                         IN     NUMBER,
    x_course_cd                         IN     VARCHAR2,
    x_uoo_id                            IN     NUMBER,
    x_start_date                        IN     DATE,
    x_end_date                          IN     DATE,
    x_institution_code                  IN     VARCHAR2,
    x_title                             IN     VARCHAR2,
    x_description                       IN     VARCHAR2,
    x_category_code                     IN     VARCHAR2,
    x_placement_type_code               IN     VARCHAR2,
    x_specialty_code                    IN     VARCHAR2,
    x_compensation_flag                 IN     VARCHAR2,
    x_attendance_type                   IN     VARCHAR2,
    x_location                          IN     VARCHAR2,
    x_notes                             IN     VARCHAR2,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 16-NOV-2004
  ||  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: 378

    x_last_updated_by            NUMBER;
Line: 379

    x_last_update_login          NUMBER;
Line: 383

    x_last_update_date := SYSDATE;
Line: 385

      x_last_updated_by := 1;
Line: 386

      x_last_update_login := 0;
Line: 388

      x_last_updated_by := fnd_global.user_id;
Line: 389

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

      x_last_update_login := fnd_global.login_id;
Line: 393

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

      fnd_message.set_token ('ROUTINE', 'IGS_EN_SPLACEMENTS_PKG.INSERT_ROW');
Line: 406

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_splacement_id                     => x_splacement_id,
      x_person_id                         => x_person_id,
      x_course_cd                         => x_course_cd,
      x_uoo_id                            => x_uoo_id,
      x_start_date                        => x_start_date,
      x_end_date                          => x_end_date,
      x_institution_code                  => x_institution_code,
      x_title                             => x_title,
      x_description                       => x_description,
      x_category_code                     => x_category_code,
      x_placement_type_code               => x_placement_type_code,
      x_specialty_code                    => x_specialty_code,
      x_compensation_flag                 => x_compensation_flag,
      x_attendance_type                   => x_attendance_type,
      x_location                          => x_location,
      x_notes                             => x_notes,
      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: 431

    INSERT INTO igs_en_splacements (
      splacement_id,
      person_id,
      course_cd,
      uoo_id,
      start_date,
      end_date,
      institution_code,
      title,
      description,
      category_code,
      placement_type_code,
      specialty_code,
      compensation_flag,
      attendance_type,
      location,
      notes,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      igs_en_splacements_s.NEXTVAL,
      new_references.person_id,
      new_references.course_cd,
      new_references.uoo_id,
      new_references.start_date,
      new_references.end_date,
      new_references.institution_code,
      new_references.title,
      new_references.description,
      new_references.category_code,
      new_references.placement_type_code,
      new_references.specialty_code,
      new_references.compensation_flag,
      new_references.attendance_type,
      new_references.location,
      new_references.notes,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    ) RETURNING ROWID, splacement_id INTO x_rowid, x_splacement_id;
Line: 477

  END insert_row;
Line: 509

      SELECT
        person_id,
        course_cd,
        uoo_id,
        start_date,
        end_date,
        institution_code,
        title,
        description,
        category_code,
        placement_type_code,
        specialty_code,
        compensation_flag,
        attendance_type,
        location,
        notes
      FROM  igs_en_splacements
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 536

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_splacement_id                     IN     NUMBER,
    x_person_id                         IN     NUMBER,
    x_course_cd                         IN     VARCHAR2,
    x_uoo_id                            IN     NUMBER,
    x_start_date                        IN     DATE,
    x_end_date                          IN     DATE,
    x_institution_code                  IN     VARCHAR2,
    x_title                             IN     VARCHAR2,
    x_description                       IN     VARCHAR2,
    x_category_code                     IN     VARCHAR2,
    x_placement_type_code               IN     VARCHAR2,
    x_specialty_code                    IN     VARCHAR2,
    x_compensation_flag                 IN     VARCHAR2,
    x_attendance_type                   IN     VARCHAR2,
    x_location                          IN     VARCHAR2,
    x_notes                             IN     VARCHAR2,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 16-NOV-2004
  ||  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: 603

    x_last_updated_by            NUMBER;
Line: 604

    x_last_update_login          NUMBER;
Line: 608

    x_last_update_date := SYSDATE;
Line: 610

      x_last_updated_by := 1;
Line: 611

      x_last_update_login := 0;
Line: 613

      x_last_updated_by := fnd_global.user_id;
Line: 614

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

      x_last_update_login := fnd_global.login_id;
Line: 618

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

      fnd_message.set_token ('ROUTINE', 'IGS_EN_SPLACEMENTS_PKG.UPDATE_ROW');
Line: 629

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_splacement_id                     => x_splacement_id,
      x_person_id                         => x_person_id,
      x_course_cd                         => x_course_cd,
      x_uoo_id                            => x_uoo_id,
      x_start_date                        => x_start_date,
      x_end_date                          => x_end_date,
      x_institution_code                  => x_institution_code,
      x_title                             => x_title,
      x_description                       => x_description,
      x_category_code                     => x_category_code,
      x_placement_type_code               => x_placement_type_code,
      x_specialty_code                    => x_specialty_code,
      x_compensation_flag                 => x_compensation_flag,
      x_attendance_type                   => x_attendance_type,
      x_location                          => x_location,
      x_notes                             => x_notes,
      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: 654

    UPDATE igs_en_splacements
      SET
        person_id                         = new_references.person_id,
        course_cd                         = new_references.course_cd,
        uoo_id                            = new_references.uoo_id,
        start_date                        = new_references.start_date,
        end_date                          = new_references.end_date,
        institution_code                  = new_references.institution_code,
        title                             = new_references.title,
        description                       = new_references.description,
        category_code                     = new_references.category_code,
        placement_type_code               = new_references.placement_type_code,
        specialty_code                    = new_references.specialty_code,
        compensation_flag                 = new_references.compensation_flag,
        attendance_type                   = new_references.attendance_type,
        location                          = new_references.location,
        notes                             = new_references.notes,
        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: 680

  END update_row;
Line: 706

  ||  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_en_splacements
      WHERE    splacement_id                     = x_splacement_id;
Line: 724

      insert_row (
        x_rowid,
        x_splacement_id,
        x_person_id,
        x_course_cd,
        x_uoo_id,
        x_start_date,
        x_end_date,
        x_institution_code,
        x_title,
        x_description,
        x_category_code,
        x_placement_type_code,
        x_specialty_code,
        x_compensation_flag,
        x_attendance_type,
        x_location,
        x_notes,
        x_mode
      );
Line: 748

    update_row (
      x_rowid,
      x_splacement_id,
      x_person_id,
      x_course_cd,
      x_uoo_id,
      x_start_date,
      x_end_date,
      x_institution_code,
      x_title,
      x_description,
      x_category_code,
      x_placement_type_code,
      x_specialty_code,
      x_compensation_flag,
      x_attendance_type,
      x_location,
      x_notes,
      x_mode
    );
Line: 772

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 16-NOV-2004
  ||  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: 791

    DELETE FROM igs_en_splacements
    WHERE rowid = x_rowid;
Line: 798

  END delete_row;