DBA Data[Home] [Help]

APPS.IGF_GR_YTD_DISB_PKG SQL Statements

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

Line: 23

    x_last_update_date                  IN     DATE        ,
    x_last_updated_by                   IN     NUMBER      ,
    x_last_update_login                 IN     NUMBER      ,
 	  x_ci_cal_type                       IN     VARCHAR2    ,
 	  x_ci_sequence_number                IN     NUMBER      ,
 	  x_student_name                      IN     VARCHAR2    ,
 	  x_current_ssn_txt                   IN     VARCHAR2    ,
 	  x_student_birth_date                IN     DATE        ,
 	  x_disb_process_date                 IN     DATE        ,
 	  x_routing_id_txt                    IN     VARCHAR2    ,
 	  x_fin_award_year_num                IN     NUMBER      ,
 	  x_attend_entity_id_txt              IN     VARCHAR2    ,
 	  x_disb_seq_num                      IN     NUMBER      ,
 	  x_disb_rel_ind                      IN     VARCHAR2    ,
 	  x_prev_disb_seq_num                 IN     NUMBER
  ) AS
  /*
  ||  Created By : avenkatr
  ||  Created On : 21-DEC-2000
  ||  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     igf_gr_ytd_disb_all
      WHERE    rowid = x_rowid;
Line: 62

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 104

    new_references.last_updated_by                   := x_last_updated_by;
Line: 105

    new_references.last_update_login                 := x_last_update_login;
Line: 123

      SELECT   rowid
      FROM     igf_gr_ytd_disb_all
      WHERE    ytdds_id = x_ytdds_id
      FOR UPDATE NOWAIT;
Line: 160

    x_last_update_date                  IN     DATE        ,
    x_last_updated_by                   IN     NUMBER      ,
    x_last_update_login                 IN     NUMBER      ,
    x_ci_cal_type                       IN     VARCHAR2    ,
 	  x_ci_sequence_number                IN     NUMBER      ,
 	  x_student_name                      IN     VARCHAR2    ,
 	  x_current_ssn_txt                   IN     VARCHAR2    ,
 	  x_student_birth_date                IN     DATE        ,
 	  x_disb_process_date                 IN     DATE        ,
 	  x_routing_id_txt                    IN     VARCHAR2    ,
 	  x_fin_award_year_num                IN     NUMBER      ,
 	  x_attend_entity_id_txt              IN     VARCHAR2    ,
 	  x_disb_seq_num                      IN     NUMBER      ,
 	  x_disb_rel_ind                      IN     VARCHAR2    ,
 	  x_prev_disb_seq_num                 IN     NUMBER
  ) AS
  /*
  ||  Created By : avenkatr

  ||  Created On : 21-DEC-2000
  ||  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_ytdds_id,
      x_origination_id,
      x_inst_cross_ref_code,
      x_action_code,
      x_disb_ref_num,
      x_disb_accpt_amt,
      x_db_cr_flag,
      x_disb_dt,
      x_pymt_prd_start_dt,
      x_disb_batch_id,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login,
 	    x_ci_cal_type,
 	    x_ci_sequence_number,
 	    x_student_name,
 	    x_current_ssn_txt,
 	    x_student_birth_date,
 	    x_disb_process_date,
 	    x_routing_id_txt,
 	    x_fin_award_year_num,
 	    x_attend_entity_id_txt,
 	    x_disb_seq_num,
 	    x_disb_rel_ind,
 	    x_prev_disb_seq_num
    );
Line: 221

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

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_ytdds_id                          IN OUT NOCOPY NUMBER,
    x_origination_id                    IN     VARCHAR2,
    x_inst_cross_ref_code               IN     VARCHAR2,
    x_action_code                       IN     VARCHAR2,
    x_disb_ref_num                      IN     VARCHAR2,
    x_disb_accpt_amt                    IN     NUMBER,
    x_db_cr_flag                        IN     VARCHAR2,
    x_disb_dt                           IN     DATE,
    x_pymt_prd_start_dt                 IN     DATE,
    x_disb_batch_id                     IN     VARCHAR2,
    x_mode                              IN     VARCHAR2,
 	  x_ci_cal_type                       IN     VARCHAR2,
 	  x_ci_sequence_number                IN     NUMBER,
 	  x_student_name                      IN     VARCHAR2,
 	  x_current_ssn_txt                   IN     VARCHAR2,
 	  x_student_birth_date                IN     DATE,
 	  x_disb_process_date                 IN     DATE,
 	  x_routing_id_txt                    IN     VARCHAR2,
 	  x_fin_award_year_num                IN     NUMBER,
 	  x_attend_entity_id_txt              IN     VARCHAR2,
 	  x_disb_seq_num                      IN     NUMBER,
 	  x_disb_rel_ind                      IN     VARCHAR2,
 	  x_prev_disb_seq_num                 IN     NUMBER
  ) AS
  /*
  ||  Created By : avenkatr
  ||  Created On : 21-DEC-2000
  ||  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     igf_gr_ytd_disb_all
      WHERE    ytdds_id                          = x_ytdds_id;
Line: 286

    x_last_update_date           DATE;
Line: 287

    x_last_updated_by            NUMBER;
Line: 288

    x_last_update_login          NUMBER;
Line: 292

    x_program_update_date        DATE;
Line: 297

    x_last_update_date := SYSDATE;
Line: 299

      x_last_updated_by := 1;
Line: 300

      x_last_update_login := 0;
Line: 302

      x_last_updated_by := fnd_global.user_id;
Line: 303

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

      x_last_update_login := fnd_global.login_id;
Line: 307

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

        x_program_update_date    := NULL;
Line: 320

        x_program_update_date    := SYSDATE;
Line: 328

		SELECT igf_gr_ytd_disb_s.nextval INTO x_ytdds_id FROM dual;
Line: 331

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_ytdds_id                          => x_ytdds_id,
      x_origination_id                    => x_origination_id,
      x_inst_cross_ref_code               => x_inst_cross_ref_code,
      x_action_code                       => x_action_code,
      x_disb_ref_num                      => x_disb_ref_num,
      x_disb_accpt_amt                    => x_disb_accpt_amt,
      x_db_cr_flag                        => x_db_cr_flag,
      x_disb_dt                           => x_disb_dt,
      x_pymt_prd_start_dt                 => x_pymt_prd_start_dt,
      x_disb_batch_id                     => x_disb_batch_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,
 	    x_ci_cal_type                       =>  x_ci_cal_type,
 	    x_ci_sequence_number                =>  x_ci_sequence_number,
 	    x_student_name                      =>  x_student_name,
 	    x_current_ssn_txt                   =>  x_current_ssn_txt,
 	    x_student_birth_date                =>  x_student_birth_date,
 	    x_disb_process_date                 =>  x_disb_process_date,
 	    x_routing_id_txt                    =>  x_routing_id_txt,
 	    x_fin_award_year_num                =>  x_fin_award_year_num,
 	    x_attend_entity_id_txt              =>  x_attend_entity_id_txt,
 	    x_disb_seq_num                      =>  x_disb_seq_num,
 	    x_disb_rel_ind                      =>  x_disb_rel_ind,
 	    x_prev_disb_seq_num                 =>  x_prev_disb_seq_num
    );
Line: 362

    INSERT INTO igf_gr_ytd_disb_all (
      ytdds_id,
      origination_id,
      inst_cross_ref_code,
      action_code,
      disb_ref_num,
      disb_accpt_amt,
      db_cr_flag,
      disb_dt,
      pymt_prd_start_dt,
      disb_batch_id,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login,
      request_id,
      program_id,
      program_application_id,
      program_update_date,
      org_id,
 	    ci_cal_type,
 	    ci_sequence_number,
 	    student_name,
 	    current_ssn_txt,
 	    student_birth_date,
 	    disb_process_date,
 	    routing_id_txt,
 	    fin_award_year_num,
 	    attend_entity_id_txt,
 	    disb_seq_num,
 	    disb_rel_ind,
 	    prev_disb_seq_num
    ) VALUES (
      new_references.ytdds_id,
      new_references.origination_id,
      new_references.inst_cross_ref_code,
      new_references.action_code,
      new_references.disb_ref_num,
      new_references.disb_accpt_amt,
      new_references.db_cr_flag,
      new_references.disb_dt,
      new_references.pymt_prd_start_dt,
      new_references.disb_batch_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,
      l_org_id,
 	    new_references.ci_cal_type,
 	    new_references.ci_sequence_number,
 	    new_references.student_name,
 	    new_references.current_ssn_txt,
 	    new_references.student_birth_date,
 	    new_references.disb_process_date,
 	    new_references.routing_id_txt,
 	    new_references.fin_award_year_num,
 	    new_references.attend_entity_id_txt,
 	    new_references.disb_seq_num,
 	    new_references.disb_rel_ind,
 	    new_references.prev_disb_seq_num
    );
Line: 438

  END insert_row;
Line: 476

      SELECT
        origination_id,
        inst_cross_ref_code,
        action_code,
        disb_ref_num,
        disb_accpt_amt,
        db_cr_flag,
        disb_dt,
        pymt_prd_start_dt,
        disb_batch_id,
 	      ci_cal_type,
 	      ci_sequence_number,
 	      student_name,
 	      current_ssn_txt,
 	      student_birth_date,
 	      disb_process_date,
 	      routing_id_txt,
 	      fin_award_year_num,
 	      attend_entity_id_txt,
 	      disb_seq_num,
 	      disb_rel_ind,
 	      prev_disb_seq_num
      FROM  igf_gr_ytd_disb_all
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 509

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_ytdds_id                          IN     NUMBER,
    x_origination_id                    IN     VARCHAR2,
    x_inst_cross_ref_code               IN     VARCHAR2,
    x_action_code                       IN     VARCHAR2,
    x_disb_ref_num                      IN     VARCHAR2,
    x_disb_accpt_amt                    IN     NUMBER,
    x_db_cr_flag                        IN     VARCHAR2,
    x_disb_dt                           IN     DATE,
    x_pymt_prd_start_dt                 IN     DATE,
    x_disb_batch_id                     IN     VARCHAR2,
    x_mode                              IN     VARCHAR2,
 	  x_ci_cal_type                       IN     VARCHAR2,
 	  x_ci_sequence_number                IN     NUMBER,
 	  x_student_name                      IN     VARCHAR2,
 	  x_current_ssn_txt                   IN     VARCHAR2,
 	  x_student_birth_date                IN     DATE,
 	  x_disb_process_date                 IN     DATE,
 	  x_routing_id_txt                    IN     VARCHAR2,
 	  x_fin_award_year_num                IN     NUMBER,
 	  x_attend_entity_id_txt              IN     VARCHAR2,
 	  x_disb_seq_num                      IN     NUMBER,
 	  x_disb_rel_ind                      IN     VARCHAR2,
 	  x_prev_disb_seq_num                 IN     NUMBER
  ) AS
  /*
  ||  Created By : avenkatr
  ||  Created On : 21-DEC-2000
  ||  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: 588

    x_last_updated_by            NUMBER;
Line: 589

    x_last_update_login          NUMBER;
Line: 593

    x_program_update_date        DATE;
Line: 597

    x_last_update_date := SYSDATE;
Line: 599

      x_last_updated_by := 1;
Line: 600

      x_last_update_login := 0;
Line: 602

      x_last_updated_by := fnd_global.user_id;
Line: 603

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

      x_last_update_login := fnd_global.login_id;
Line: 607

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_ytdds_id                          => x_ytdds_id,
      x_origination_id                    => x_origination_id,
      x_inst_cross_ref_code               => x_inst_cross_ref_code,
      x_action_code                       => x_action_code,
      x_disb_ref_num                      => x_disb_ref_num,
      x_disb_accpt_amt                    => x_disb_accpt_amt,
      x_db_cr_flag                        => x_db_cr_flag,
      x_disb_dt                           => x_disb_dt,
      x_pymt_prd_start_dt                 => x_pymt_prd_start_dt,
      x_disb_batch_id                     => x_disb_batch_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,
 	    x_ci_cal_type                       =>  x_ci_cal_type,
 	    x_ci_sequence_number                =>  x_ci_sequence_number,
 	    x_student_name                      =>  x_student_name,
 	    x_current_ssn_txt                   =>  x_current_ssn_txt,
 	    x_student_birth_date                =>  x_student_birth_date,
 	    x_disb_process_date                 =>  x_disb_process_date,
 	    x_routing_id_txt                    =>  x_routing_id_txt,
 	    x_fin_award_year_num                =>  x_fin_award_year_num,
 	    x_attend_entity_id_txt              =>  x_attend_entity_id_txt,
 	    x_disb_seq_num                      =>  x_disb_seq_num,
 	    x_disb_rel_ind                      =>  x_disb_rel_ind,
 	    x_prev_disb_seq_num                 =>  x_prev_disb_seq_num
    );
Line: 656

        x_program_update_date := old_references.program_update_date;
Line: 658

        x_program_update_date := SYSDATE;
Line: 662

    UPDATE igf_gr_ytd_disb_all
      SET
        origination_id                    = new_references.origination_id,
        inst_cross_ref_code               = new_references.inst_cross_ref_code,
        action_code                       = new_references.action_code,
        disb_ref_num                      = new_references.disb_ref_num,
        disb_accpt_amt                    = new_references.disb_accpt_amt,
        db_cr_flag                        = new_references.db_cr_flag,
        disb_dt                           = new_references.disb_dt,
        pymt_prd_start_dt                 = new_references.pymt_prd_start_dt,
        disb_batch_id                     = new_references.disb_batch_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,
 	      ci_cal_type                       = new_references.ci_cal_type,
 	      ci_sequence_number                = new_references.ci_sequence_number,
 	      student_name                      = new_references.student_name,
 	      current_ssn_txt                   = new_references.current_ssn_txt,
 	      student_birth_date                = new_references.student_birth_date,
 	      disb_process_date                 = new_references.disb_process_date,
 	      routing_id_txt                    = new_references.routing_id_txt,
 	      fin_award_year_num                = new_references.fin_award_year_num,
 	      attend_entity_id_txt              = new_references.attend_entity_id_txt,
 	      disb_seq_num                      = new_references.disb_seq_num,
 	      disb_rel_ind                      = new_references.disb_rel_ind,
 	      prev_disb_seq_num                 = new_references.prev_disb_seq_num
      WHERE rowid = x_rowid;
Line: 698

  END update_row;
Line: 730

  ||  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     igf_gr_ytd_disb_all
      WHERE    ytdds_id                          = x_ytdds_id;
Line: 748

      insert_row (
        x_rowid,
        x_ytdds_id,
        x_origination_id,
        x_inst_cross_ref_code,
        x_action_code,
        x_disb_ref_num,
        x_disb_accpt_amt,
        x_db_cr_flag,
        x_disb_dt,
        x_pymt_prd_start_dt,
        x_disb_batch_id,
        x_mode,
 	      x_ci_cal_type,
 	      x_ci_sequence_number,
 	      x_student_name,
 	      x_current_ssn_txt,
 	      x_student_birth_date,
 	      x_disb_process_date,
 	      x_routing_id_txt,
 	      x_fin_award_year_num,
 	      x_attend_entity_id_txt,
 	      x_disb_seq_num,
 	      x_disb_rel_ind,
 	      x_prev_disb_seq_num
      );
Line: 778

    update_row (
      x_rowid,
      x_ytdds_id,
      x_origination_id,
      x_inst_cross_ref_code,
      x_action_code,
      x_disb_ref_num,
      x_disb_accpt_amt,
      x_db_cr_flag,
      x_disb_dt,
      x_pymt_prd_start_dt,
      x_disb_batch_id,
      x_mode,
 	    x_ci_cal_type,
 	    x_ci_sequence_number,
 	    x_student_name,
 	    x_current_ssn_txt,
 	    x_student_birth_date,
 	    x_disb_process_date,
 	    x_routing_id_txt,
 	    x_fin_award_year_num,
 	    x_attend_entity_id_txt,
 	    x_disb_seq_num,
 	    x_disb_rel_ind,
 	    x_prev_disb_seq_num
    );
Line: 808

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : avenkatr
  ||  Created On : 21-DEC-2000
  ||  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: 827

    DELETE FROM igf_gr_ytd_disb_all
    WHERE rowid = x_rowid;
Line: 834

  END delete_row;