DBA Data[Home] [Help]

APPS.IGS_UC_APP_CLR_RND_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  ,
    x_oss_attendance_type               IN     VARCHAR2,
    x_oss_attendance_mode               IN     VARCHAR2,
    x_system_code                       IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 21-FEB-2002
  ||  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 cycles build, bug#2669208  |
  ||  (reverse chronological order - newest change first)
  */

    CURSOR cur_old_ref_values IS
      SELECT   *
      FROM     IGS_UC_APP_CLR_RND
      WHERE    rowid = x_rowid;
Line: 60

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 96

    new_references.last_updated_by                   := x_last_updated_by;
Line: 97

    new_references.last_update_login                 := x_last_update_login;
Line: 118

    SELECT DISTINCT current_inst_code
    FROM   igs_uc_defaults
    WHERE  current_inst_code IS NOT NULL;
Line: 156

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

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

      SELECT   rowid
      FROM     igs_uc_app_clr_rnd
      WHERE    app_clear_round_id = x_app_clear_round_id ;
Line: 230

      SELECT   rowid
      FROM     igs_uc_app_clr_rnd
      WHERE   ((institution = x_institute) AND
               (ucas_campus = x_ucas_campus) AND
               (ucas_program_code = x_ucas_program_code) AND
               (system_code = x_system_code));
Line: 270

      SELECT   rowid
      FROM     igs_uc_app_clr_rnd
      WHERE   ((clearing_app_id = x_clearing_app_id));
Line: 312

    x_last_update_date                  IN     DATE    ,
    x_last_updated_by                   IN     NUMBER  ,
    x_last_update_login                 IN     NUMBER  ,
    x_oss_attendance_type               IN     VARCHAR2,
    x_oss_attendance_mode               IN     VARCHAR2,
    x_system_code                       IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 21-FEB-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
  ||  smaddali  10-jun-03    obsoleting datetimestamp column for ucfd203 - multiple cycles build, bug#2669208  |
  ||  (reverse chronological order - newest change first)
  */
  BEGIN

    set_column_values (
      p_action,
      x_rowid,
      x_app_clear_round_id,
      x_clearing_app_id,
      x_app_no,
      x_enquiry_no,
      x_round_no,
      x_institution,
      x_ucas_program_code,
      x_ucas_campus,
      x_oss_program_code,
      x_oss_program_version,
      x_oss_location,
      x_faculty,
      x_accommodation_reqd,
      x_round_type,
      x_result,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login,
      x_oss_attendance_type,
      x_oss_attendance_mode,
      x_system_code
    );
Line: 360

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

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

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_app_clear_round_id                IN OUT NOCOPY NUMBER,
    x_clearing_app_id                   IN     NUMBER,
    x_app_no                            IN     NUMBER,
    x_enquiry_no                        IN     NUMBER,
    x_round_no                          IN     NUMBER,
    x_institution                       IN     VARCHAR2,
    x_ucas_program_code                 IN     VARCHAR2,
    x_ucas_campus                       IN     VARCHAR2,
    x_oss_program_code                  IN     VARCHAR2,
    x_oss_program_version               IN     NUMBER,
    x_oss_location                      IN     VARCHAR2,
    x_faculty                           IN     VARCHAR2,
    x_accommodation_reqd                IN     VARCHAR2,
    x_round_type                        IN     VARCHAR2,
    x_result                            IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 ,
    x_oss_attendance_type               IN     VARCHAR2,
    x_oss_attendance_mode               IN     VARCHAR2,
    x_system_code                       IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 21-FEB-2002
  ||  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 cycles build, bug#2669208  |
  ||  (reverse chronological order - newest change first)
  */
    CURSOR c IS
      SELECT   rowid
      FROM     igs_uc_app_clr_rnd
      WHERE    app_clear_round_id                = x_app_clear_round_id;
Line: 426

    x_last_update_date           DATE;
Line: 427

    x_last_updated_by            NUMBER;
Line: 428

    x_last_update_login          NUMBER;
