DBA Data[Home] [Help]

APPS.IGS_AS_VAH_CONF_PKG SQL Statements

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

Line: 36

    x_last_update_date                  IN     DATE,
    x_last_updated_by                   IN     NUMBER,
    x_last_update_login                 IN     NUMBER ,
    x_unt_lvl_marks_flag                IN     VARCHAR2    DEFAULT NULL
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 18-SEP-2003
  ||  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_vah_conf
      WHERE    rowid = x_rowid;
Line: 64

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 109

    new_references.last_updated_by                   := x_last_updated_by;
Line: 110

    new_references.last_update_login                 := x_last_update_login;
Line: 155

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

      SELECT   ROWID
      FROM     igs_as_vah_conf
      WHERE    configuration_id = x_configuration_id
      FOR UPDATE NOWAIT;
Line: 210

      SELECT   ROWID
      FROM     igs_as_vah_conf
      WHERE    ((course_type = x_course_type) OR (course_type IS NULL AND x_course_type IS NULL))
      AND      ((l_rowid IS NULL) OR (ROWID <> l_rowid));
Line: 240

      SELECT   rowid
      FROM     igs_as_vah_conf
      WHERE   ((course_type = x_course_type));
Line: 290

    x_last_update_date                  IN     DATE,
    x_last_updated_by                   IN     NUMBER,
    x_last_update_login                 IN     NUMBER ,
    x_unt_lvl_marks_flag                IN     VARCHAR2    DEFAULT NULL
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 18-SEP-2003
  ||  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_configuration_id,
      x_course_type,
      x_display_order_flag,
      x_start_note_flag,
      x_program_region_flag,
      x_test_score_flag,
      x_sum_adv_stnd_flag,
      x_admission_note_flag,
      x_term_region_flag,
      x_unit_details_flag,
      x_unit_note_flag,
      x_adv_stnd_unit_flag,
      x_adv_stnd_unit_level_flag,
      x_statistics_flag,
      x_class_rank_flag,
      x_intermission_flag,
      x_special_req_flag,
      x_period_note_flag,
      x_unit_set_flag,
      x_awards_flag,
      x_prog_completion_flag,
      x_degree_note_flag,
      x_end_note_flag,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login ,
      x_unt_lvl_marks_flag
    );
Line: 341

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

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

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

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

    IF (p_action IN ('VALIDATE_INSERT', 'VALIDATE_UPDATE', 'VALIDATE_DELETE')) THEN
      l_rowid := NULL;
Line: 380

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_configuration_id                  IN OUT NOCOPY NUMBER,
    x_course_type                       IN     VARCHAR2,
    x_display_order_flag                IN     VARCHAR2,
    x_start_note_flag                   IN     VARCHAR2,
    x_program_region_flag               IN     VARCHAR2,
    x_test_score_flag                   IN     VARCHAR2,
    x_sum_adv_stnd_flag                 IN     VARCHAR2,
    x_admission_note_flag               IN     VARCHAR2,
    x_term_region_flag                  IN     VARCHAR2,
    x_unit_details_flag                 IN     VARCHAR2,
    x_unit_note_flag                    IN     VARCHAR2,
    x_adv_stnd_unit_flag                IN     VARCHAR2,
    x_adv_stnd_unit_level_flag          IN     VARCHAR2,
    x_statistics_flag                   IN     VARCHAR2,
    x_class_rank_flag                   IN     VARCHAR2,
    x_intermission_flag                 IN     VARCHAR2,
    x_special_req_flag                  IN     VARCHAR2,
    x_period_note_flag                  IN     VARCHAR2,
    x_unit_set_flag                     IN     VARCHAR2,
    x_awards_flag                       IN     VARCHAR2,
    x_prog_completion_flag              IN     VARCHAR2,
    x_degree_note_flag                  IN     VARCHAR2,
    x_end_note_flag                     IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 ,
    x_unt_lvl_marks_flag                IN     VARCHAR2    DEFAULT NULL
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 18-SEP-2003
  ||  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: 419

    x_last_updated_by            NUMBER;
