DBA Data[Home] [Help]

APPS.IGS_UC_CRSE_VAC_OPS_PKG SQL Statements

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

Line: 15

    x_updater                           IN     VARCHAR2     ,
    x_cl_updated                        IN     VARCHAR2     ,
    x_cl_date                           IN     DATE         ,
    x_vacancy_status                    IN     VARCHAR2     ,
    x_sent_to_ucas                      IN     VARCHAR2     ,
     x_system_code                       IN     VARCHAR2  ,
    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 : rgopalan
  ||  Created On : 23-OCT-2001
  ||  Purpose : Initialises the Old and New references for the columns of the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  || smaddali 10-jun-03  Obsoleting datetimestamp column for ucfd203 -multiple cycled build ,bug#2669208
  ||  (reverse chronological order - newest change first)
  */

    CURSOR cur_old_ref_values IS
      SELECT   *
      FROM     IGS_UC_CRSE_VAC_OPS
      WHERE    rowid = x_rowid;
Line: 51

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

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

    new_references.updater                           := x_updater;
Line: 66

    new_references.cl_updated                        := x_cl_updated;
Line: 72

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

    new_references.last_update_date                  := x_last_update_date;
Line: 81

    new_references.last_updated_by                   := x_last_updated_by;
Line: 82

    new_references.last_update_login                 := x_last_update_login;
Line: 112

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

      SELECT   rowid
      FROM     igs_uc_crse_vac_ops
      WHERE    ucas_program_code = x_ucas_program_code
      AND      institute = x_institute
      AND      ucas_campus = x_ucas_campus
      AND      option_code = x_option_code
      AND      system_code = x_system_code;
Line: 178

      SELECT   rowid
      FROM     igs_uc_crse_vac_ops
      WHERE   ((institute = x_institute) AND
               (ucas_campus = x_ucas_campus) AND
               (ucas_program_code = x_ucas_program_code)AND
               (system_code = x_system_code));
