DBA Data[Home] [Help]

APPS.IGF_SL_DL_SETUP_PKG SQL Statements

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

Line: 28

    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_response_option_code              IN     VARCHAR2    DEFAULT NULL,
    x_funding_method                    IN     VARCHAR2    DEFAULT NULL
  ) AS
  /*
  ||  Created By : venagara
  ||  Created On : 31-JAN-2001
  ||  Purpose : Initialises the Old and New references for the columns of the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  ugummall        15-OCT-2003     Bug # 3102439. FA 126 Multiple FA Offices
  ||                                  school_id is being obsoleted.
  ||  (reverse chronological order - newest change first)
  */

    CURSOR cur_old_ref_values IS
      SELECT   *
      FROM     IGF_SL_DL_SETUP_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: 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: 148

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

      SELECT   rowid
      FROM     igf_sl_dl_setup_all
      WHERE    dlset_id = x_dlset_id
      FOR UPDATE NOWAIT;
Line: 205

      SELECT   rowid
      FROM     igf_sl_dl_setup_all
      WHERE    ci_cal_type = x_ci_cal_type
      AND      ci_sequence_number = x_ci_sequence_number
      AND      ((l_rowid IS NULL) OR (rowid <> l_rowid));
Line: 242

      SELECT   rowid
      FROM     igf_sl_dl_setup_all
      WHERE   ((ci_cal_type = x_cal_type) AND
               (ci_sequence_number = x_sequence_number));
Line: 285

    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_response_option_code              IN     VARCHAR2    DEFAULT NULL,
    x_funding_method                    IN     VARCHAR2    DEFAULT NULL

  ) AS
  /*
  ||  Created By : venagara
  ||  Created On : 31-JAN-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
  ||  ugummall        15-OCT-2003     Bug # 3102439. FA 126 Multiple FA Offices
  ||                                  school_id is being obsoleted.
  ||  (reverse chronological order - newest change first)
  */
  BEGIN

    set_column_values (
      p_action,
      x_rowid,
      x_dlset_id,
      x_ci_cal_type,
      x_ci_sequence_number,
      NULL,     /* school_id is being obsoleted w.r.t FA 126 Bug # 3102439 */
      x_orig_fee_perct_stafford,
      x_orig_fee_perct_plus,
      x_int_rebate,
      x_pnote_print_ind,
      x_pnote_print_copies,
      x_acc_note_for_disb,
      NULL,
      x_interview_reqd,
      x_disclosure_print_ind,
      x_special_school,
      x_dl_version,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login,
      x_response_option_code,
      x_funding_method

    );
Line: 334

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

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

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

    ELSIF (p_action = 'VALIDATE_UPDATE') THEN
      check_uniqueness;
Line: 368

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_dlset_id                          IN OUT NOCOPY NUMBER,
    x_ci_cal_type                       IN     VARCHAR2,
    x_ci_sequence_number                IN     NUMBER,
    x_school_id                         IN     VARCHAR2 DEFAULT NULL,
    x_orig_fee_perct_stafford           IN     NUMBER,
    x_orig_fee_perct_plus               IN     NUMBER,
    x_int_rebate                        IN     NUMBER,
    x_pnote_print_ind                   IN     VARCHAR2,
    x_pnote_print_copies                IN     NUMBER,
    x_acc_note_for_disb                 IN     VARCHAR2,
    x_affirmation_reqd                  IN     VARCHAR2 DEFAULT NULL,
    x_interview_reqd                    IN     VARCHAR2,
    x_disclosure_print_ind              IN     VARCHAR2,
    x_special_school                    IN     VARCHAR2,
    x_dl_version                        IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 DEFAULT 'R',
    x_response_option_code              IN     VARCHAR2,
    x_funding_method                    IN     VARCHAR2

  ) AS
  /*
  ||  Created By : venagara
  ||  Created On : 31-JAN-2001
  ||  Purpose : Handles the INSERT DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  ugummall        15-OCT-2003     Bug # 3102439. FA 126 Multiple FA Offices
  ||                                  school_id is being obsoleted.
  ||  (reverse chronological order - newest change first)
  */
    CURSOR c IS
      SELECT   rowid
      FROM     igf_sl_dl_setup_all
      WHERE    dlset_id                          = x_dlset_id;
Line: 406

    x_last_update_date           DATE;
Line: 407

    x_last_updated_by            NUMBER;
Line: 408

    x_last_update_login          NUMBER;
Line: 413

    x_last_update_date := SYSDATE;