Line: 420

    x_last_update_login          NUMBER;
Line: 424

    x_last_update_date := SYSDATE;
Line: 426

      x_last_updated_by := 1;
Line: 427

      x_last_update_login := 0;
Line: 429

      x_last_updated_by := fnd_global.user_id;
Line: 430

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

      x_last_update_login := fnd_global.login_id;
Line: 434

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

      fnd_message.set_token ('ROUTINE', 'IGS_AS_VAH_CONF_PKG.INSERT_ROW');
Line: 447

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_configuration_id                  => x_configuration_id,
      x_course_type                       => x_course_type,
      x_display_order_flag                => x_display_order_flag,
      x_start_note_flag                   => x_start_note_flag,
      x_program_region_flag               => x_program_region_flag,
      x_test_score_flag                   => x_test_score_flag,
      x_sum_adv_stnd_flag                 => x_sum_adv_stnd_flag,
      x_admission_note_flag               => x_admission_note_flag,
      x_term_region_flag                  => x_term_region_flag,
      x_unit_details_flag                 => x_unit_details_flag,
      x_unit_note_flag                    => x_unit_note_flag,
      x_adv_stnd_unit_flag                => x_adv_stnd_unit_flag,
      x_adv_stnd_unit_level_flag          => x_adv_stnd_unit_level_flag,
      x_statistics_flag                   => x_statistics_flag,
      x_class_rank_flag                   => x_class_rank_flag,
      x_intermission_flag                 => x_intermission_flag,
      x_special_req_flag                  => x_special_req_flag,
      x_period_note_flag                  => x_period_note_flag,
      x_unit_set_flag                     => x_unit_set_flag,
      x_awards_flag                       => x_awards_flag,
      x_prog_completion_flag              => x_prog_completion_flag,
      x_degree_note_flag                  => x_degree_note_flag,
      x_end_note_flag                     => x_end_note_flag,
      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_unt_lvl_marks_flag                => x_unt_lvl_marks_flag
    );
Line: 480

    INSERT INTO igs_as_vah_conf (
      configuration_id,
      course_type,
      display_order_flag,
      start_note_flag,
      program_region_flag,
      test_score_flag,
      sum_adv_stnd_flag,
      admission_note_flag,
      term_region_flag,
      unit_details_flag,
      unit_note_flag,
      adv_stnd_unit_flag,
      adv_stnd_unit_level_flag,
      statistics_flag,
      class_rank_flag,
      intermission_flag,
      special_req_flag,
      period_note_flag,
      unit_set_flag,
      awards_flag,
      prog_completion_flag,
      degree_note_flag,
      end_note_flag,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login,
      unt_lvl_marks_flag
    ) VALUES (
      igs_as_vah_conf_s.NEXTVAL,
      new_references.course_type,
      new_references.display_order_flag,
      new_references.start_note_flag,
      new_references.program_region_flag,
      new_references.test_score_flag,
      new_references.sum_adv_stnd_flag,
      new_references.admission_note_flag,
      new_references.term_region_flag,
      new_references.unit_details_flag,
      new_references.unit_note_flag,
      new_references.adv_stnd_unit_flag,
      new_references.adv_stnd_unit_level_flag,
      new_references.statistics_flag,
      new_references.class_rank_flag,
      new_references.intermission_flag,
      new_references.special_req_flag,
      new_references.period_note_flag,
      new_references.unit_set_flag,
      new_references.awards_flag,
      new_references.prog_completion_flag,
      new_references.degree_note_flag,
      new_references.end_note_flag,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login,
      x_unt_lvl_marks_flag
    ) RETURNING ROWID, configuration_id INTO x_rowid, x_configuration_id;
Line: 544

  END insert_row;
