DBA Data[Home] [Help]

APPS.IGF_SL_CL_PREF_LENDERS_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
  ) AS
  /*
  ||  Created By :
  ||  Created On : 07-SEP-2003
  ||  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_pref_lenders
      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: 67

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

    new_references.last_update_date                  := x_last_update_date;
Line: 78

    new_references.last_updated_by                   := x_last_updated_by;
Line: 79

    new_references.last_update_login                 := x_last_update_login;
Line: 102

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

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

      SELECT   rowid
      FROM     igf_sl_cl_pref_lenders
      WHERE    clprl_id = x_clprl_id
      FOR UPDATE NOWAIT;
Line: 170

      SELECT   rowid
      FROM     igf_sl_cl_pref_lenders
      WHERE   ((relationship_cd = x_relationship_cd));
Line: 203

    x_last_update_date                  IN     DATE,
    x_last_updated_by                   IN     NUMBER,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By :
  ||  Created On : 07-SEP-2003
  ||  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)
  */
  l_message  VARCHAR2(2000);
Line: 231

      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 236

    IF (p_action = 'INSERT') THEN
      -- Call all the procedures related to Before Insert.
      IF ( get_pk_for_validation(
             new_references.clprl_id
           )
         ) 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.clprl_id
           )
         ) THEN
        fnd_message.set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
Line: 292

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_clprl_id                          IN OUT NOCOPY NUMBER,
    x_msg_count                            OUT NOCOPY NUMBER,
    x_msg_data                             OUT NOCOPY VARCHAR2,
    x_return_status                        OUT NOCOPY VARCHAR2,
    x_person_id                         IN     NUMBER,
    x_relationship_cd             IN     VARCHAR2,
    x_start_date                        IN     DATE,
    x_end_date                          IN     DATE,
    x_object_version_number             IN     NUMBER,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By :
  ||  Created On : 07-SEP-2003
  ||  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)
  */

    x_last_update_date           DATE;
Line: 316

    x_last_updated_by            NUMBER;
Line: 317

    x_last_update_login          NUMBER;
Line: 321

    x_program_update_date        DATE;
Line: 328

    x_last_update_date := SYSDATE;
Line: 330

      x_last_updated_by := 1;
Line: 331

      x_last_update_login := 0;
Line: 333

      x_last_updated_by := fnd_global.user_id;
Line: 334

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

      x_last_update_login := fnd_global.login_id;
Line: 338

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

        x_program_update_date    := NULL;
Line: 351

        x_program_update_date    := SYSDATE;
Line: 355

      fnd_message.set_token ('ROUTINE', 'IGF_SL_CL_PREF_LENDERS_PKG.INSERT_ROW');
Line: 363

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_clprl_id                          => x_clprl_id,
      x_person_id                         => x_person_id,
      x_relationship_cd                   => x_relationship_cd,
      x_start_date                        => x_start_date,
      x_end_date                          => x_end_date,
      x_object_version_number             => x_object_version_number,
      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: 378

    INSERT INTO igf_sl_cl_pref_lenders (
      clprl_id,
      person_id,
      relationship_cd,
      start_date,
      end_date,
      object_version_number,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login,
      request_id,
      program_id,
      program_application_id,
      program_update_date
    ) VALUES (
      igf_sl_cl_pref_lenders_s.NEXTVAL,
      new_references.person_id,
      new_references.relationship_cd,
      new_references.start_date,
      new_references.end_date,
      1,
      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
    ) RETURNING ROWID, clprl_id INTO x_rowid, x_clprl_id;
Line: 413

      p_action                            => 'INSERT',
      x_person_id                         => x_person_id,
      x_start_date                        => x_start_date,
      x_end_date                          => x_end_date
     );
Line: 427

  END insert_row;
Line: 449

      SELECT
        person_id,
        relationship_cd,
        start_date,
        end_date,
        object_version_number
      FROM  igf_sl_cl_pref_lenders
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 466

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_clprl_id                          IN     NUMBER,
    x_msg_count                            OUT NOCOPY NUMBER,
    x_msg_data                             OUT NOCOPY VARCHAR2,
    x_return_status                        OUT NOCOPY VARCHAR2,
    x_person_id                         IN     NUMBER,
    x_relationship_cd                   IN     VARCHAR2,
    x_start_date                        IN     DATE,
    x_end_date                          IN     DATE,
    x_object_version_number             IN     NUMBER,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By :
  ||  Created On : 07-SEP-2003
  ||  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: 516

    x_last_updated_by            NUMBER;
Line: 517

    x_last_update_login          NUMBER;
Line: 521

    x_program_update_date        DATE;
Line: 527

    x_last_update_date := SYSDATE;
Line: 529

      x_last_updated_by := 1;
Line: 530

      x_last_update_login := 0;
Line: 532

      x_last_updated_by := fnd_global.user_id;
Line: 533

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

      x_last_update_login := fnd_global.login_id;
Line: 537

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

      fnd_message.set_token ('ROUTINE', 'igf_sl_cl_pref_lenders_PKG.UPDATE_ROW');
Line: 548

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_clprl_id                          => x_clprl_id,
      x_person_id                         => x_person_id,
      x_relationship_cd                   => x_relationship_cd,
      x_start_date                        => x_start_date,
      x_end_date                          => x_end_date,
      x_object_version_number             => x_object_version_number,
      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: 570

        x_program_update_date := old_references.program_update_date;
Line: 572

        x_program_update_date := SYSDATE;
Line: 576

    UPDATE igf_sl_cl_pref_lenders
      SET
        person_id                         = new_references.person_id,
        relationship_cd             = new_references.relationship_cd,
        start_date                        = new_references.start_date,
        end_date                          = new_references.end_date,
        object_version_number             = new_references.object_version_number,
        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

      p_action                            => 'UPDATE',
      x_person_id                         => x_person_id,
      x_start_date                        => x_start_date,
      x_end_date                          => x_end_date
     );
Line: 611

  END update_row;
Line: 617

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By :
  ||  Created On : 07-SEP-2003
  ||  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: 636

    DELETE FROM igf_sl_cl_pref_lenders
    WHERE rowid = x_rowid;
Line: 643

  END delete_row;