DBA Data[Home] [Help]

APPS.IGS_UC_CRSE_KEYWRDS_PKG SQL Statements

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

Line: 17

    x_updater                           IN     VARCHAR2    ,
    x_active                            IN     VARCHAR2    ,
    x_deleted                           IN     VARCHAR2    ,
    x_sent_to_ucas                      IN     VARCHAR2    ,
    x_system_code                       IN     VARCHAR2,
    x_crse_keyword_id                   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 : 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_KEYWRDS
      WHERE    rowid = x_rowid;
Line: 53

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

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

    new_references.updater                           := x_updater;
Line: 71

    new_references.deleted                           := x_deleted;
Line: 77

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

    new_references.last_update_date                  := x_last_update_date;
Line: 86

    new_references.last_updated_by                   := x_last_updated_by;
Line: 87

    new_references.last_update_login                 := x_last_update_login;
Line: 110

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

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

      SELECT   rowid
      FROM     igs_uc_crse_keywrds
      WHERE    ucas_program_code = x_ucas_program_code
      AND      institute = x_institute
      AND         ucas_campus = x_ucas_campus
      AND  ( (  x_option_code IS NOT NULL AND  option_code = x_option_code ) OR
             (   x_option_code IS NULL) )
      AND      system_code = x_system_code
      AND      keyword = x_keyword
      AND     ((l_rowid IS NULL) OR (rowid <> l_rowid));
Line: 230

      SELECT   rowid
      FROM     igs_uc_crse_keywrds
      WHERE    crse_keyword_id = x_crse_keyword_id ;
Line: 266

      SELECT   rowid
      FROM     igs_uc_crse_keywrds
      WHERE   ((keyword = x_keyword));
Line: 304

      SELECT   rowid
      FROM     igs_uc_crse_keywrds
      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: 338

    x_updater                           IN     VARCHAR2    ,
    x_active                            IN     VARCHAR2    ,
    x_deleted                           IN     VARCHAR2    ,
    x_sent_to_ucas                      IN     VARCHAR2    ,
    x_system_code                       IN     VARCHAR2,
    x_crse_keyword_id                   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 : 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_preference,
      x_keyword,
      x_updater,
      x_active,
      x_deleted,
      x_sent_to_ucas,
      x_system_code,
      x_crse_keyword_id ,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 385

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

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

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

  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_preference                        IN     NUMBER,
    x_keyword                           IN     VARCHAR2,
    x_updater                           IN     VARCHAR2,
    x_active                            IN     VARCHAR2,
    x_deleted                           IN     VARCHAR2,
    x_sent_to_ucas                      IN     VARCHAR2,
    x_system_code                       IN     VARCHAR2,
    x_crse_keyword_id                   IN   OUT NOCOPY  NUMBER,
    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_keywrds
      WHERE    crse_keyword_id                = x_crse_keyword_id;
Line: 448

    SELECT    igs_uc_crse_keywrds_s.NEXTVAL
    FROM      dual;
Line: 451

    x_last_update_date           DATE;
Line: 452

    x_last_updated_by            NUMBER;
Line: 453

    x_last_update_login          NUMBER;
Line: 459

    x_last_update_date := SYSDATE;
Line: 461

      x_last_updated_by := 1;
Line: 462

      x_last_update_login := 0;
Line: 464

      x_last_updated_by := fnd_global.user_id;
Line: 465

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

      x_last_update_login := fnd_global.login_id;
