DBA Data[Home] [Help]

APPS.IGS_AD_ADMDE_INT_PKG SQL Statements

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

Line: 29

    x_last_update_date                  IN     DATE        DEFAULT NULL,
    x_last_updated_by                   IN     NUMBER      DEFAULT NULL,
    x_last_update_login                 IN     NUMBER      DEFAULT NULL,
    x_reconsider_flag                   IN     VARCHAR2    DEFAULT 'N',
    x_prpsd_commencement_date           IN     DATE DEFAULT NULL,
    x_error_text                        IN     VARCHAR2 DEFAULT NULL
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 16-AUG-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_ADMDE_INT_ALL
      WHERE    rowid = x_rowid;
Line: 59

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 98

    new_references.last_updated_by                   := x_last_updated_by;
Line: 99

    new_references.last_update_login                 := x_last_update_login;
Line: 108

       SELECT   rowid
       FROM     IGS_AD_ADMDE_INT_ALL
       WHERE    interface_mkdes_id = x_interface_mkdes_id
       FOR UPDATE NOWAIT;
Line: 149

    x_last_update_date                  IN     DATE        DEFAULT NULL,
    x_last_updated_by                   IN     NUMBER      DEFAULT NULL,
    x_last_update_login                 IN     NUMBER      DEFAULT NULL,
    x_reconsider_flag                   IN     VARCHAR2    DEFAULT 'N',
    x_prpsd_commencement_date           IN     DATE DEFAULT NULL,
    x_error_text                        IN     VARCHAR2 DEFAULT NULL
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 16-AUG-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_interface_mkdes_id,
      x_interface_run_id,
      x_batch_id,
      x_person_id,
      x_admission_appl_number,
      x_nominated_course_cd,
      x_sequence_number,
      x_adm_outcome_status,
      x_decision_make_id,
      x_decision_date,
      x_decision_reason_id,
      x_pending_reason_id,
      x_offer_dt,
      x_offer_response_dt,
      x_status,
      x_error_code,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login,
      x_reconsider_flag,
      x_prpsd_commencement_date,
      x_error_text
    );
Line: 197

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

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_interface_mkdes_id                IN OUT NOCOPY NUMBER,
    x_interface_run_id                  IN     NUMBER,
    x_batch_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_adm_outcome_status                IN     VARCHAR2,
    x_decision_make_id                  IN     NUMBER,
    x_decision_date                     IN     DATE,
    x_decision_reason_id                IN     NUMBER,
    x_pending_reason_id                 IN     NUMBER,
    x_offer_dt                          IN     DATE,
    x_offer_response_dt                 IN     DATE,
    x_status                            IN     VARCHAR2,
    x_error_code                        IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 DEFAULT 'R',
    x_reconsider_flag                   IN     VARCHAR2,
    x_prpsd_commencement_date             IN     DATE DEFAULT NULL,
    x_error_text                        IN     VARCHAR2 DEFAULT NULL
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 16-AUG-2001
  ||  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)
  */
    CURSOR c IS
      SELECT   rowid
      FROM     igs_ad_admde_int_all
      WHERE    interface_mkdes_id = x_interface_mkdes_id;
Line: 259

    x_last_update_date           DATE;
Line: 260

    x_last_updated_by            NUMBER;
Line: 261

    x_last_update_login          NUMBER;
Line: 265

    x_program_update_date        DATE;
Line: 269

    x_last_update_date := SYSDATE;
Line: 271

      x_last_updated_by := 1;
Line: 272

      x_last_update_login := 0;
Line: 274

      x_last_updated_by := fnd_global.user_id;
Line: 275

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

      x_last_update_login := fnd_global.login_id;
Line: 279

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

        x_program_update_date    := NULL;
Line: 292

        x_program_update_date    := SYSDATE;
Line: 304

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_interface_mkdes_id                => x_interface_mkdes_id,
      x_interface_run_id                  => x_interface_run_id,
      x_batch_id                          => x_batch_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_adm_outcome_status                => x_adm_outcome_status,
      x_decision_make_id                  => x_decision_make_id,
      x_decision_date                     => x_decision_date,
      x_decision_reason_id                => x_decision_reason_id,
      x_pending_reason_id                 => x_pending_reason_id,
      x_offer_dt                          => x_offer_dt,
      x_offer_response_dt                 => x_offer_response_dt,
      x_status                            => x_status,
      x_error_code                        => x_error_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,
      x_reconsider_flag                   => x_reconsider_flag,
      x_prpsd_commencement_date             => x_prpsd_commencement_date,
      x_error_text                        => x_error_text
    );
Line: 332

    INSERT INTO igs_ad_admde_int_all (
      interface_mkdes_id,
      interface_run_id,
      batch_id,
      person_id,
      admission_appl_number,
      nominated_course_cd,
      sequence_number,
      adm_outcome_status,
      decision_make_id,
      decision_date,
      decision_reason_id,
      pending_reason_id,
      offer_dt,
      offer_response_dt,
      status,
      error_code,
      org_id,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login,
      request_id,
      program_id,
      program_application_id,
      program_update_date,
      reconsider_flag,
      prpsd_commencement_date,
      error_text
    ) VALUES (
      igs_ad_admde_int_s.NEXTVAL,
      new_references.interface_run_id,
      new_references.batch_id,
      new_references.person_id,
      new_references.admission_appl_number,
      new_references.nominated_course_cd,
      new_references.sequence_number,
      new_references.adm_outcome_status,
      new_references.decision_make_id,
      new_references.decision_date,
      new_references.decision_reason_id,
      new_references.pending_reason_id,
      new_references.offer_dt,
      new_references.offer_response_dt,
      new_references.status,
      new_references.error_code,
      new_references.org_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,
      new_references.reconsider_flag,
      new_references.prpsd_commencement_date,
      new_references.error_text
    )RETURNING interface_mkdes_id INTO x_interface_mkdes_id;
