DBA Data[Home] [Help]

APPS.IGS_AS_ANON_ID_US_PKG SQL Statements

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

Line: 23

    x_last_update_date                  IN     DATE        DEFAULT NULL,
    x_last_updated_by                   IN     NUMBER      DEFAULT NULL,
    x_last_update_login                 IN     NUMBER      DEFAULT NULL
  ) AS
  /*
  ||  Created By : cdcruz
  ||  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_as_anon_id_us
      WHERE    rowid = x_rowid;
Line: 50

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 80

    new_references.last_updated_by                   := x_last_updated_by;
Line: 81

    new_references.last_update_login                 := x_last_update_login;
Line: 100

      SELECT   rowid
      FROM     igs_as_anon_id_us
      WHERE    anonymous_id = x_anonymous_id
      AND      load_cal_type = x_load_cal_type
      AND      load_ci_sequence_number = x_load_ci_sequence_number
      AND      ((l_rowid IS NULL) OR (rowid <> l_rowid));
Line: 172

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

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

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

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

      SELECT   rowid
      FROM     igs_as_anon_id_us
      WHERE    person_id = x_person_id
      AND      course_cd = x_course_cd
      AND      uoo_id = x_uoo_id
      FOR UPDATE NOWAIT;
Line: 276

      SELECT   rowid
      FROM     igs_as_anon_id_us
      WHERE   ((load_cal_type = x_cal_type) AND
               (load_ci_sequence_number = x_sequence_number));
Line: 315

      SELECT   rowid
      FROM     igs_as_anon_id_us
      WHERE   ((course_cd = x_course_cd) AND
               (person_id = x_person_id) AND
               (uoo_id = x_uoo_id));
Line: 353

      SELECT   rowid
      FROM     igs_as_anon_id_us
      WHERE   ((course_cd = x_course_cd) AND
               (person_id = x_person_id));
Line: 389

      SELECT   rowid
      FROM     igs_as_anon_id_us
      WHERE   ((uoo_id = x_uoo_id));
Line: 426

    x_last_update_date                  IN     DATE        DEFAULT NULL,
    x_last_updated_by                   IN     NUMBER      DEFAULT NULL,
    x_last_update_login                 IN     NUMBER      DEFAULT NULL
  ) AS
  /*
  ||  Created By : cdcruz
  ||  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_person_id,
      x_anonymous_id,
      x_system_generated_ind,
      x_course_cd,
      x_unit_cd,
      x_teach_cal_type,
      x_teach_ci_sequence_number,
      x_uoo_id,
      x_load_cal_type,
      x_load_ci_sequence_number,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 462

    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.uoo_id
             )) THEN
        fnd_message.set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
Line: 475

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

    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.uoo_id
             ) ) THEN
        fnd_message.set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
Line: 491

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_person_id                         IN     NUMBER,
    x_anonymous_id                      IN     VARCHAR2,
    x_system_generated_ind              IN     VARCHAR2,
    x_course_cd                         IN     VARCHAR2,
    x_unit_cd                           IN     VARCHAR2,
    x_teach_cal_type                    IN     VARCHAR2,
    x_teach_ci_sequence_number          IN     NUMBER,
    x_uoo_id                            IN     NUMBER,
    x_load_cal_type                     IN     VARCHAR2,
    x_load_ci_sequence_number           IN     NUMBER,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : cdcruz
  ||  Created On : 29-JAN-2002
  ||  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_as_anon_id_us
      WHERE    person_id                         = x_person_id
      AND      course_cd                         = x_course_cd
      AND      uoo_id                           = x_uoo_id;
Line: 529

    x_last_update_date           DATE;
Line: 530

    x_last_updated_by            NUMBER;
Line: 531

    x_last_update_login          NUMBER;
Line: 535

    x_program_update_date        DATE;
Line: 539

    x_last_update_date := SYSDATE;
Line: 541

      x_last_updated_by := 1;
Line: 542

      x_last_update_login := 0;
Line: 544

      x_last_updated_by := fnd_global.user_id;
Line: 545

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

      x_last_update_login := fnd_global.login_id;
Line: 549

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

        x_program_update_date    := NULL;
Line: 562

        x_program_update_date    := SYSDATE;
Line: 571

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_person_id                         => x_person_id,
      x_anonymous_id                      => x_anonymous_id,
      x_system_generated_ind              => x_system_generated_ind,
      x_course_cd                         => x_course_cd,
      x_unit_cd                           => x_unit_cd,
      x_teach_cal_type                    => x_teach_cal_type,
      x_teach_ci_sequence_number          => x_teach_ci_sequence_number,
      x_uoo_id                            => x_uoo_id,
      x_load_cal_type                     => x_load_cal_type,
      x_load_ci_sequence_number           => x_load_ci_sequence_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: 590

    INSERT INTO igs_as_anon_id_us (
      person_id,
      anonymous_id,
      system_generated_ind,
      course_cd,
      unit_cd,
      teach_cal_type,
      teach_ci_sequence_number,
      uoo_id,
      load_cal_type,
      load_ci_sequence_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.person_id,
      new_references.anonymous_id,
      new_references.system_generated_ind,
      new_references.course_cd,
      new_references.unit_cd,
      new_references.teach_cal_type,
      new_references.teach_ci_sequence_number,
      new_references.uoo_id,
      new_references.load_cal_type,
      new_references.load_ci_sequence_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
    );
Line: 640

  END insert_row;
Line: 666

      SELECT
        anonymous_id,
        system_generated_ind,
        uoo_id,
        load_cal_type,
        load_ci_sequence_number
      FROM  igs_as_anon_id_us
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 683

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_person_id                         IN     NUMBER,
    x_anonymous_id                      IN     VARCHAR2,
    x_system_generated_ind              IN     VARCHAR2,
    x_course_cd                         IN     VARCHAR2,
    x_unit_cd                           IN     VARCHAR2,
    x_teach_cal_type                    IN     VARCHAR2,
    x_teach_ci_sequence_number          IN     NUMBER,
    x_uoo_id                            IN     NUMBER,
    x_load_cal_type                     IN     VARCHAR2,
    x_load_ci_sequence_number           IN     NUMBER,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : cdcruz
  ||  Created On : 29-JAN-2002
  ||  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: 734

    x_last_updated_by            NUMBER;
Line: 735

    x_last_update_login          NUMBER;
Line: 739

    x_program_update_date        DATE;
Line: 743

    x_last_update_date := SYSDATE;
Line: 745

      x_last_updated_by := 1;
Line: 746

      x_last_update_login := 0;
Line: 748

      x_last_updated_by := fnd_global.user_id;
Line: 749

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

      x_last_update_login := fnd_global.login_id;
Line: 753

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_person_id                         => x_person_id,
      x_anonymous_id                      => x_anonymous_id,
      x_system_generated_ind              => x_system_generated_ind,
      x_course_cd                         => x_course_cd,
      x_unit_cd                           => x_unit_cd,
      x_teach_cal_type                    => x_teach_cal_type,
      x_teach_ci_sequence_number          => x_teach_ci_sequence_number,
      x_uoo_id                            => x_uoo_id,
      x_load_cal_type                     => x_load_cal_type,
      x_load_ci_sequence_number           => x_load_ci_sequence_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: 790

        x_program_update_date := old_references.program_update_date;
Line: 792

        x_program_update_date := SYSDATE;
Line: 796

    UPDATE igs_as_anon_id_us
      SET
        anonymous_id                      = new_references.anonymous_id,
        system_generated_ind              = new_references.system_generated_ind,
        load_cal_type                     = new_references.load_cal_type,
        load_ci_sequence_number           = new_references.load_ci_sequence_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: 815

  END update_row;
Line: 835

  ||  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_as_anon_id_us
      WHERE    person_id                         = x_person_id
      AND      course_cd                         = x_course_cd
      AND      uoo_id                            = x_uoo_id;
Line: 856

      insert_row (
        x_rowid,
        x_person_id,
        x_anonymous_id,
        x_system_generated_ind,
        x_course_cd,
        x_unit_cd,
        x_teach_cal_type,
        x_teach_ci_sequence_number,
        x_uoo_id,
        x_load_cal_type,
        x_load_ci_sequence_number,
        x_mode
      );
Line: 874

    update_row (
      x_rowid,
      x_person_id,
      x_anonymous_id,
      x_system_generated_ind,
      x_course_cd,
      x_unit_cd,
      x_teach_cal_type,
      x_teach_ci_sequence_number,
      x_uoo_id,
      x_load_cal_type,
      x_load_ci_sequence_number,
      x_mode
    );
Line: 892

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : cdcruz
  ||  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: 911

    DELETE FROM igs_as_anon_id_us
    WHERE rowid = x_rowid;
Line: 918

  END delete_row;