DBA Data[Home] [Help]

APPS.IGS_EN_SPI_RCONDS_PKG SQL Statements

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

Line: 14

    x_logical_delete_date               IN     DATE,
    x_return_condition                          IN     VARCHAR2,
    x_status_code                            IN     VARCHAR2,
    x_approved_dt                       IN     DATE,
    x_approved_by                       IN     NUMBER,
    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 : Susmitha Tutta
  ||  Created On : 12-MAR-2006
  ||  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_spi_rconds
      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: 61

    new_references.logical_delete_date               := x_logical_delete_date;
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: 100

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

         (old_references.logical_delete_date = new_references.logical_delete_date)
        ) OR
        (
	 (new_references.person_id IS NULL) OR
         (new_references.course_cd IS NULL) OR
	 (new_references.start_dt IS NULL) OR
	 (new_references.logical_delete_date IS NULL)
        )
       ) THEN
      NULL;
Line: 124

		new_references.logical_delete_date
              ) THEN
      fnd_message.set_name ('FND', 'FORM_RECORD_DELETED');
Line: 138

    x_logical_delete_date               IN     DATE,
    x_return_condition                          IN     VARCHAR2
  ) RETURN BOOLEAN AS
  /*
  ||  Created By : Susmitha Tutta
  ||  Created On : 12-MAR-2006
  ||  Purpose : Validates the Primary Key of the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  */
    CURSOR cur_rowid IS
      SELECT   rowid
      FROM     igs_en_spi_rconds
      WHERE    person_id = x_person_id
      AND      course_cd = x_course_cd
      AND      start_dt = x_start_dt
      AND      logical_delete_date = x_logical_delete_date
      AND      return_condition = x_return_condition
      FOR UPDATE NOWAIT;
Line: 181

    x_logical_delete_date IN DATE
  ) AS
  -- Get the details of
  CURSOR cur_rowid IS
    SELECT rowid
      FROM igs_en_spi_rconds
     WHERE person_id = x_person_id
       AND course_cd =  x_course_cd
       AND start_dt = x_start_dt
       AND logical_delete_date = x_logical_delete_date;
Line: 212

    x_logical_delete_date               IN     DATE,
    x_return_condition                          IN     VARCHAR2,
    x_status_code                            IN     VARCHAR2,
    x_approved_dt                       IN     DATE,
    x_approved_by                       IN     NUMBER,
    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 : Susmitha Tutta
  ||  Created On : 12-MAR-2006
  ||  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_person_id,
      x_course_cd,
      x_start_dt,
      x_logical_delete_date,
      x_return_condition,
      x_status_code,
      x_approved_dt,
      x_approved_by,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 253

    IF (p_action = 'INSERT') THEN
      -- Call all the procedures related to Before Insert.
      IF ( get_pk_for_validation(
             new_references.person_id,
             new_references.course_cd,
             new_references.start_dt,
             new_references.logical_delete_date,
             new_references.return_condition
           )
         ) THEN
        fnd_message.set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
Line: 268

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

    ELSIF (p_action = 'VALIDATE_INSERT') THEN
      -- Call all the procedures related to Before Insert.
      IF ( get_pk_for_validation (
             new_references.person_id,
             new_references.course_cd,
             new_references.start_dt,
             new_references.logical_delete_date,
             new_references.return_condition
           )
         ) THEN
        fnd_message.set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
Line: 290

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_person_id                         IN     NUMBER,
    x_course_cd                         IN     VARCHAR2,
    x_start_dt                          IN     DATE,
    x_logical_delete_date               IN     DATE,
    x_return_condition                          IN     VARCHAR2,
    x_status_code                            IN     VARCHAR2,
    x_approved_dt                       IN     DATE,
    x_approved_by                       IN     NUMBER,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : Susmitha Tutta
  ||  Created On : 12-MAR-2006
  ||  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: 313

    x_last_updated_by            NUMBER;
Line: 314

    x_last_update_login          NUMBER;
Line: 318

    x_last_update_date := SYSDATE;
Line: 320

      x_last_updated_by := 1;
Line: 321

      x_last_update_login := 0;
Line: 323

      x_last_updated_by := fnd_global.user_id;
Line: 324

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

      x_last_update_login := fnd_global.login_id;
Line: 328

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

      fnd_message.set_token ('ROUTINE', 'IGS_EN_SPI_RCONDS_PKG.INSERT_ROW');