Line: 432

    x_last_update_date := SYSDATE;
Line: 434

      x_last_updated_by := 1;
Line: 435

      x_last_update_login := 0;
Line: 437

      x_last_updated_by := fnd_global.user_id;
Line: 438

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

      x_last_update_login := fnd_global.login_id;
Line: 442

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

    SELECT    igs_uc_app_clr_rnd_s.NEXTVAL
    INTO      x_app_clear_round_id
    FROM      dual;
Line: 456

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_app_clear_round_id                => x_app_clear_round_id,
      x_clearing_app_id                   => x_clearing_app_id,
      x_app_no                            => x_app_no,
      x_enquiry_no                        => x_enquiry_no,
      x_round_no                          => x_round_no,
      x_institution                       => x_institution,
      x_ucas_program_code                 => x_ucas_program_code,
      x_ucas_campus                       => x_ucas_campus,
      x_oss_program_code                  => x_oss_program_code,
      x_oss_program_version               => x_oss_program_version,
      x_oss_location                      => x_oss_location,
      x_faculty                           => x_faculty,
      x_accommodation_reqd                => x_accommodation_reqd,
      x_round_type                        => x_round_type,
      x_result                            => x_result,
      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,
      x_oss_attendance_type               => x_oss_attendance_type,
      x_oss_attendance_mode               => x_oss_attendance_mode,
      x_system_code                       =>x_system_code
    );
Line: 483

    INSERT INTO igs_uc_app_clr_rnd (
      app_clear_round_id,
      clearing_app_id,
      app_no,
      enquiry_no,
      round_no,
      institution,
      ucas_program_code,
      ucas_campus,
      oss_program_code,
      oss_program_version,
      oss_location,
      faculty,
      accommodation_reqd,
      round_type,
      result,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login,
      oss_attendance_type,
      oss_attendance_mode,
      system_code
    ) VALUES (
      new_references.app_clear_round_id,
      new_references.clearing_app_id,
      new_references.app_no,
      new_references.enquiry_no,
      new_references.round_no,
      new_references.institution,
      new_references.ucas_program_code,
      new_references.ucas_campus,
      new_references.oss_program_code,
      new_references.oss_program_version,
      new_references.oss_location,
      new_references.faculty,
      new_references.accommodation_reqd,
      new_references.round_type,
      new_references.result,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login,
      new_references.oss_attendance_type,
      new_references.oss_attendance_mode,
      new_references.system_code
    );
Line: 541

  END insert_row;
Line: 576

      SELECT
        clearing_app_id,
        app_no,
        enquiry_no,
        round_no,
        institution,
        ucas_program_code,
        ucas_campus,
        oss_program_code,
        oss_program_version,
        oss_location,
        faculty,
        accommodation_reqd,
        round_type,
        result,
	oss_attendance_type,
	oss_attendance_mode,
	system_code
      FROM  igs_uc_app_clr_rnd
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 605

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_app_clear_round_id                IN     NUMBER,
    x_clearing_app_id                   IN     NUMBER,
    x_app_no                            IN     NUMBER,
    x_enquiry_no                        IN     NUMBER,
    x_round_no                          IN     NUMBER,
    x_institution                       IN     VARCHAR2,
    x_ucas_program_code                 IN     VARCHAR2,
    x_ucas_campus                       IN     VARCHAR2,
    x_oss_program_code                  IN     VARCHAR2,
    x_oss_program_version               IN     NUMBER,
    x_oss_location                      IN     VARCHAR2,
    x_faculty                           IN     VARCHAR2,
    x_accommodation_reqd                IN     VARCHAR2,
    x_round_type                        IN     VARCHAR2,
    x_result                            IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 ,
    x_oss_attendance_type               IN     VARCHAR2,
    x_oss_attendance_mode               IN     VARCHAR2,
    x_system_code                       IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 21-FEB-2002
  ||  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 cycles build, bug#2669208  |
  ||  (reverse chronological order - newest change first)
  */
    x_last_update_date           DATE ;
