DBA Data[Home] [Help]

APPS.IGS_AD_APPL_ARP_PKG SQL Statements

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

Line: 21

    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 : [email protected]
  ||  Created On : 09-NOV-2001
  ||  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_ad_appl_arp
      WHERE    rowid = x_rowid;
Line: 48

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 75

    new_references.last_updated_by                   := x_last_updated_by;
Line: 76

    new_references.last_update_login                 := x_last_update_login;
Line: 167

      SELECT   rowid
      FROM     igs_ad_appl_arp
      WHERE    appl_arp_id = x_appl_arp_id
      FOR UPDATE NOWAIT;
Line: 203

      SELECT   rowid
      FROM     igs_ad_appl_arp
      WHERE   ((appl_revprof_revgr_id = x_appl_revprof_revgr_id));
Line: 238

      SELECT   rowid
      FROM     igs_ad_appl_arp
      WHERE   ((appl_rev_profile_id = x_appl_rev_profile_id));
Line: 278

      SELECT   rowid
      FROM     igs_ad_appl_arp
      WHERE    ((person_id = x_person_id) AND
                (sequence_number = x_sequence_number) AND
                (admission_appl_number = x_admission_appl_number) AND
                (nominated_course_cd = x_nominated_course_cd));
Line: 326

      SELECT 'X'
      FROM igs_ad_ps_appl_inst_all
      WHERE person_id = x_person_id
      AND admission_appl_number = x_admission_appl_number
      AND nominated_course_cd = x_nominated_course_cd
      AND sequence_number =x_sequence_number
      AND IGS_AD_GEN_008.ADMP_GET_SAOS (adm_outcome_status) = 'PENDING';