Line: 209

    x_updater                           IN     VARCHAR2     ,
    x_cl_updated                        IN     VARCHAR2     ,
    x_cl_date                           IN     DATE         ,
    x_vacancy_status                    IN     VARCHAR2     ,
    x_sent_to_ucas                      IN     VARCHAR2     ,
     x_system_code                       IN     VARCHAR2  ,
    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 : rgopalan
  ||  Created On : 23-OCT-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
  || smaddali 10-jun-03  Obsoleting datetimestamp column for ucfd203 -multiple cycled build ,bug#2669208
  ||  (reverse chronological order - newest change first)
  */
  BEGIN

    set_column_values (
      p_action,
      x_rowid,
      x_ucas_program_code,
      x_institute,
      x_ucas_campus,
      x_option_code,
      x_updater,
      x_cl_updated,
      x_cl_date,
      x_vacancy_status,
      x_sent_to_ucas,
       x_system_code    ,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 254

    IF (p_action = 'INSERT') THEN
      -- Call all the procedures related to Before Insert.
      IF ( get_pk_for_validation(
             new_references.ucas_program_code,
             new_references.institute,
             new_references.ucas_campus,
             new_references.option_code             ,
             new_references.system_code
           )
         ) THEN
        fnd_message.set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
Line: 269

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

    ELSIF (p_action = 'VALIDATE_INSERT') THEN
      -- Call all the procedures related to Before Insert.
      IF ( get_pk_for_validation (
             new_references.ucas_program_code,
             new_references.institute,
             new_references.ucas_campus,
             new_references.option_code,
             new_references.system_code
           )
         ) THEN
        fnd_message.set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
Line: 291

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_ucas_program_code                 IN     VARCHAR2,
    x_institute                         IN     VARCHAR2,
    x_ucas_campus                       IN     VARCHAR2,
    x_option_code                       IN     VARCHAR2,
    x_updater                           IN     VARCHAR2,
    x_cl_updated                        IN     VARCHAR2,
    x_cl_date                           IN     DATE,
    x_vacancy_status                    IN     VARCHAR2,
    x_sent_to_ucas                      IN     VARCHAR2,
     x_system_code                       IN     VARCHAR2  ,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : rgopalan
  ||  Created On : 23-OCT-2001
  ||  Purpose : Handles the INSERT DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  || smaddali 10-jun-03  Obsoleting datetimestamp column for ucfd203 -multiple cycled build ,bug#2669208
  ||  (reverse chronological order - newest change first)
  */
    CURSOR c IS
      SELECT   rowid
      FROM     igs_uc_crse_vac_ops
      WHERE    ucas_program_code                 = x_ucas_program_code
      AND      institute                         = x_institute
      AND      ucas_campus                       = x_ucas_campus
      AND      option_code                       = x_option_code;
Line: 323

    x_last_update_date           DATE;
Line: 324

    x_last_updated_by            NUMBER;
Line: 325

    x_last_update_login          NUMBER;
Line: 329

    x_last_update_date := SYSDATE;
Line: 331

      x_last_updated_by := 1;
Line: 332

      x_last_update_login := 0;
Line: 334

      x_last_updated_by := fnd_global.user_id;
Line: 335

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

      x_last_update_login := fnd_global.login_id;
Line: 339

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

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_ucas_program_code                 => x_ucas_program_code,
      x_institute                         => x_institute,
      x_ucas_campus                       => x_ucas_campus,
      x_option_code                       => x_option_code,
      x_updater                           => x_updater,
      x_cl_updated                        => x_cl_updated,
      x_cl_date                           => x_cl_date,
      x_vacancy_status                    => x_vacancy_status,
      x_sent_to_ucas                      => x_sent_to_ucas,
       x_system_code                       => x_system_code   ,
      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: 368

    INSERT INTO igs_uc_crse_vac_ops (
      ucas_program_code,
      institute,
      ucas_campus,
      option_code,
      updater,
      cl_updated,
      cl_date,
      vacancy_status,
      sent_to_ucas,
      system_code,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      new_references.ucas_program_code,
      new_references.institute,
      new_references.ucas_campus,
      new_references.option_code,
      new_references.updater,
      new_references.cl_updated,
      new_references.cl_date,
      new_references.vacancy_status,
      new_references.sent_to_ucas,
      new_references.system_code,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 410

  END insert_row;
Line: 419

    x_updater                           IN     VARCHAR2,
    x_cl_updated                        IN     VARCHAR2,
    x_cl_date                           IN     DATE,
    x_vacancy_status                    IN     VARCHAR2,
    x_sent_to_ucas                      IN     VARCHAR2,
    x_system_code                       IN     VARCHAR2
  ) AS
  /*
  ||  Created By : rgopalan
  ||  Created On : 23-OCT-2001
  ||  Purpose : Handles the LOCK mechanism for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  || smaddali 10-jun-03  Obsoleting datetimestamp column for ucfd203 -multiple cycled build ,bug#2669208
  ||  (reverse chronological order - newest change first)
  */
    CURSOR c1 IS
      SELECT
        updater,
        cl_updated,
        cl_date,
        vacancy_status,
        sent_to_ucas,
        system_code
      FROM  igs_uc_crse_vac_ops
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 455

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

        (tlinfo.updater = x_updater)
        AND ((tlinfo.cl_updated = x_cl_updated) OR ((tlinfo.cl_updated IS NULL) AND (X_cl_updated IS NULL)))
        AND ((tlinfo.cl_date = x_cl_date) OR ((tlinfo.cl_date IS NULL) AND (X_cl_date IS NULL)))
        AND ((tlinfo.vacancy_status = x_vacancy_status) OR ((tlinfo.vacancy_status IS NULL) AND (X_vacancy_status IS NULL)))
        AND (tlinfo.sent_to_ucas = x_sent_to_ucas)
       ) THEN
      NULL;