Line: 677

    x_last_updated_by            NUMBER;
Line: 678

    x_last_update_login          NUMBER;
Line: 682

    x_last_update_date := SYSDATE;
Line: 684

      x_last_updated_by := 1;
Line: 685

      x_last_update_login := 0;
Line: 687

      x_last_updated_by := fnd_global.user_id;
Line: 688

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

      x_last_update_login := fnd_global.login_id;
Line: 692

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_app_clear_round_id                => x_app_clear_round_id,
      x_clearing_app_id                   => x_clearing_app_id,
      x_app_no                            => x_app_no,
      x_enquiry_no                        => x_enquiry_no,
      x_round_no                          => x_round_no,
      x_institution                       => x_institution,
      x_ucas_program_code                 => x_ucas_program_code,
      x_ucas_campus                       => x_ucas_campus,
      x_oss_program_code                  => x_oss_program_code,
      x_oss_program_version               => x_oss_program_version,
      x_oss_location                      => x_oss_location,
      x_faculty                           => x_faculty,
      x_accommodation_reqd                => x_accommodation_reqd,
      x_round_type                        => x_round_type,
      x_result                            => x_result,
      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,
      x_oss_attendance_type               => x_oss_attendance_type,
      x_oss_attendance_mode               => x_oss_attendance_mode,
      x_system_code                       => x_system_code
    );
Line: 729

    UPDATE igs_uc_app_clr_rnd
      SET
        clearing_app_id                   = new_references.clearing_app_id,
        app_no                            = new_references.app_no,
        enquiry_no                        = new_references.enquiry_no,
        round_no                          = new_references.round_no,
        institution                       = new_references.institution,
        ucas_program_code                 = new_references.ucas_program_code,
        ucas_campus                       = new_references.ucas_campus,
        oss_program_code                  = new_references.oss_program_code,
        oss_program_version               = new_references.oss_program_version,
        oss_location                      = new_references.oss_location,
        faculty                           = new_references.faculty,
        accommodation_reqd                = new_references.accommodation_reqd,
        round_type                        = new_references.round_type,
        result                            = new_references.result,
        last_update_date                  = x_last_update_date,
        last_updated_by                   = x_last_updated_by,
        last_update_login                 = x_last_update_login,
	oss_attendance_type               = new_references.oss_attendance_type,
	oss_attendance_mode               = new_references.oss_attendance_mode,
	system_code			  = new_references.system_code
      WHERE rowid = x_rowid;
Line: 757

  END update_row;
Line: 785

  ||  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 cycles build, bug#2669208  |
  ||  (reverse chronological order - newest change first)
  */
    CURSOR c1 IS
      SELECT   rowid
      FROM     igs_uc_app_clr_rnd
      WHERE    app_clear_round_id                = x_app_clear_round_id;
Line: 804

      insert_row (
        x_rowid,
        x_app_clear_round_id,
        x_clearing_app_id,
        x_app_no,
        x_enquiry_no,
        x_round_no,
        x_institution,
        x_ucas_program_code,
        x_ucas_campus,
        x_oss_program_code,
        x_oss_program_version,
        x_oss_location,
        x_faculty,
        x_accommodation_reqd,
        x_round_type,
        x_result,
        x_mode,
	x_oss_attendance_type,
	x_oss_attendance_mode,
	x_system_code
      );
Line: 830

    update_row (
      x_rowid,
      x_app_clear_round_id,
      x_clearing_app_id,
      x_app_no,
      x_enquiry_no,
      x_round_no,
      x_institution,
      x_ucas_program_code,
      x_ucas_campus,
      x_oss_program_code,
      x_oss_program_version,
      x_oss_location,
      x_faculty,
      x_accommodation_reqd,
      x_round_type,
      x_result,
      x_mode,
      x_oss_attendance_type,
      x_oss_attendance_mode,
      x_system_code
    );
Line: 856

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 21-FEB-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: 875

    DELETE FROM igs_uc_app_clr_rnd
    WHERE rowid = x_rowid;
Line: 882

  END delete_row;