Line: 368

    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 : [email protected]
  ||  Created On : 09-NOV-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
  ||  (reverse chronological order - newest change first)
  */
  BEGIN

    set_column_values (
      p_action,
      x_rowid,
      x_appl_arp_id,
      x_person_id,
      x_admission_appl_number,
      x_nominated_course_cd,
      x_sequence_number,
      x_appl_rev_profile_id,
      x_appl_revprof_revgr_id,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 408

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

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

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

   ELSIF (p_action = 'VALIDATE_UPDATE') THEN
     check_system_status  (
                         new_references.person_id,
                         new_references.admission_appl_number,
                         new_references.nominated_course_cd,
                         new_references.sequence_number  );
Line: 458

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_appl_arp_id                       IN OUT NOCOPY NUMBER,
    x_person_id                         IN     NUMBER,
    x_admission_appl_number             IN     NUMBER,
    x_nominated_course_cd               IN     VARCHAR2,
    x_sequence_number                   IN     NUMBER,
    x_appl_rev_profile_id               IN     NUMBER,
    x_appl_revprof_revgr_id             IN     NUMBER,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 09-NOV-2001
  ||  Purpose : Handles the INSERT DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  ravishar      5/30/2005        Security related changes
  ||  (reverse chronological order - newest change first)
  */
    CURSOR c IS
      SELECT   rowid
      FROM     igs_ad_appl_arp
      WHERE    appl_arp_id                       = x_appl_arp_id;
Line: 484

    x_last_update_date           DATE;
Line: 485

    x_last_updated_by            NUMBER;
Line: 486

    x_last_update_login          NUMBER;
Line: 490

    x_program_update_date        DATE;
Line: 494

    x_last_update_date := SYSDATE;
Line: 496

      x_last_updated_by := 1;
Line: 497

      x_last_update_login := 0;
Line: 499

      x_last_updated_by := fnd_global.user_id;
Line: 500

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

      x_last_update_login := fnd_global.login_id;
Line: 504

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

        x_program_update_date    := NULL;
Line: 517

        x_program_update_date    := SYSDATE;
Line: 527

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_appl_arp_id                       => x_appl_arp_id,
      x_person_id                         => x_person_id,
      x_admission_appl_number             => x_admission_appl_number,
      x_nominated_course_cd               => x_nominated_course_cd,
      x_sequence_number                   => x_sequence_number,
      x_appl_rev_profile_id               => x_appl_rev_profile_id,
      x_appl_revprof_revgr_id             => x_appl_revprof_revgr_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: 546

 INSERT INTO igs_ad_appl_arp (
      appl_arp_id,
      person_id,
      admission_appl_number,
      nominated_course_cd,
      sequence_number,
      appl_rev_profile_id,
      appl_revprof_revgr_id,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login,
      request_id,
      program_id,
      program_application_id,
      program_update_date
    ) VALUES (
      igs_ad_appl_arp_s.NEXTVAL,
      new_references.person_id,
      new_references.admission_appl_number,
      new_references.nominated_course_cd,
      new_references.sequence_number,
      new_references.appl_rev_profile_id,
      new_references.appl_revprof_revgr_id,
      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
    ) RETURNING appl_arp_id INTO x_appl_arp_id;
Line: 609

 END insert_row;
Line: 632

      SELECT
        person_id,
        admission_appl_number,
        nominated_course_cd,
        sequence_number,
        appl_rev_profile_id,
        appl_revprof_revgr_id
      FROM  igs_ad_appl_arp
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 650

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_appl_arp_id                       IN     NUMBER,
    x_person_id                         IN     NUMBER,
    x_admission_appl_number             IN     NUMBER,
    x_nominated_course_cd               IN     VARCHAR2,
    x_sequence_number                   IN     NUMBER,
    x_appl_rev_profile_id               IN     NUMBER,
    x_appl_revprof_revgr_id             IN     NUMBER,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 09-NOV-2001
  ||  Purpose : Handles the UPDATE DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  ravishar      5/30/2005        Security related changes
  ||  (reverse chronological order - newest change first)
  */
    x_last_update_date           DATE ;
Line: 700

    x_last_updated_by            NUMBER;
Line: 701

    x_last_update_login          NUMBER;
Line: 705

    x_program_update_date        DATE;
Line: 709

    x_last_update_date := SYSDATE;
Line: 711

      x_last_updated_by := 1;
Line: 712

      x_last_update_login := 0;
Line: 714

      x_last_updated_by := fnd_global.user_id;
Line: 715

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

      x_last_update_login := fnd_global.login_id;
Line: 719

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_appl_arp_id                       => x_appl_arp_id,
      x_person_id                         => x_person_id,
      x_admission_appl_number             => x_admission_appl_number,
      x_nominated_course_cd               => x_nominated_course_cd,
      x_sequence_number                   => x_sequence_number,
      x_appl_rev_profile_id               => x_appl_rev_profile_id,
      x_appl_revprof_revgr_id             => x_appl_revprof_revgr_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: 753

        x_program_update_date := old_references.program_update_date;
Line: 755

        x_program_update_date := SYSDATE;
Line: 762

 UPDATE igs_ad_appl_arp
      SET
        person_id                         = new_references.person_id,
        admission_appl_number             = new_references.admission_appl_number,
        nominated_course_cd               = new_references.nominated_course_cd,
        sequence_number                   = new_references.sequence_number,
        appl_rev_profile_id               = new_references.appl_rev_profile_id,
        appl_revprof_revgr_id             = new_references.appl_revprof_revgr_id,
        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: 809

  END update_row;
Line: 826

  ||  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_ad_appl_arp
      WHERE    appl_arp_id                       = x_appl_arp_id;
Line: 844

      insert_row (
        x_rowid,
        x_appl_arp_id,
        x_person_id,
        x_admission_appl_number,
        x_nominated_course_cd,
        x_sequence_number,
        x_appl_rev_profile_id,
        x_appl_revprof_revgr_id,
        x_mode
      );
Line: 859

    update_row (
      x_rowid,
      x_appl_arp_id,
      x_person_id,
      x_admission_appl_number,
      x_nominated_course_cd,
      x_sequence_number,
      x_appl_rev_profile_id,
      x_appl_revprof_revgr_id,
      x_mode
    );
Line: 874

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2,
  x_mode IN VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 09-NOV-2001
  ||  Purpose : Handles the DELETE DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  ravishar      5/30/2005       Security related changes
  ||  (reverse chronological order - newest change first)
  */
  BEGIN

    before_dml (
      p_action => 'DELETE',
      x_rowid => x_rowid
    );
Line: 898

 DELETE FROM igs_ad_appl_arp
    WHERE rowid = x_rowid;
Line: 919

  END delete_row;