DBA Data[Home] [Help]

APPS.IGS_PE_FUND_SOURCE_PKG SQL Statements

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

Line: 21

    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 : cdcruz
  ||  Created On : 21-SEP-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     igs_pe_fund_source
      WHERE    rowid = x_rowid;
Line: 48

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 76

    new_references.last_updated_by                   := x_last_updated_by;
Line: 77

    new_references.last_update_login                 := x_last_update_login;
Line: 100

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

      SELECT   rowid
      FROM     igs_pe_fund_source
      WHERE    fund_source_id = x_fund_source_id
      FOR UPDATE NOWAIT;
Line: 156

      SELECT   rowid
      FROM     igs_pe_fund_source
      WHERE   ((person_id = x_party_id));
Line: 191

    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 : cdcruz
  ||  Created On : 21-SEP-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_fund_source_id,
      x_person_id,
      x_fund_source_code,
      x_name,
      x_amount,
      x_relationship_code,
      x_document_ind,
      x_notes,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 225

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

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

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_fund_source_id                    IN OUT NOCOPY NUMBER,
    x_person_id                         IN     NUMBER,
    x_fund_source_code                  IN     VARCHAR2,
    x_name                              IN     VARCHAR2,
    x_amount                            IN     NUMBER,
    x_relationship_code                 IN     VARCHAR2,
    x_document_ind                      IN     VARCHAR2,
    x_notes                             IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : cdcruz
  ||  Created On : 21-SEP-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     igs_pe_fund_source
      WHERE    fund_source_id                    = x_fund_source_id;
Line: 280

    x_last_update_date           DATE;
Line: 281

    x_last_updated_by            NUMBER;
Line: 282

    x_last_update_login          NUMBER;
Line: 286

    x_last_update_date := SYSDATE;
Line: 288

      x_last_updated_by := 1;
Line: 289

      x_last_update_login := 0;
Line: 291

      x_last_updated_by := fnd_global.user_id;
Line: 292

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

      x_last_update_login := fnd_global.login_id;
Line: 296

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

    SELECT    igs_pe_fund_source_s.NEXTVAL
    INTO      x_fund_source_id
    FROM      dual;
Line: 310

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_fund_source_id                    => x_fund_source_id,
      x_person_id                         => x_person_id,
      x_fund_source_code                  => x_fund_source_code,
      x_name                              => x_name,
      x_amount                            => x_amount,
      x_relationship_code                 => x_relationship_code,
      x_document_ind                      => x_document_ind,
      x_notes                             => x_notes,
      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: 330

 INSERT INTO igs_pe_fund_source (
      fund_source_id,
      person_id,
      fund_source_code,
      name,
      amount,
      relationship_code,
      document_ind,
      notes,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      new_references.fund_source_id,
      new_references.person_id,
      new_references.fund_source_code,
      new_references.name,
      new_references.amount,
      new_references.relationship_code,
      new_references.document_ind,
      new_references.notes,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 385

 END insert_row;
Line: 409

      SELECT
        person_id,
        fund_source_code,
        name,
        amount,
        relationship_code,
        document_ind,
        notes
      FROM  igs_pe_fund_source
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 428

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_fund_source_id                    IN     NUMBER,
    x_person_id                         IN     NUMBER,
    x_fund_source_code                  IN     VARCHAR2,
    x_name                              IN     VARCHAR2,
    x_amount                            IN     NUMBER,
    x_relationship_code                 IN     VARCHAR2,
    x_document_ind                      IN     VARCHAR2,
    x_notes                             IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : cdcruz
  ||  Created On : 21-SEP-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: 479

    x_last_updated_by            NUMBER;
Line: 480

    x_last_update_login          NUMBER;
Line: 484

    x_last_update_date := SYSDATE;
Line: 486

      x_last_updated_by := 1;
Line: 487

      x_last_update_login := 0;
Line: 489

      x_last_updated_by := fnd_global.user_id;
Line: 490

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

      x_last_update_login := fnd_global.login_id;
Line: 494

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_fund_source_id                    => x_fund_source_id,
      x_person_id                         => x_person_id,
      x_fund_source_code                  => x_fund_source_code,
      x_name                              => x_name,
      x_amount                            => x_amount,
      x_relationship_code                 => x_relationship_code,
      x_document_ind                      => x_document_ind,
      x_notes                             => x_notes,
      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: 524

 UPDATE igs_pe_fund_source
      SET
        person_id                         = new_references.person_id,
        fund_source_code                  = new_references.fund_source_code,
        name                              = new_references.name,
        amount                            = new_references.amount,
        relationship_code                 = new_references.relationship_code,
        document_ind                      = new_references.document_ind,
        notes                             = new_references.notes,
        last_update_date                  = x_last_update_date,
        last_updated_by                   = x_last_updated_by,
        last_update_login                 = x_last_update_login
      WHERE rowid = x_rowid;
Line: 562

 END update_row;
Line: 580

  ||  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     igs_pe_fund_source
      WHERE    fund_source_id                    = x_fund_source_id;
Line: 598

      insert_row (
        x_rowid,
        x_fund_source_id,
        x_person_id,
        x_fund_source_code,
        x_name,
        x_amount,
        x_relationship_code,
        x_document_ind,
        x_notes,
        x_mode
      );
Line: 614

    update_row (
      x_rowid,
      x_fund_source_id,
      x_person_id,
      x_fund_source_code,
      x_name,
      x_amount,
      x_relationship_code,
      x_document_ind,
      x_notes,
      x_mode
    );
Line: 630

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2,
  x_mode IN VARCHAR2
  ) AS
  /*
  ||  Created By : cdcruz
  ||  Created On : 21-SEP-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: 653

 DELETE FROM igs_pe_fund_source
    WHERE rowid = x_rowid;
Line: 667

  END delete_row;