Line: 584

      SELECT
        course_type,
        display_order_flag,
        start_note_flag,
        program_region_flag,
        test_score_flag,
        sum_adv_stnd_flag,
        admission_note_flag,
        term_region_flag,
        unit_details_flag,
        unit_note_flag,
        adv_stnd_unit_flag,
        adv_stnd_unit_level_flag,
        statistics_flag,
        class_rank_flag,
        intermission_flag,
        special_req_flag,
        period_note_flag,
        unit_set_flag,
        awards_flag,
        prog_completion_flag,
        degree_note_flag,
        end_note_flag,
        unt_lvl_marks_flag
      FROM  igs_as_vah_conf
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 619

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_configuration_id                  IN     NUMBER,
    x_course_type                       IN     VARCHAR2,
    x_display_order_flag                IN     VARCHAR2,
    x_start_note_flag                   IN     VARCHAR2,
    x_program_region_flag               IN     VARCHAR2,
    x_test_score_flag                   IN     VARCHAR2,
    x_sum_adv_stnd_flag                 IN     VARCHAR2,
    x_admission_note_flag               IN     VARCHAR2,
    x_term_region_flag                  IN     VARCHAR2,
    x_unit_details_flag                 IN     VARCHAR2,
    x_unit_note_flag                    IN     VARCHAR2,
    x_adv_stnd_unit_flag                IN     VARCHAR2,
    x_adv_stnd_unit_level_flag          IN     VARCHAR2,
    x_statistics_flag                   IN     VARCHAR2,
    x_class_rank_flag                   IN     VARCHAR2,
    x_intermission_flag                 IN     VARCHAR2,
    x_special_req_flag                  IN     VARCHAR2,
    x_period_note_flag                  IN     VARCHAR2,
    x_unit_set_flag                     IN     VARCHAR2,
    x_awards_flag                       IN     VARCHAR2,
    x_prog_completion_flag              IN     VARCHAR2,
    x_degree_note_flag                  IN     VARCHAR2,
    x_end_note_flag                     IN     VARCHAR2,
    x_mode                              IN     VARCHAR2,
    x_unt_lvl_marks_flag                IN     VARCHAR2    DEFAULT NULL
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 18-SEP-2003
  ||  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: 703

    x_last_updated_by            NUMBER;
Line: 704

    x_last_update_login          NUMBER;
Line: 708

    x_last_update_date := SYSDATE;
Line: 710

      x_last_updated_by := 1;
Line: 711

      x_last_update_login := 0;
Line: 713

      x_last_updated_by := fnd_global.user_id;
Line: 714

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

      x_last_update_login := fnd_global.login_id;
Line: 718

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

      fnd_message.set_token ('ROUTINE', 'IGS_AS_VAH_CONF_PKG.UPDATE_ROW');
Line: 729

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_configuration_id                  => x_configuration_id,
      x_course_type                       => x_course_type,
      x_display_order_flag                => x_display_order_flag,
      x_start_note_flag                   => x_start_note_flag,
      x_program_region_flag               => x_program_region_flag,
      x_test_score_flag                   => x_test_score_flag,
      x_sum_adv_stnd_flag                 => x_sum_adv_stnd_flag,
      x_admission_note_flag               => x_admission_note_flag,
      x_term_region_flag                  => x_term_region_flag,
      x_unit_details_flag                 => x_unit_details_flag,
      x_unit_note_flag                    => x_unit_note_flag,
      x_adv_stnd_unit_flag                => x_adv_stnd_unit_flag,
      x_adv_stnd_unit_level_flag          => x_adv_stnd_unit_level_flag,
      x_statistics_flag                   => x_statistics_flag,
      x_class_rank_flag                   => x_class_rank_flag,
      x_intermission_flag                 => x_intermission_flag,
      x_special_req_flag                  => x_special_req_flag,
      x_period_note_flag                  => x_period_note_flag,
      x_unit_set_flag                     => x_unit_set_flag,
      x_awards_flag                       => x_awards_flag,
      x_prog_completion_flag              => x_prog_completion_flag,
      x_degree_note_flag                  => x_degree_note_flag,
      x_end_note_flag                     => x_end_note_flag,
      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_unt_lvl_marks_flag                => x_unt_lvl_marks_flag
    );
