DBA Data[Home] [Help]

APPS.IGF_SL_AWD_DISB_LOC_PKG SQL Statements

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

Line: 23

    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 : venagara
  ||  Created On : 16-NOV-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_SL_AWD_DISB_LOC_ALL
      WHERE    rowid = x_rowid;
Line: 50

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 80

    new_references.last_updated_by                   := x_last_updated_by;
Line: 81

    new_references.last_update_login                 := x_last_update_login;
Line: 104

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

      SELECT   rowid
      FROM     igf_sl_awd_disb_loc_all
      WHERE    award_id = x_award_id
      AND      disb_num = x_disb_num
      FOR UPDATE NOWAIT;
Line: 162

      SELECT   rowid
      FROM     igf_sl_awd_disb_loc_all
      WHERE   ((award_id = x_award_id));
Line: 199

    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 : venagara
  ||  Created On : 16-NOV-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_award_id,
      x_disb_num,
      x_disb_gross_amt,
      x_fee_1,
      x_fee_2,
      x_disb_net_amt,
      x_disb_date,
      x_hold_rel_ind,
      x_fee_paid_1,
      x_fee_paid_2,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 235

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

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

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_award_id                          IN     NUMBER,
    x_disb_num                          IN     NUMBER,
    x_disb_gross_amt                    IN     NUMBER,
    x_fee_1                             IN     NUMBER,
    x_fee_2                             IN     NUMBER,
    x_disb_net_amt                      IN     NUMBER,
    x_disb_date                         IN     DATE,
    x_hold_rel_ind                      IN     VARCHAR2,
    x_fee_paid_1                        IN     NUMBER,
    x_fee_paid_2                        IN     NUMBER,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : venagara
  ||  Created On : 16-NOV-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_sl_awd_disb_loc_all
      WHERE    award_id                          = x_award_id
      AND      disb_num                          = x_disb_num;
Line: 295

    x_last_update_date           DATE;
Line: 296

    x_last_updated_by            NUMBER;
Line: 297

    x_last_update_login          NUMBER;
Line: 301

    x_program_update_date        DATE;
Line: 306

    x_last_update_date := SYSDATE;
Line: 308

      x_last_updated_by := 1;
Line: 309

      x_last_update_login := 0;
Line: 311

      x_last_updated_by := fnd_global.user_id;
Line: 312

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

      x_last_update_login := fnd_global.login_id;
Line: 316

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

        x_program_update_date    := NULL;
Line: 329

        x_program_update_date    := SYSDATE;
Line: 338

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_award_id                          => x_award_id,
      x_disb_num                          => x_disb_num,
      x_disb_gross_amt                    => x_disb_gross_amt,
      x_fee_1                             => x_fee_1,
      x_fee_2                             => x_fee_2,
      x_disb_net_amt                      => x_disb_net_amt,
      x_disb_date                         => x_disb_date,
      x_hold_rel_ind                      => x_hold_rel_ind,
      x_fee_paid_1                        => x_fee_paid_1,
      x_fee_paid_2                        => x_fee_paid_2,
      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: 357

    INSERT INTO igf_sl_awd_disb_loc_all(
      award_id,
      disb_num,
      disb_gross_amt,
      fee_1,
      fee_2,
      disb_net_amt,
      disb_date,
      hold_rel_ind,
      fee_paid_1,
      fee_paid_2,
      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
    ) VALUES (
      new_references.award_id,
      new_references.disb_num,
      new_references.disb_gross_amt,
      new_references.fee_1,
      new_references.fee_2,
      new_references.disb_net_amt,
      new_references.disb_date,
      new_references.hold_rel_ind,
      new_references.fee_paid_1,
      new_references.fee_paid_2,
      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
    );
Line: 409

    after_dml (p_action => 'INSERT');
Line: 411

  END insert_row;
Line: 437

      SELECT
        disb_gross_amt,
        fee_1,
        fee_2,
        disb_net_amt,
        disb_date,
        hold_rel_ind,
        fee_paid_1,
        fee_paid_2,
        org_id
      FROM  igf_sl_awd_disb_loc_all
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 458

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_award_id                          IN     NUMBER,
    x_disb_num                          IN     NUMBER,
    x_disb_gross_amt                    IN     NUMBER,
    x_fee_1                             IN     NUMBER,
    x_fee_2                             IN     NUMBER,
    x_disb_net_amt                      IN     NUMBER,
    x_disb_date                         IN     DATE,
    x_hold_rel_ind                      IN     VARCHAR2,
    x_fee_paid_1                        IN     NUMBER,
    x_fee_paid_2                        IN     NUMBER,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : venagara
  ||  Created On : 16-NOV-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: 512

    x_last_updated_by            NUMBER;
