DBA Data[Home] [Help]

APPS.IGF_SE_PAYMENT_PKG SQL Statements

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

Line: 18

 | 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                                                               |
 | who        when           what                                        |
 | veramach   July 2004      FA 151 HR Integration                       |
 |                           Obsoleted ld_cal_type,ld_sequence_number,   |
 |                           hrs_worked                                  |
 |                           Added check_constraints                     |
 | brajendr   01-Jul-2002    Bug # 2415194                               |
 |                           Modified the Message IGF_SE_ERR_PAY_ADJ to  |
 |                           have the extra token to give more clarity   |
 |                                                                       |
 *=======================================================================*/

  l_rowid VARCHAR2(25);
Line: 57

    x_last_update_date                  IN     DATE    ,
    x_last_updated_by                   IN     NUMBER  ,
    x_last_update_login                 IN     NUMBER
  ) 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
      WHERE    rowid = x_rowid;
Line: 84

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 114

    new_references.last_updated_by                   := x_last_updated_by;
Line: 115

    new_references.last_update_login                 := x_last_update_login;
Line: 135

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

      SELECT   rowid
      FROM     igf_se_payment
      WHERE    transaction_id = x_transaction_id
      FOR UPDATE NOWAIT;
Line: 199

      SELECT   rowid
      FROM     igf_se_payment
      WHERE   ((person_id = x_party_id));
Line: 239

    SELECT 'x'
      FROM igf_se_auth
     WHERE auth_id   = cp_auth_id
       AND person_id = cp_person_id
       AND flag      = 'A';
Line: 251

    SELECT auth.fund_id
      FROM igf_se_auth auth
     WHERE auth_id   = cp_auth_id
       AND person_id = cp_person_id;
Line: 262

    SELECT 'x'
      FROM igf_lookups_view
     WHERE lookup_type = cp_lookup_type
       AND lookup_code = cp_lookup_code
       AND enabled_flag = 'Y';
Line: 272

    SELECT party_number
      FROM hz_parties
     WHERE party_id = cp_person_id;
Line: 366

    x_last_update_date                  IN     DATE    ,
    x_last_updated_by                   IN     NUMBER  ,
    x_last_update_login                 IN     NUMBER
  ) 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_payroll_id,
      x_payroll_date,
      x_auth_id,
      x_person_id,
      x_fund_id,
      x_paid_amount,
      x_org_unit_cd,
      x_source,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 402

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

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

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_transaction_id                    IN OUT NOCOPY 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_source                            IN     VARCHAR2,
    x_mode                              IN     VARCHAR2
  ) 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
      WHERE    transaction_id                    = x_transaction_id;
Line: 463

      SELECT rowid , spi.*
      FROM   igf_se_payment_int spi
      WHERE  spi.auth_id =x_auth_id AND
             spi.payroll_id =x_payroll_id AND
	     spi.status NOT IN ('DONE','ERROR');
Line: 472

    SELECT meaning
      FROM igf_lookups_view
     WHERE lookup_type = 'IGF_STUD_EMP_ERROR'
       AND lookup_code = c_error_cd;
Line: 480

    x_last_update_date           DATE;
Line: 481

    x_last_updated_by            NUMBER;
Line: 482

    x_last_update_login          NUMBER;
Line: 486

    x_program_update_date        DATE;
Line: 494

    x_last_update_date := SYSDATE;
Line: 496

      x_last_updated_by := 1;
Line: 497

      x_last_update_login := 0;
Line: 499

      x_last_updated_by := fnd_global.user_id;
Line: 500

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

      x_last_update_login := fnd_global.login_id;
Line: 504

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

        x_program_update_date    := NULL;
Line: 517

        x_program_update_date    := SYSDATE;
Line: 525

    SELECT    igf_se_payment_s.NEXTVAL
    INTO      x_transaction_id
    FROM      dual;
Line: 531

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_transaction_id                    => x_transaction_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_source                            => x_source,
      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: 552

    INSERT INTO igf_se_payment (
      transaction_id,
      payroll_id,
      payroll_date,
      auth_id,
      person_id,
      fund_id,
      paid_amount,
      org_unit_cd,
      source,
      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.transaction_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.source,
      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: 625

              igf_se_payment_int_pkg.update_row (
                 x_rowid                            => payment_int_rec.rowid,
                 x_transaction_id                    => payment_int_rec.transaction_id,
                 x_batch_id                          => payment_int_rec.batch_id,
                 x_payroll_id                        => payment_int_rec.payroll_id,
                 x_payroll_date                      => payment_int_rec.payroll_date,
                 x_auth_id                           => payment_int_rec.auth_id,
                 x_person_id                         => payment_int_rec.person_id,
                 x_fund_id                           => payment_int_rec.fund_id,
                 x_paid_amount                       => payment_int_rec.paid_amount,
                 x_org_unit_cd                       => payment_int_rec.org_unit_cd,
                 x_status                            => l_status,
                 x_error_code			       => l_error
                 );
Line: 676

           igf_se_payment_int_pkg.update_row (
             x_rowid                            => payment_int_rec.rowid,
             x_transaction_id                    => payment_int_rec.transaction_id,
             x_batch_id                          => payment_int_rec.batch_id,
             x_payroll_id                        => payment_int_rec.payroll_id,
             x_payroll_date                      => payment_int_rec.payroll_date,
             x_auth_id                           => payment_int_rec.auth_id,
             x_person_id                         => payment_int_rec.person_id,
             x_fund_id                           => payment_int_rec.fund_id,
             x_paid_amount                       => payment_int_rec.paid_amount,
             x_org_unit_cd                       => payment_int_rec.org_unit_cd,
             x_status                            => l_status,
             x_error_code			       => l_error
             );
Line: 721

  END insert_row;
Line: 746

      SELECT
        payroll_id,
        payroll_date,
        auth_id,
        person_id,
        fund_id,
        paid_amount,
        org_unit_cd,
        source
      FROM  igf_se_payment
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 766

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_transaction_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_source                            IN     VARCHAR2,
    x_mode                              IN     VARCHAR2
  ) 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)
  */

    CURSOR c_get_se_errors(
                           c_error_cd  igf_se_payment_int.error_code%TYPE
                          ) IS
    SELECT meaning
      FROM igf_lookups_view
     WHERE lookup_type = 'IGF_STUD_EMP_ERROR'
       AND lookup_code = c_error_cd;
