DBA Data[Home] [Help]

APPS.IGF_SL_CL_RESP_R8_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_direct_to_borr_flag               IN     VARCHAR2    DEFAULT NULL
  ) AS
  /*
  ||  Created By : mesriniv
  ||  Created On : 02-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_cl_resp_r8_all
      WHERE    rowid = x_rowid;
Line: 56

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 92

    new_references.last_updated_by                   := x_last_updated_by;
Line: 93

    new_references.last_update_login                 := x_last_update_login;
Line: 117

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

      SELECT   rowid
      FROM     igf_sl_cl_resp_r8_all
      WHERE    clrp1_id = x_clrp1_id
      AND      clrp8_id = x_clrp8_id
      FOR UPDATE NOWAIT;
Line: 175

      SELECT   rowid
      FROM     igf_sl_cl_resp_r8_all
      WHERE   ((clrp1_id = x_clrp1_id));
Line: 217

    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_direct_to_borr_flag               IN     VARCHAR2     DEFAULT NULL

  ) AS
  /*
  ||  Created By : mesriniv
  ||  Created On : 02-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_clrp1_id,
      x_clrp8_id,
      x_disb_date,
      x_disb_gross_amt,
      x_orig_fee,
      x_guarantee_fee,
      x_net_disb_amt,
      x_disb_hold_rel_ind,
      x_disb_status,
      x_guarnt_fee_paid,
      x_orig_fee_paid,
      x_resp_record_status,
      x_layout_owner_code_txt,
      x_layout_version_code_txt,
      x_record_code_txt,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login,
      x_direct_to_borr_flag
    );
Line: 261

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

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

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_clrp1_id                          IN     NUMBER,
    x_clrp8_id                          IN     NUMBER,
    x_disb_date                         IN     DATE,
    x_disb_gross_amt                    IN     NUMBER,
    x_orig_fee                          IN     NUMBER,
    x_guarantee_fee                     IN     NUMBER,
    x_net_disb_amt                      IN     NUMBER,
    x_disb_hold_rel_ind                 IN     VARCHAR2,
    x_disb_status                       IN     VARCHAR2,
    x_guarnt_fee_paid                   IN     NUMBER,
    x_orig_fee_paid                     IN     NUMBER,
    x_resp_record_status                IN     VARCHAR2,
    x_layout_owner_code_txt             IN     VARCHAR2,
    x_layout_version_code_txt           IN     VARCHAR2,
    x_record_code_txt                   IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 DEFAULT 'R',
    x_direct_to_borr_flag               IN     VARCHAR2 DEFAULT NULL
  ) AS
  /*
  ||  Created By : mesriniv
  ||  Created On : 02-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_cl_resp_r8_all
      WHERE    clrp1_id                          = x_clrp1_id
      AND      clrp8_id                          = x_clrp8_id;
Line: 327

    x_last_update_date           DATE;
Line: 328

    x_last_updated_by            NUMBER;
Line: 329

    x_last_update_login          NUMBER;
Line: 333

    x_program_update_date        DATE;
Line: 338

    x_last_update_date := SYSDATE;
Line: 340

      x_last_updated_by := 1;
Line: 341

      x_last_update_login := 0;
Line: 343

      x_last_updated_by := fnd_global.user_id;
Line: 344

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

      x_last_update_login := fnd_global.login_id;
Line: 348

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

        x_program_update_date    := NULL;
Line: 361

        x_program_update_date    := SYSDATE;
Line: 370

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_clrp1_id                          => x_clrp1_id,
      x_clrp8_id                          => x_clrp8_id,
      x_disb_date                         => x_disb_date,
      x_disb_gross_amt                    => x_disb_gross_amt,
      x_orig_fee                          => x_orig_fee,
      x_guarantee_fee                     => x_guarantee_fee,
      x_net_disb_amt                      => x_net_disb_amt,
      x_disb_hold_rel_ind                 => x_disb_hold_rel_ind,
      x_disb_status                       => x_disb_status,
      x_guarnt_fee_paid                   => x_guarnt_fee_paid,
      x_orig_fee_paid                     => x_orig_fee_paid,
      x_resp_record_status                => x_resp_record_status,
      x_layout_owner_code_txt             => x_layout_owner_code_txt,
      x_layout_version_code_txt           => x_layout_version_code_txt,
      x_record_code_txt                   => x_record_code_txt,

      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_direct_to_borr_flag               => x_direct_to_borr_flag
    );
Line: 396

    INSERT INTO igf_sl_cl_resp_r8_all (
      clrp1_id,
      clrp8_id,
      disb_date,
      disb_gross_amt,
      orig_fee,
      guarantee_fee,
      net_disb_amt,
      disb_hold_rel_ind,
      disb_status,
      guarnt_fee_paid,
      orig_fee_paid,
      resp_record_status,
      layout_owner_code_txt,
      layout_version_code_txt,
      record_code_txt,
      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,
      direct_to_borr_flag
    ) VALUES (
      new_references.clrp1_id,
      new_references.clrp8_id,
      new_references.disb_date,
      new_references.disb_gross_amt,
      new_references.orig_fee,
      new_references.guarantee_fee,
      new_references.net_disb_amt,
      new_references.disb_hold_rel_ind,
      new_references.disb_status,
      new_references.guarnt_fee_paid,
      new_references.orig_fee_paid,
      new_references.resp_record_status,
      new_references.layout_owner_code_txt,
      new_references.layout_version_code_txt,
      new_references.record_code_txt,
      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.direct_to_borr_flag
    );
Line: 460

  END insert_row;
Line: 492

      SELECT
        disb_date,
        disb_gross_amt,
        orig_fee,
        guarantee_fee,
        net_disb_amt,
        disb_hold_rel_ind,
        disb_status,
        guarnt_fee_paid,
        orig_fee_paid,
        resp_record_status,
        org_id,
        layout_owner_code_txt,
        layout_version_code_txt,
        record_code_txt,
	direct_to_borr_flag

      FROM  igf_sl_cl_resp_r8_all
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 520

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_clrp1_id                          IN     NUMBER,
    x_clrp8_id                          IN     NUMBER,
    x_disb_date                         IN     DATE,
    x_disb_gross_amt                    IN     NUMBER,
    x_orig_fee                          IN     NUMBER,
    x_guarantee_fee                     IN     NUMBER,
    x_net_disb_amt                      IN     NUMBER,
    x_disb_hold_rel_ind                 IN     VARCHAR2,
    x_disb_status                       IN     VARCHAR2,
    x_guarnt_fee_paid                   IN     NUMBER,
    x_orig_fee_paid                     IN     NUMBER,
    x_resp_record_status                IN     VARCHAR2,
    x_layout_owner_code_txt             IN     VARCHAR2,
    x_layout_version_code_txt           IN     VARCHAR2,
    x_record_code_txt                   IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 DEFAULT 'R',
    x_direct_to_borr_flag               IN     VARCHAR2 DEFAULT NULL
  ) AS
  /*
  ||  Created By : mesriniv
  ||  Created On : 02-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: 587

    x_last_updated_by            NUMBER;
Line: 588

    x_last_update_login          NUMBER;
Line: 592

    x_program_update_date        DATE;
Line: 596

    x_last_update_date := SYSDATE;
Line: 598

      x_last_updated_by := 1;
Line: 599

      x_last_update_login := 0;
Line: 601

      x_last_updated_by := fnd_global.user_id;
Line: 602

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

      x_last_update_login := fnd_global.login_id;
Line: 606

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_clrp1_id                          => x_clrp1_id,
      x_clrp8_id                          => x_clrp8_id,
      x_disb_date                         => x_disb_date,
      x_disb_gross_amt                    => x_disb_gross_amt,
      x_orig_fee                          => x_orig_fee,
      x_guarantee_fee                     => x_guarantee_fee,
      x_net_disb_amt                      => x_net_disb_amt,
      x_disb_hold_rel_ind                 => x_disb_hold_rel_ind,
      x_disb_status                       => x_disb_status,
      x_guarnt_fee_paid                   => x_guarnt_fee_paid,
      x_orig_fee_paid                     => x_orig_fee_paid,
      x_resp_record_status                => x_resp_record_status,
      x_layout_owner_code_txt             => x_layout_owner_code_txt,
      x_layout_version_code_txt           => x_layout_version_code_txt,
      x_record_code_txt                   => x_record_code_txt,

      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_direct_to_borr_flag               => x_direct_to_borr_flag
    );
Line: 650

        x_program_update_date := old_references.program_update_date;
Line: 652

        x_program_update_date := SYSDATE;
Line: 656

    UPDATE igf_sl_cl_resp_r8_all
      SET
        disb_date                         = new_references.disb_date,
        disb_gross_amt                    = new_references.disb_gross_amt,
        orig_fee                          = new_references.orig_fee,
        guarantee_fee                     = new_references.guarantee_fee,
        net_disb_amt                      = new_references.net_disb_amt,
        disb_hold_rel_ind                 = new_references.disb_hold_rel_ind,
        disb_status                       = new_references.disb_status,
        guarnt_fee_paid                   = new_references.guarnt_fee_paid,
        orig_fee_paid                     = new_references.orig_fee_paid,
        resp_record_status                = new_references.resp_record_status,
        layout_owner_code_txt             = new_references.layout_owner_code_txt,
        layout_version_code_txt           = new_references.layout_version_code_txt,
        record_code_txt                   = new_references.record_code_txt,
        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,
	direct_to_borr_flag               = new_references.direct_to_borr_flag
      WHERE rowid = x_rowid;
Line: 685

  END update_row;
Line: 711

  ||  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_cl_resp_r8_all
      WHERE    clrp1_id                          = x_clrp1_id
      AND      clrp8_id                          = x_clrp8_id;
Line: 730

      insert_row (
        x_rowid,
        x_clrp1_id,
        x_clrp8_id,
        x_disb_date,
        x_disb_gross_amt,
        x_orig_fee,
        x_guarantee_fee,
        x_net_disb_amt,
        x_disb_hold_rel_ind,
        x_disb_status,
        x_guarnt_fee_paid,
        x_orig_fee_paid,
        x_resp_record_status,
        x_layout_owner_code_txt,
        x_layout_version_code_txt,
        x_record_code_txt,
        x_mode,
	x_direct_to_borr_flag
      );
Line: 754

    update_row (
      x_rowid,
      x_clrp1_id,
      x_clrp8_id,
      x_disb_date,
      x_disb_gross_amt,
      x_orig_fee,
      x_guarantee_fee,
      x_net_disb_amt,
      x_disb_hold_rel_ind,
      x_disb_status,
      x_guarnt_fee_paid,
      x_orig_fee_paid,
      x_resp_record_status,
      x_layout_owner_code_txt,
      x_layout_version_code_txt,
      x_record_code_txt,
      x_mode,
      x_direct_to_borr_flag
    );
Line: 778

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : mesriniv
  ||  Created On : 02-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: 797

    DELETE FROM igf_sl_cl_resp_r8_all
    WHERE rowid = x_rowid;
Line: 804

  END delete_row;