DBA Data[Home] [Help]

APPS.IGF_SL_DL_MANIFEST_PKG SQL Statements

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

Line: 22

    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 : viramali
  ||  Created On : 10-MAY-2001
  ||  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_DL_MANIFEST_ALL
      WHERE    rowid = x_rowid;
Line: 49

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

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

    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: 123

      SELECT   rowid
      FROM     igf_sl_dl_manifest_all
      WHERE    pnmn_id = x_pnmn_id
      FOR UPDATE NOWAIT;
Line: 158

      SELECT   rowid
      FROM     igf_sl_dl_manifest_all
      WHERE   ((loan_id = x_loan_id));
Line: 194

    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 : viramali
  ||  Created On : 10-MAY-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
  ||  (reverse chronological order - newest change first)
  */
  BEGIN

    set_column_values (
      p_action,
      x_rowid,
      x_pnmn_id,
      x_batch_seq_num,
      x_loan_id,
      x_loan_number,
      x_b_ssn,
      x_b_first_name,
      x_b_last_name,
      x_b_middle_name,
      x_status,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 229

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

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

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_pnmn_id                           IN OUT NOCOPY NUMBER,
    x_batch_seq_num                     IN     NUMBER,
    x_loan_id                           IN     NUMBER,
    x_loan_number                       IN     VARCHAR2,
    x_b_ssn                             IN     VARCHAR2,
    x_b_first_name                      IN     VARCHAR2,
    x_b_last_name                       IN     VARCHAR2,
    x_b_middle_name                     IN     VARCHAR2,
    x_status                            IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : viramali
  ||  Created On : 10-MAY-2001
  ||  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_dl_manifest_all
      WHERE    pnmn_id                           = x_pnmn_id;
Line: 285

    x_last_update_date           DATE;
Line: 286

    x_last_updated_by            NUMBER;
Line: 287

    x_last_update_login          NUMBER;
Line: 291

    x_program_update_date        DATE;
Line: 295

    x_last_update_date := SYSDATE;
Line: 297

      x_last_updated_by := 1;
Line: 298

      x_last_update_login := 0;
Line: 300

      x_last_updated_by := fnd_global.user_id;
Line: 301

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

      x_last_update_login := fnd_global.login_id;
Line: 305

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

        x_program_update_date    := NULL;
Line: 318

        x_program_update_date    := SYSDATE;
Line: 326

    SELECT    igf_sl_dl_manifest_all_s.NEXTVAL
    INTO      x_pnmn_id
    FROM      dual;
Line: 333

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_pnmn_id                           => x_pnmn_id,
      x_batch_seq_num                     => x_batch_seq_num,
      x_loan_id                           => x_loan_id,
      x_loan_number                       => x_loan_number,
      x_b_ssn                             => x_b_ssn,
      x_b_first_name                      => x_b_first_name,
      x_b_last_name                       => x_b_last_name,
      x_b_middle_name                     => x_b_middle_name,
      x_status                            => x_status,
      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: 351

    INSERT INTO igf_sl_dl_manifest_all (
      pnmn_id,
      batch_seq_num,
      loan_id,
      loan_number,
      b_ssn,
      b_first_name,
      b_last_name,
      b_middle_name,
      status,
      org_id,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login,
      request_id,
      program_id,
      program_application_id,
      program_update_date
    ) VALUES (
      new_references.pnmn_id,
      new_references.batch_seq_num,
      new_references.loan_id,
      new_references.loan_number,
      new_references.b_ssn,
      new_references.b_first_name,
      new_references.b_last_name,
      new_references.b_middle_name,
      new_references.status,
      new_references.org_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
    );
Line: 401

  END insert_row;
Line: 426

      SELECT
        batch_seq_num,
        loan_id,
        loan_number,
        b_ssn,
        b_first_name,
        b_last_name,
        b_middle_name,
        status
      FROM  igf_sl_dl_manifest_all
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 446

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_pnmn_id                           IN     NUMBER,
    x_batch_seq_num                     IN     NUMBER,
    x_loan_id                           IN     NUMBER,
    x_loan_number                       IN     VARCHAR2,
    x_b_ssn                             IN     VARCHAR2,
    x_b_first_name                      IN     VARCHAR2,
    x_b_last_name                       IN     VARCHAR2,
    x_b_middle_name                     IN     VARCHAR2,
    x_status                            IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : viramali
  ||  Created On : 10-MAY-2001
  ||  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: 499

    x_last_updated_by            NUMBER;
Line: 500

    x_last_update_login          NUMBER;
Line: 504

    x_program_update_date        DATE;
Line: 508

    x_last_update_date := SYSDATE;
Line: 510

      x_last_updated_by := 1;
Line: 511

      x_last_update_login := 0;
Line: 513

      x_last_updated_by := fnd_global.user_id;
Line: 514

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

      x_last_update_login := fnd_global.login_id;
Line: 518

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_pnmn_id                           => x_pnmn_id,
      x_batch_seq_num                     => x_batch_seq_num,
      x_loan_id                           => x_loan_id,
      x_loan_number                       => x_loan_number,
      x_b_ssn                             => x_b_ssn,
      x_b_first_name                      => x_b_first_name,
      x_b_last_name                       => x_b_last_name,
      x_b_middle_name                     => x_b_middle_name,
      x_status                            => x_status,
      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: 554

        x_program_update_date := old_references.program_update_date;
Line: 556

        x_program_update_date := SYSDATE;
Line: 560

    UPDATE igf_sl_dl_manifest_all
      SET
        batch_seq_num                     = new_references.batch_seq_num,
        loan_id                           = new_references.loan_id,
        loan_number                       = new_references.loan_number,
        b_ssn                             = new_references.b_ssn,
        b_first_name                      = new_references.b_first_name,
        b_last_name                       = new_references.b_last_name,
        b_middle_name                     = new_references.b_middle_name,
        status                            = new_references.status,
        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: 583

  END update_row;
Line: 602

  ||  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_dl_manifest_all
      WHERE    pnmn_id                           = x_pnmn_id;
Line: 620

      insert_row (
        x_rowid,
        x_pnmn_id,
        x_batch_seq_num,
        x_loan_id,
        x_loan_number,
        x_b_ssn,
        x_b_first_name,
        x_b_last_name,
        x_b_middle_name,
        x_status,
        x_mode
      );
Line: 637

    update_row (
      x_rowid,
      x_pnmn_id,
      x_batch_seq_num,
      x_loan_id,
      x_loan_number,
      x_b_ssn,
      x_b_first_name,
      x_b_last_name,
      x_b_middle_name,
      x_status,
      x_mode
    );
Line: 654

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : viramali
  ||  Created On : 10-MAY-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: 673

    DELETE FROM igf_sl_dl_manifest_all
    WHERE rowid = x_rowid;
Line: 680

  END delete_row;