Line: 469

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

      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_preference                        => x_preference,
      x_keyword                           => x_keyword,
      x_updater                           => x_updater,
      x_active                            => x_active,
      x_deleted                           => NVL (x_deleted,'N' ),
      x_sent_to_ucas                      => x_sent_to_ucas,
      x_system_code                       =>  x_system_code,
      x_crse_keyword_id                   =>  x_crse_keyword_id,
      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: 507

    INSERT INTO igs_uc_crse_keywrds (
      ucas_program_code,
      institute,
      ucas_campus,
      option_code,
      preference,
      keyword,
      updater,
      active,
      deleted,
      sent_to_ucas,
      system_code ,
      crse_keyword_id,
      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.preference,
      new_references.keyword,
      new_references.updater,
      new_references.active,
      new_references.deleted,
      new_references.sent_to_ucas,
      new_references.system_code  ,
      new_references.crse_keyword_id ,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 553

  END insert_row;
Line: 564

    x_updater                           IN     VARCHAR2,
    x_active                            IN     VARCHAR2,
    x_deleted                           IN     VARCHAR2,
    x_sent_to_ucas                      IN     VARCHAR2,
    x_system_code                       IN     VARCHAR2,
    x_crse_keyword_id                   IN     NUMBER
  ) 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
        preference,
        option_code,
        updater,
        active,
        deleted,
        sent_to_ucas,
        system_code,
        ucas_program_code,
        institute,
        ucas_campus,
        keyword
      FROM  igs_uc_crse_keywrds
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 605

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

        AND (tlinfo.updater = x_updater)
        AND (tlinfo.active = x_active)
        AND (tlinfo.deleted = x_deleted)
        AND (tlinfo.sent_to_ucas = x_sent_to_ucas)
       ) THEN
      NULL;
Line: 638

  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_preference                        IN     NUMBER,
    x_keyword                           IN     VARCHAR2,
    x_updater                           IN     VARCHAR2,
    x_active                            IN     VARCHAR2,
    x_deleted                           IN     VARCHAR2,
    x_sent_to_ucas                      IN     VARCHAR2,
    x_system_code                       IN     VARCHAR2,
    x_crse_keyword_id                   IN     NUMBER,
    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: 665

    x_last_updated_by            NUMBER;
Line: 666

    x_last_update_login          NUMBER;
Line: 670

    x_last_update_date := SYSDATE;
Line: 672

      x_last_updated_by := 1;
Line: 673

      x_last_update_login := 0;
Line: 675

      x_last_updated_by := fnd_global.user_id;
Line: 676

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

      x_last_update_login := fnd_global.login_id;
Line: 680

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

      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_preference                        => x_preference,
      x_keyword                           => x_keyword,
      x_updater                           => x_updater,
      x_active                            => x_active,
      x_deleted                           => NVL (x_deleted,'N' ),
      x_sent_to_ucas                      => x_sent_to_ucas,
      x_system_code                       => x_system_code ,
      x_crse_keyword_id                   => x_crse_keyword_id,
      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: 711

    UPDATE igs_uc_crse_keywrds
      SET
        preference                        = new_references.preference,
        updater                           = new_references.updater,
        active                            = new_references.active,
        deleted                           = new_references.deleted,
        sent_to_ucas                      = new_references.sent_to_ucas,
        system_code                       = new_references.system_code,
        ucas_program_code                 = new_references.ucas_program_code,
        institute                         = new_references.institute,
        option_code                       = new_references.option_code,
        ucas_campus                       = new_references.ucas_campus ,
        keyword                           = new_references.keyword ,
        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: 733

  END update_row;
Line: 744

    x_updater                           IN     VARCHAR2,
    x_active                            IN     VARCHAR2,
    x_deleted                           IN     VARCHAR2,
    x_sent_to_ucas                      IN     VARCHAR2,
    x_system_code                       IN     VARCHAR2,
    x_crse_keyword_id                   IN OUT NOCOPY    NUMBER,
    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_keywrds
      WHERE    crse_keyword_id                  = x_crse_keyword_id;
Line: 774

      insert_row (
        x_rowid,
        x_ucas_program_code,
        x_institute,
        x_ucas_campus,
        x_option_code,
        x_preference,
        x_keyword,
        x_updater,
        x_active,
        x_deleted,
        x_sent_to_ucas,
        x_system_code  ,
        x_crse_keyword_id    ,
        x_mode
      );
Line: 794

    update_row (
      x_rowid,
      x_ucas_program_code,
      x_institute,
      x_ucas_campus,
      x_option_code,
      x_preference,
      x_keyword,
      x_updater,
      x_active,
      x_deleted,
      x_sent_to_ucas,
      x_system_code  ,
      x_crse_keyword_id,
      x_mode
    );
Line: 814

  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: 833

    DELETE FROM igs_uc_crse_keywrds
    WHERE rowid = x_rowid;
Line: 840

  END delete_row;