Line: 415

      x_last_updated_by := 1;
Line: 416

      x_last_update_login := 0;
Line: 418

      x_last_updated_by := fnd_global.user_id;
Line: 419

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

      x_last_update_login := fnd_global.login_id;
Line: 423

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

    SELECT igf_sl_dl_setup_s.nextval INTO x_dlset_id FROM DUAL;
Line: 434

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_dlset_id                          => x_dlset_id,
      x_ci_cal_type                       => x_ci_cal_type,
      x_ci_sequence_number                => x_ci_sequence_number,
      x_school_id                         => NULL,
      x_orig_fee_perct_stafford           => x_orig_fee_perct_stafford,
      x_orig_fee_perct_plus               => x_orig_fee_perct_plus,
      x_int_rebate                        => x_int_rebate,
      x_pnote_print_ind                   => x_pnote_print_ind,
      x_pnote_print_copies                => x_pnote_print_copies,
      x_acc_note_for_disb                 => x_acc_note_for_disb,
      x_affirmation_reqd                  => NULL,
      x_interview_reqd                    => x_interview_reqd,
      x_disclosure_print_ind              => x_disclosure_print_ind,
      x_special_school                    => x_special_school,
      x_dl_version                        => x_dl_version,
      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_response_option_code              => x_response_option_code,
      x_funding_method                    => x_funding_method

    );
Line: 461

    INSERT INTO igf_sl_dl_setup_all(
      dlset_id,
      ci_cal_type,
      ci_sequence_number,
      school_id,
      orig_fee_perct_stafford,
      orig_fee_perct_plus,
      int_rebate,
      pnote_print_ind,
      pnote_print_copies,
      acc_note_for_disb,
      affirmation_reqd,
      interview_reqd,
      disclosure_print_ind,
      special_school,
      dl_version,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login,
      org_id,
      response_option_code,
      funding_method

    ) VALUES (
      new_references.dlset_id,
      new_references.ci_cal_type,
      new_references.ci_sequence_number,
      NULL,   /*  school_id is being obsoleted. Bug # 3102439. FA 126 Multiple FA Offices */
      new_references.orig_fee_perct_stafford,
      new_references.orig_fee_perct_plus,
      new_references.int_rebate,
      new_references.pnote_print_ind,
      new_references.pnote_print_copies,
      new_references.acc_note_for_disb,
      NULL,
      new_references.interview_reqd,
      new_references.disclosure_print_ind,
      new_references.special_school,
      new_references.dl_version,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login,
      l_org_id ,
      new_references.response_option_code,
      new_references.funding_method

    );
Line: 521

  END insert_row;
Line: 560

      SELECT
        ci_cal_type,
        ci_sequence_number,
        orig_fee_perct_stafford,
        orig_fee_perct_plus,
        int_rebate,
        pnote_print_ind,
        pnote_print_copies,
        acc_note_for_disb,
        interview_reqd,
        disclosure_print_ind,
        special_school,
        dl_version,
        org_id,
        response_option_code,
        funding_method

      FROM  igf_sl_dl_setup_all
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 588

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_dlset_id                          IN     NUMBER,
    x_ci_cal_type                       IN     VARCHAR2,
    x_ci_sequence_number                IN     NUMBER,
    x_school_id                         IN     VARCHAR2 DEFAULT NULL,
    x_orig_fee_perct_stafford           IN     NUMBER,
    x_orig_fee_perct_plus               IN     NUMBER,
    x_int_rebate                        IN     NUMBER,
    x_pnote_print_ind                   IN     VARCHAR2,
    x_pnote_print_copies                IN     NUMBER,
    x_acc_note_for_disb                 IN     VARCHAR2,
    x_affirmation_reqd                  IN     VARCHAR2 DEFAULT NULL,
    x_interview_reqd                    IN     VARCHAR2,
    x_disclosure_print_ind              IN     VARCHAR2,
    x_special_school                    IN     VARCHAR2,
    x_dl_version                        IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 DEFAULT 'R',
    x_response_option_code              IN     VARCHAR2,
    x_funding_method                    IN     VARCHAR2

  ) AS
  /*
  ||  Created By : venagara
  ||  Created On : 31-JAN-2001
  ||  Purpose : Handles the UPDATE DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  ugummall        15-OCT-2003     Bug # 3102439. FA 126 Multiple FA Offices
  ||                                  school_id is being obsoleted.
  ||  (reverse chronological order - newest change first)
  */
    x_last_update_date           DATE ;