Line: 513

    x_last_update_login          NUMBER;
Line: 517

    x_program_update_date        DATE;
Line: 521

    x_last_update_date := SYSDATE;
Line: 523

      x_last_updated_by := 1;
Line: 524

      x_last_update_login := 0;
Line: 526

      x_last_updated_by := fnd_global.user_id;
Line: 527

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

      x_last_update_login := fnd_global.login_id;
Line: 531

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_award_id                          => x_award_id,
      x_disb_num                          => x_disb_num,
      x_disb_gross_amt                    => x_disb_gross_amt,
      x_fee_1                             => x_fee_1,
      x_fee_2                             => x_fee_2,
      x_disb_net_amt                      => x_disb_net_amt,
      x_disb_date                         => x_disb_date,
      x_hold_rel_ind                      => x_hold_rel_ind,
      x_fee_paid_1                        => x_fee_paid_1,
      x_fee_paid_2                        => x_fee_paid_2,
      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: 568

        x_program_update_date := old_references.program_update_date;
Line: 570

        x_program_update_date := SYSDATE;
Line: 574

    UPDATE igf_sl_awd_disb_loc_all
      SET
        disb_gross_amt                    = new_references.disb_gross_amt,
        fee_1                             = new_references.fee_1,
        fee_2                             = new_references.fee_2,
        disb_net_amt                      = new_references.disb_net_amt,
        disb_date                         = new_references.disb_date,
        hold_rel_ind                      = new_references.hold_rel_ind,
        fee_paid_1                        = new_references.fee_paid_1,
        fee_paid_2                        = new_references.fee_paid_2,
        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: 597

        after_dml (p_action => 'UPDATE');
Line: 598

  END update_row;
Line: 618

  ||  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_sl_awd_disb_loc_all
      WHERE    award_id                          = x_award_id
      AND      disb_num                          = x_disb_num;
Line: 637

      insert_row (
        x_rowid,
        x_award_id,
        x_disb_num,
        x_disb_gross_amt,
        x_fee_1,
        x_fee_2,
        x_disb_net_amt,
        x_disb_date,
        x_hold_rel_ind,
        x_fee_paid_1,
        x_fee_paid_2,
        x_mode
      );
Line: 655

    update_row (
      x_rowid,
      x_award_id,
      x_disb_num,
      x_disb_gross_amt,
      x_fee_1,
      x_fee_2,
      x_disb_net_amt,
      x_disb_date,
      x_hold_rel_ind,
      x_fee_paid_1,
      x_fee_paid_2,
      x_mode
    );
Line: 673

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : venagara
  ||  Created On : 16-NOV-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: 692

    DELETE FROM igf_sl_awd_disb_loc_all
    WHERE rowid = x_rowid;
Line: 699

  END delete_row;
Line: 718

  IF p_action = 'INSERT' THEN
    l_source := 'SYSTEM';
Line: 720

  ELSIF p_action='UPDATE' THEN
      l_source := 'RESPONSE';
Line: 724

    igf_sl_disb_loc_history_pkg.insert_row (
        x_rowid                                  => l_rowid,
        x_lodisbh_id                             =>  l_seq,
        x_award_id                               => new_references.award_id                    ,
        x_disbursement_number                    => new_references.disb_num         ,
        x_disbursement_gross_amt                 => new_references.disb_gross_amt      ,
        x_origination_fee_amt                    => new_references.fee_1         ,
        x_guarantee_fee_amt                      => new_references.fee_2           ,
        x_origination_fee_paid_amt               => new_references.fee_paid_1    ,
        x_guarantee_fee_paid_amt                 => new_references.fee_paid_2      ,
        x_disbursement_date                      => new_references.disb_date           ,
        x_disbursement_hold_rel_ind              => new_references.hold_rel_ind   ,
        x_disbursement_net_amt                   => new_references.disb_net_amt        ,
        x_source_txt                             => l_source,
        x_mode                                   => 'R'
      );