Line: 340

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_person_id                         => x_person_id,
      x_course_cd                         => x_course_cd,
      x_start_dt                          => x_start_dt,
      x_logical_delete_date               => x_logical_delete_date,
      x_return_condition                          => x_return_condition,
      x_status_code                            => x_status_code,
      x_approved_dt                       => x_approved_dt,
      x_approved_by                       => x_approved_by,
      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: 357

    INSERT INTO igs_en_spi_rconds (
      person_id,
      course_cd,
      start_dt,
      logical_delete_date,
      return_condition,
      status_code,
      approved_dt,
      approved_by,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      new_references.person_id,
      new_references.course_cd,
      new_references.start_dt,
      new_references.logical_delete_date,
      new_references.return_condition,
      new_references.status_code,
      new_references.approved_dt,
      new_references.approved_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    ) RETURNING ROWID INTO x_rowid;
Line: 387

  END insert_row;
Line: 395

    x_logical_delete_date               IN     DATE,
    x_return_condition                          IN     VARCHAR2,
    x_status_code                            IN     VARCHAR2,
    x_approved_dt                       IN     DATE,
    x_approved_by                       IN     NUMBER
  ) AS
  /*
  ||  Created By : Susmitha Tutta
  ||  Created On : 12-MAR-2006
  ||  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
        status_code,
        approved_dt,
        approved_by
      FROM  igs_en_spi_rconds
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 426

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_person_id                         IN     NUMBER,
    x_course_cd                         IN     VARCHAR2,
    x_start_dt                          IN     DATE,
    x_logical_delete_date               IN     DATE,
    x_return_condition                          IN     VARCHAR2,
    x_status_code                            IN     VARCHAR2,
    x_approved_dt                       IN     DATE,
    x_approved_by                       IN     NUMBER,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : Susmitha Tutta
  ||  Created On : 12-MAR-2006
  ||  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: 473

    x_last_updated_by            NUMBER;
Line: 474

    x_last_update_login          NUMBER;
Line: 478

    x_last_update_date := SYSDATE;
Line: 480

      x_last_updated_by := 1;
Line: 481

      x_last_update_login := 0;
Line: 483

      x_last_updated_by := fnd_global.user_id;
Line: 484

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

      x_last_update_login := fnd_global.login_id;
Line: 488

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

      fnd_message.set_token ('ROUTINE', 'IGS_EN_SPI_RCONDS_PKG.UPDATE_ROW');
Line: 499

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_person_id                         => x_person_id,
      x_course_cd                         => x_course_cd,
      x_start_dt                          => x_start_dt,
      x_logical_delete_date               => x_logical_delete_date,
      x_return_condition                  => x_return_condition,
      x_status_code                       => x_status_code,
      x_approved_dt                       => x_approved_dt,
      x_approved_by                       => x_approved_by,
      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: 516

    UPDATE igs_en_spi_rconds
      SET
        logical_delete_date               = new_references.logical_delete_date,
        status_code                       = new_references.status_code,
        approved_dt                       = new_references.approved_dt,
        approved_by                       = new_references.approved_by,
        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: 531

  END update_row;
Line: 539

    x_logical_delete_date               IN     DATE,
    x_return_condition                          IN     VARCHAR2,
    x_status_code                            IN     VARCHAR2,
    x_approved_dt                       IN     DATE,
    x_approved_by                       IN     NUMBER,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : Susmitha Tutta
  ||  Created On : 12-MAR-2006
  ||  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_spi_rconds
      WHERE    person_id                         = x_person_id
      AND      course_cd                         = x_course_cd
      AND      start_dt                          = x_start_dt
      AND      logical_delete_date               = x_logical_delete_date
      AND      return_condition                          = x_return_condition;
Line: 571

      insert_row (
        x_rowid,
        x_person_id,
        x_course_cd,
        x_start_dt,
        x_logical_delete_date,
        x_return_condition,
        x_status_code,
        x_approved_dt,
        x_approved_by,
        x_mode
      );
Line: 587

    update_row (
      x_rowid,
      x_person_id,
      x_course_cd,
      x_start_dt,
      x_logical_delete_date,
      x_return_condition,
      x_status_code,
      x_approved_dt,
      x_approved_by,
      x_mode
    );
Line: 603

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : Susmitha Tutta
  ||  Created On : 12-MAR-2006
  ||  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: 622

    DELETE FROM igs_en_spi_rconds
    WHERE rowid = x_rowid;
Line: 629

  END delete_row;