Line: 482

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_ucas_program_code                 IN     VARCHAR2,
    x_institute                         IN     VARCHAR2,
    x_ucas_campus                       IN     VARCHAR2,
    x_option_code                       IN     VARCHAR2,
    x_updater                           IN     VARCHAR2,
    x_cl_updated                        IN     VARCHAR2,
    x_cl_date                           IN     DATE,
    x_vacancy_status                    IN     VARCHAR2,
    x_sent_to_ucas                      IN     VARCHAR2,
    x_system_code                       IN     VARCHAR2  ,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : rgopalan
  ||  Created On : 23-OCT-2001
  ||  Purpose : Handles the UPDATE DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  || smaddali 10-jun-03  Obsoleting datetimestamp column for ucfd203 -multiple cycled build ,bug#2669208
  ||  (reverse chronological order - newest change first)
  */
    x_last_update_date           DATE ;
Line: 507

    x_last_updated_by            NUMBER;
Line: 508

    x_last_update_login          NUMBER;
Line: 512

    x_last_update_date := SYSDATE;
Line: 514

      x_last_updated_by := 1;
Line: 515

      x_last_update_login := 0;
Line: 517

      x_last_updated_by := fnd_global.user_id;
Line: 518

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

      x_last_update_login := fnd_global.login_id;
Line: 522

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_ucas_program_code                 => x_ucas_program_code,
      x_institute                         => x_institute,
      x_ucas_campus                       => x_ucas_campus,
      x_option_code                       => x_option_code,
      x_updater                           => x_updater,
      x_cl_updated                        => x_cl_updated,
      x_cl_date                           => x_cl_date,
      x_vacancy_status                    => x_vacancy_status,
      x_sent_to_ucas                      => x_sent_to_ucas,
      x_system_code                        => x_system_code,
      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: 551

    UPDATE igs_uc_crse_vac_ops
      SET
        updater                           = new_references.updater,
        cl_updated                        = new_references.cl_updated,
        cl_date                           = new_references.cl_date,
        vacancy_status                    = new_references.vacancy_status,
        sent_to_ucas                      = new_references.sent_to_ucas,
        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: 567

  END update_row;
Line: 576

    x_updater                           IN     VARCHAR2,
    x_cl_updated                        IN     VARCHAR2,
    x_cl_date                           IN     DATE,
    x_vacancy_status                    IN     VARCHAR2,
    x_sent_to_ucas                      IN     VARCHAR2,
    x_system_code                       IN     VARCHAR2,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : rgopalan
  ||  Created On : 23-OCT-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
  || smaddali 10-jun-03  Obsoleting datetimestamp column for ucfd203 -multiple cycled build ,bug#2669208
  ||  (reverse chronological order - newest change first)
  */
    CURSOR c1 IS
      SELECT   rowid
      FROM     igs_uc_crse_vac_ops
      WHERE    ucas_program_code                 = x_ucas_program_code
      AND      institute                         = x_institute
      AND      ucas_campus                       = x_ucas_campus
      AND      option_code                       = x_option_code;
Line: 609

      insert_row (
        x_rowid,
        x_ucas_program_code,
        x_institute,
        x_ucas_campus,
        x_option_code,
        x_updater,
        x_cl_updated,
        x_cl_date,
        x_vacancy_status,
        x_sent_to_ucas,
         x_system_code,
        x_mode
      );
Line: 627

    update_row (
      x_rowid,
      x_ucas_program_code,
      x_institute,
      x_ucas_campus,
      x_option_code,
      x_updater,
      x_cl_updated,
      x_cl_date,
      x_vacancy_status,
      x_sent_to_ucas,
       x_system_code  ,
      x_mode
    );
Line: 645

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : rgopalan
  ||  Created On : 23-OCT-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: 664

    DELETE FROM igs_uc_crse_vac_ops
    WHERE rowid = x_rowid;
Line: 671

  END delete_row;