Line: 762

    UPDATE igs_as_vah_conf
      SET
        course_type                       = new_references.course_type,
        display_order_flag                = new_references.display_order_flag,
        start_note_flag                   = new_references.start_note_flag,
        program_region_flag               = new_references.program_region_flag,
        test_score_flag                   = new_references.test_score_flag,
        sum_adv_stnd_flag                 = new_references.sum_adv_stnd_flag,
        admission_note_flag               = new_references.admission_note_flag,
        term_region_flag                  = new_references.term_region_flag,
        unit_details_flag                 = new_references.unit_details_flag,
        unit_note_flag                    = new_references.unit_note_flag,
        adv_stnd_unit_flag                = new_references.adv_stnd_unit_flag,
        adv_stnd_unit_level_flag          = new_references.adv_stnd_unit_level_flag,
        statistics_flag                   = new_references.statistics_flag,
        class_rank_flag                   = new_references.class_rank_flag,
        intermission_flag                 = new_references.intermission_flag,
        special_req_flag                  = new_references.special_req_flag,
        period_note_flag                  = new_references.period_note_flag,
        unit_set_flag                     = new_references.unit_set_flag,
        awards_flag                       = new_references.awards_flag,
        prog_completion_flag              = new_references.prog_completion_flag,
        degree_note_flag                  = new_references.degree_note_flag,
        end_note_flag                     = new_references.end_note_flag,
        last_update_date                  = x_last_update_date,
        last_updated_by                   = x_last_updated_by,
        last_update_login                 = x_last_update_login ,
        unt_lvl_marks_flag                = new_references.unt_lvl_marks_flag
      WHERE rowid = x_rowid;
Line: 798

  END update_row;
Line: 832

  ||  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_vah_conf
      WHERE    configuration_id                  = x_configuration_id;
Line: 850

      insert_row (
        x_rowid,
        x_configuration_id,
        x_course_type,
        x_display_order_flag,
        x_start_note_flag,
        x_program_region_flag,
        x_test_score_flag,
        x_sum_adv_stnd_flag,
        x_admission_note_flag,
        x_term_region_flag,
        x_unit_details_flag,
        x_unit_note_flag,
        x_adv_stnd_unit_flag,
        x_adv_stnd_unit_level_flag,
        x_statistics_flag,
        x_class_rank_flag,
        x_intermission_flag,
        x_special_req_flag,
        x_period_note_flag,
        x_unit_set_flag,
        x_awards_flag,
        x_prog_completion_flag,
        x_degree_note_flag,
        x_end_note_flag,
        x_mode ,
        x_unt_lvl_marks_flag
      );
Line: 882

    update_row (
      x_rowid,
      x_configuration_id,
      x_course_type,
      x_display_order_flag,
      x_start_note_flag,
      x_program_region_flag,
      x_test_score_flag,
      x_sum_adv_stnd_flag,
      x_admission_note_flag,
      x_term_region_flag,
      x_unit_details_flag,
      x_unit_note_flag,
      x_adv_stnd_unit_flag,
      x_adv_stnd_unit_level_flag,
      x_statistics_flag,
      x_class_rank_flag,
      x_intermission_flag,
      x_special_req_flag,
      x_period_note_flag,
      x_unit_set_flag,
      x_awards_flag,
      x_prog_completion_flag,
      x_degree_note_flag,
      x_end_note_flag,
      x_mode ,
      x_unt_lvl_marks_flag
    );
Line: 914

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 18-SEP-2003
  ||  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: 933

    DELETE FROM igs_as_vah_conf
    WHERE rowid = x_rowid;
Line: 942

  END delete_row;