DBA Data[Home] [Help]

APPS.IGF_SE_PAYMENT_INT_PKG SQL Statements

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

Line: 19

 | that they were inserted by datamerge.                                 |
 |                                                                       |
 | The ADD_ROW routine will see whether a row exists by selecting        |
 | based on the primary key, and updates the row if it exists,           |
 | or inserts the row if it doesn't already exist.                       |
 |                                                                       |
 | This module is called by AutoInstall (afplss.drv) on install and      |
 | upgrade.  The WHENEVER SQLERROR and EXIT (at bottom) are required.    |
 |                                                                       |
 | HISTORY                                                               |
 | veramach        July 2004    Obsoleted ld_cal_type,ld_sequence_number,|
 |                              hrs_worked                               |
 *=======================================================================*/

  l_rowid VARCHAR2(25);
Line: 53

    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 : ssawhney
  ||  Created On : 31-DEC-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_SE_PAYMENT_INT
      WHERE    rowid = x_rowid;
Line: 80

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 111

    new_references.last_updated_by                   := x_last_updated_by;
Line: 112

    new_references.last_update_login                 := x_last_update_login;
Line: 186

      SELECT   rowid
      FROM     igf_se_payment_int
      WHERE    transaction_id = x_transaction_id
      FOR UPDATE NOWAIT;
Line: 222

      SELECT   rowid
      FROM     igf_se_payment_int
      WHERE    payroll_id = x_payroll_id
      AND      auth_id = x_auth_id
      AND      ((l_rowid IS NULL) OR (rowid <> l_rowid));
Line: 261

    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 : ssawhney
  ||  Created On : 31-DEC-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_transaction_id,
      x_batch_id,
      x_payroll_id,
      x_payroll_date,
      x_auth_id,
      x_person_id,
      x_fund_id,
      x_paid_amount,
      x_org_unit_cd,
      x_status,
      x_error_code,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 298

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

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

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

    ELSIF (p_action = 'VALIDATE_UPDATE') THEN
      check_uniqueness;
Line: 334

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_transaction_id                    IN OUT NOCOPY NUMBER,
    x_batch_id                          IN     NUMBER,
    x_payroll_id                        IN     NUMBER,
    x_payroll_date                      IN     DATE,
    x_auth_id                           IN     NUMBER,
    x_person_id                         IN     NUMBER,
    x_fund_id                           IN     NUMBER,
    x_paid_amount                       IN     NUMBER,
    x_org_unit_cd                       IN     VARCHAR2,
    x_status                            IN     VARCHAR2,
    x_error_code                        IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : ssawhney
  ||  Created On : 31-DEC-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_se_payment_int
      WHERE    transaction_id                    = x_transaction_id;
Line: 363

    x_last_update_date           DATE;
Line: 364

    x_last_updated_by            NUMBER;
Line: 365

    x_last_update_login          NUMBER;
Line: 369

    x_last_update_date := SYSDATE;
Line: 371

      x_last_updated_by := 1;
Line: 372

      x_last_update_login := 0;
Line: 374

      x_last_updated_by := fnd_global.user_id;
Line: 375

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

      x_last_update_login := fnd_global.login_id;
Line: 379

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

    SELECT    igf_se_payment_int_s.NEXTVAL
    INTO      x_transaction_id
    FROM      dual;
Line: 393

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_transaction_id                    => x_transaction_id,
      x_batch_id                          => x_batch_id,
      x_payroll_id                        => x_payroll_id,
      x_payroll_date                      => x_payroll_date,
      x_auth_id                           => x_auth_id,
      x_person_id                         => x_person_id,
      x_fund_id                           => x_fund_id,
      x_paid_amount                       => x_paid_amount,
      x_org_unit_cd                       => x_org_unit_cd,
      x_status                            => x_status,
      x_error_code                        => x_error_code,
      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: 413

    INSERT INTO igf_se_payment_int (
      transaction_id,
      batch_id,
      payroll_id,
      payroll_date,
      auth_id,
      person_id,
      fund_id,
      paid_amount,
      org_unit_cd,
      status,
      error_code,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      new_references.transaction_id,
      new_references.batch_id,
      new_references.payroll_id,
      new_references.payroll_date,
      new_references.auth_id,
      new_references.person_id,
      new_references.fund_id,
      new_references.paid_amount,
      new_references.org_unit_cd,
      new_references.status,
      new_references.error_code,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 457

  END insert_row;
Line: 484

      SELECT
        batch_id,
        payroll_id,
        payroll_date,
        auth_id,
        person_id,
        fund_id,
        paid_amount,
        org_unit_cd,
        status,
        error_code
      FROM  igf_se_payment_int
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 506

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_transaction_id                    IN     NUMBER,
    x_batch_id                          IN     NUMBER,
    x_payroll_id                        IN     NUMBER,
    x_payroll_date                      IN     DATE,
    x_auth_id                           IN     NUMBER,
    x_person_id                         IN     NUMBER,
    x_fund_id                           IN     NUMBER,
    x_paid_amount                       IN     NUMBER,
    x_org_unit_cd                       IN     VARCHAR2,
    x_status                            IN     VARCHAR2,
    x_error_code                        IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : ssawhney
  ||  Created On : 31-DEC-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: 563

    x_last_updated_by            NUMBER;
Line: 564

    x_last_update_login          NUMBER;
Line: 568

    x_last_update_date := SYSDATE;
Line: 570

      x_last_updated_by := 1;
Line: 571

      x_last_update_login := 0;
Line: 573

      x_last_updated_by := fnd_global.user_id;
Line: 574

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

      x_last_update_login := fnd_global.login_id;
Line: 578

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_transaction_id                    => x_transaction_id,
      x_batch_id                          => x_batch_id,
      x_payroll_id                        => x_payroll_id,
      x_payroll_date                      => x_payroll_date,
      x_auth_id                           => x_auth_id,
      x_person_id                         => x_person_id,
      x_fund_id                           => x_fund_id,
      x_paid_amount                       => x_paid_amount,
      x_org_unit_cd                       => x_org_unit_cd,
      x_status                            => x_status,
      x_error_code                        => x_error_code,
      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: 608

    UPDATE igf_se_payment_int
      SET
        batch_id                          = new_references.batch_id,
        payroll_id                        = new_references.payroll_id,
        payroll_date                      = new_references.payroll_date,
        auth_id                           = new_references.auth_id,
        person_id                         = new_references.person_id,
        fund_id                           = new_references.fund_id,
        paid_amount                       = new_references.paid_amount,
        org_unit_cd                       = new_references.org_unit_cd,
        status                            = new_references.status,
        error_code                        = new_references.error_code,
        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: 629

  END update_row;
Line: 650

  ||  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_se_payment_int
      WHERE    transaction_id                    = x_transaction_id;
Line: 668

      insert_row (
        x_rowid,
        x_transaction_id,
        x_batch_id,
        x_payroll_id,
        x_payroll_date,
        x_auth_id,
        x_person_id,
        x_fund_id,
        x_paid_amount,
        x_org_unit_cd,
        x_status,
        x_error_code,
        x_mode
      );
Line: 687

    update_row (
      x_rowid,
      x_transaction_id,
      x_batch_id,
      x_payroll_id,
      x_payroll_date,
      x_auth_id,
      x_person_id,
      x_fund_id,
      x_paid_amount,
      x_org_unit_cd,
      x_status,
      x_error_code,
      x_mode
    );
Line: 706

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : ssawhney
  ||  Created On : 31-DEC-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: 725

    DELETE FROM igf_se_payment_int
    WHERE rowid = x_rowid;
Line: 732

  END delete_row;