Line: 827

    x_last_update_date           DATE ;
Line: 828

    x_last_updated_by            NUMBER;
Line: 829

    x_last_update_login          NUMBER;
Line: 833

    x_program_update_date        DATE;
Line: 840

      SELECT rowid , spi.*
      FROM   igf_se_payment_int spi
      WHERE  spi.auth_id =x_auth_id AND
             spi.payroll_id =x_payroll_id AND
	     spi.status NOT IN ('DONE','ERROR');
Line: 851

    x_last_update_date := SYSDATE;
Line: 853

      x_last_updated_by := 1;
Line: 854

      x_last_update_login := 0;
Line: 856

      x_last_updated_by := fnd_global.user_id;
Line: 857

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

      x_last_update_login := fnd_global.login_id;
Line: 861

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_transaction_id                    => x_transaction_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_source                            => x_source,
      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: 897

        x_program_update_date := old_references.program_update_date;
Line: 899

        x_program_update_date := SYSDATE;
Line: 907

    UPDATE igf_se_payment
      SET
        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,
        source                            = new_references.source,
        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: 950

             igf_se_payment_int_pkg.update_row(
                                               x_rowid          => payment_int_rec.rowid,
                                               x_transaction_id => payment_int_rec.transaction_id,
                                               x_batch_id       => payment_int_rec.batch_id,
                                               x_payroll_id     => payment_int_rec.payroll_id,
                                               x_payroll_date   => payment_int_rec.payroll_date,
                                               x_auth_id        => payment_int_rec.auth_id,
                                               x_person_id      => payment_int_rec.person_id,
                                               x_fund_id        => payment_int_rec.fund_id,
                                               x_paid_amount    => payment_int_rec.paid_amount,
                                               x_org_unit_cd    => payment_int_rec.org_unit_cd,
                                               x_status         => l_status,
                                               x_error_code			=> l_error
                                              );
Line: 999

             igf_se_payment_int_pkg.update_row(
                                               x_rowid          => payment_int_rec.rowid,
                                               x_transaction_id => payment_int_rec.transaction_id,
                                               x_batch_id       => payment_int_rec.batch_id,
                                               x_payroll_id     => payment_int_rec.payroll_id,
                                               x_payroll_date   => payment_int_rec.payroll_date,
                                               x_auth_id        => payment_int_rec.auth_id,
                                               x_person_id      => payment_int_rec.person_id,
                                               x_fund_id        => payment_int_rec.fund_id,
                                               x_paid_amount    => payment_int_rec.paid_amount,
                                               x_org_unit_cd    => payment_int_rec.org_unit_cd,
                                               x_status         => l_status,
                                               x_error_code			=> l_error
                                              );
Line: 1041

  END update_row;
Line: 1060

  ||  Purpose : Adds a row if there is no existing row, otherwise updates existing row in the table.
  ||  Known limitations, enhancements or remarks : AVOID USING THIS. DUE TO SPECIFIC LOGIC OF INSERT/UPDATE
  ||      FOR THIS TABLE.
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  */
    CURSOR c1 IS
      SELECT   rowid
      FROM     igf_se_payment
      WHERE    transaction_id                    = x_transaction_id;
Line: 1079

      insert_row (
        x_rowid,
        x_transaction_id,
        x_payroll_id,
        x_payroll_date,
        x_auth_id,
        x_person_id,
        x_fund_id,
        x_paid_amount,
        x_org_unit_cd,
        x_source,
        x_mode
      );
Line: 1096

    update_row (
      x_rowid,
      x_transaction_id,
      x_payroll_id,
      x_payroll_date,
      x_auth_id,
      x_person_id,
      x_fund_id,
      x_paid_amount,
      x_org_unit_cd,
      x_source,
      x_mode
    );
Line: 1113

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

    DELETE FROM igf_se_payment
    WHERE rowid = x_rowid;
Line: 1139

  END delete_row;