Line: 402

  END insert_row;
Line: 437

      SELECT
        interface_mkdes_id,
        interface_run_id,
        batch_id,
        person_id,
        admission_appl_number,
        nominated_course_cd,
        sequence_number,
        adm_outcome_status,
        decision_make_id,
        decision_date,
        decision_reason_id,
        pending_reason_id,
        offer_dt,
        offer_response_dt,
        status,
        error_code,
	reconsider_flag,
	prpsd_commencement_date,
	error_text
      FROM  igs_ad_admde_int_all
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 468

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_interface_mkdes_id                IN     NUMBER,
    x_interface_run_id                  IN     NUMBER,
    x_batch_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_adm_outcome_status                IN     VARCHAR2,
    x_decision_make_id                  IN     NUMBER,
    x_decision_date                     IN     DATE,
    x_decision_reason_id                IN     NUMBER,
    x_pending_reason_id                 IN     NUMBER,
    x_offer_dt                          IN     DATE,
    x_offer_response_dt                 IN     DATE,
    x_status                            IN     VARCHAR2,
    x_error_code                        IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 DEFAULT 'R',
    x_reconsider_flag                   IN     VARCHAR2,
    x_prpsd_commencement_date           IN     DATE DEFAULT NULL,
    x_error_text                        IN     VARCHAR2 DEFAULT NULL
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 16-AUG-2001
  ||  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: 542

    x_last_updated_by            NUMBER;
Line: 543

    x_last_update_login          NUMBER;
Line: 547

    x_program_update_date        DATE;
Line: 551

    x_last_update_date := SYSDATE;
Line: 553

      x_last_updated_by := 1;
Line: 554

      x_last_update_login := 0;
Line: 556

      x_last_updated_by := fnd_global.user_id;
Line: 557

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

      x_last_update_login := fnd_global.login_id;
Line: 561

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_interface_mkdes_id                => x_interface_mkdes_id,
      x_interface_run_id                  => x_interface_run_id,
      x_batch_id                          => x_batch_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_adm_outcome_status                => x_adm_outcome_status,
      x_decision_make_id                  => x_decision_make_id,
      x_decision_date                     => x_decision_date,
      x_decision_reason_id                => x_decision_reason_id,
      x_pending_reason_id                 => x_pending_reason_id,
      x_offer_dt                          => x_offer_dt,
      x_offer_response_dt                 => x_offer_response_dt,
      x_status                            => x_status,
      x_error_code                        => x_error_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,
      x_reconsider_flag                   => x_reconsider_flag,
      x_prpsd_commencement_date           => x_prpsd_commencement_date,
      x_error_text                        => x_error_text
    );
Line: 607

        x_program_update_date := old_references.program_update_date;
Line: 609

        x_program_update_date := SYSDATE;
Line: 613

    UPDATE igs_ad_admde_int_all
      SET
        interface_mkdes_id                = new_references.interface_mkdes_id,
        interface_run_id                  = new_references.interface_run_id,
        batch_id                          = new_references.batch_id,
        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,
        adm_outcome_status                = new_references.adm_outcome_status,
        decision_make_id                  = new_references.decision_make_id,
        decision_date                     = new_references.decision_date,
        decision_reason_id                = new_references.decision_reason_id,
        pending_reason_id                 = new_references.pending_reason_id,
        offer_dt                          = new_references.offer_dt,
        offer_response_dt                 = new_references.offer_response_dt,
        status                            = new_references.status,
        error_code                        = new_references.error_code,
        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,
	reconsider_flag                   = x_reconsider_flag,
	prpsd_commencement_date           = x_prpsd_commencement_date,
	error_text                        = x_error_text
      WHERE rowid = x_rowid;
Line: 647

  END update_row;
Line: 676

  ||  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_admde_int_all
      WHERE    interface_mkdes_id= x_interface_mkdes_id;
Line: 694

      insert_row (
        x_rowid,
        x_interface_mkdes_id,
        x_interface_run_id,
        x_batch_id,
        x_person_id,
        x_admission_appl_number,
        x_nominated_course_cd,
        x_sequence_number,
        x_adm_outcome_status,
        x_decision_make_id,
        x_decision_date,
        x_decision_reason_id,
        x_pending_reason_id,
        x_offer_dt,
        x_offer_response_dt,
        x_status,
        x_error_code,
        x_mode,
	x_reconsider_flag,
	x_prpsd_commencement_date,
	x_error_text
      );
Line: 721

    update_row (
      x_rowid,
      x_interface_mkdes_id,
      x_interface_run_id,
      x_batch_id,
      x_person_id,
      x_admission_appl_number,
      x_nominated_course_cd,
      x_sequence_number,
      x_adm_outcome_status,
      x_decision_make_id,
      x_decision_date,
      x_decision_reason_id,
      x_pending_reason_id,
      x_offer_dt,
      x_offer_response_dt,
      x_status,
      x_error_code,
      x_mode,
      x_reconsider_flag,
      x_prpsd_commencement_date,
      x_error_text
    );
Line: 748

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

    DELETE FROM igs_ad_admde_int_all
    WHERE rowid = x_rowid;
Line: 774

  END delete_row;