Line: 659

    x_last_updated_by            NUMBER;
Line: 660

    x_last_update_login          NUMBER;
Line: 664

    x_last_update_date := SYSDATE;
Line: 666

      x_last_updated_by := 1;
Line: 667

      x_last_update_login := 0;
Line: 669

      x_last_updated_by := fnd_global.user_id;
Line: 670

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

      x_last_update_login := fnd_global.login_id;
Line: 674

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_dlset_id                          => x_dlset_id,
      x_ci_cal_type                       => x_ci_cal_type,
      x_ci_sequence_number                => x_ci_sequence_number,
      x_school_id                         => NULL,
      x_orig_fee_perct_stafford           => x_orig_fee_perct_stafford,
      x_orig_fee_perct_plus               => x_orig_fee_perct_plus,
      x_int_rebate                        => x_int_rebate,
      x_pnote_print_ind                   => x_pnote_print_ind,
      x_pnote_print_copies                => x_pnote_print_copies,
      x_acc_note_for_disb                 => x_acc_note_for_disb,
      x_affirmation_reqd                  => NULL,
      x_interview_reqd                    => x_interview_reqd,
      x_disclosure_print_ind              => x_disclosure_print_ind,
      x_special_school                    => x_special_school,
      x_dl_version                        => x_dl_version,
      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_response_option_code              => x_response_option_code,
      x_funding_method                    => x_funding_method

    );
Line: 711

    UPDATE igf_sl_dl_setup_all
      SET
        ci_cal_type                       = new_references.ci_cal_type,
        ci_sequence_number                = new_references.ci_sequence_number,
        school_id                         = NULL,
        orig_fee_perct_stafford           = new_references.orig_fee_perct_stafford,
        orig_fee_perct_plus               = new_references.orig_fee_perct_plus,
        int_rebate                        = new_references.int_rebate,
        pnote_print_ind                   = new_references.pnote_print_ind,
        pnote_print_copies                = new_references.pnote_print_copies,
        acc_note_for_disb                 = new_references.acc_note_for_disb,
        affirmation_reqd                  = NULL,
        interview_reqd                    = new_references.interview_reqd,
        disclosure_print_ind              = new_references.disclosure_print_ind,
        special_school                    = new_references.special_school,
        dl_version                        = new_references.dl_version,
        last_update_date                  = x_last_update_date,
        last_updated_by                   = x_last_updated_by,
        last_update_login                 = x_last_update_login,
        response_option_code              = new_references.response_option_code,
        funding_method                    = new_references.funding_method


      WHERE rowid = x_rowid;
Line: 740

  END update_row;
Line: 768

  ||  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
  ||  ugummall        15-OCT-2003     Bug # 3102439. FA 126 Multiple FA Offices
  ||                                  school_id is being obsoleted.
  ||  (reverse chronological order - newest change first)
  */
    CURSOR c1 IS
      SELECT   rowid
      FROM     igf_sl_dl_setup_all
      WHERE    dlset_id                          = x_dlset_id;
Line: 788

      insert_row (
        x_rowid,
        x_dlset_id,
        x_ci_cal_type,
        x_ci_sequence_number,
        NULL, /* school_id is being obsoleted. Bug # 3102439. FA 126 Multiple FA Offices */
        x_orig_fee_perct_stafford,
        x_orig_fee_perct_plus,
        x_int_rebate,
        x_pnote_print_ind,
        x_pnote_print_copies,
        x_acc_note_for_disb,
        NULL,
        x_interview_reqd,
        x_disclosure_print_ind,
        x_special_school,
        x_dl_version,
        x_mode,
        x_response_option_code,
        x_funding_method

      );
Line: 814

    update_row (
      x_rowid,
      x_dlset_id,
      x_ci_cal_type,
      x_ci_sequence_number,
      NULL, /* school_id is being obsoleted. Bug # 3102439. FA 126 Multiple FA Offices */
      x_orig_fee_perct_stafford,
      x_orig_fee_perct_plus,
      x_int_rebate,
      x_pnote_print_ind,
      x_pnote_print_copies,
      x_acc_note_for_disb,
      NULL,
      x_interview_reqd,
      x_disclosure_print_ind,
      x_special_school,
      x_dl_version,
      x_mode,
      x_response_option_code,
      x_funding_method

    );
Line: 840

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : venagara
  ||  Created On : 31-JAN-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: 859

    DELETE FROM igf_sl_dl_setup_all
    WHERE rowid = x_rowid;
Line: 866

  END delete_row;