DBA Data[Home] [Help]

APPS.IGS_FI_BALANCES_PKG SQL Statements

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

Line: 21

    x_last_update_date                  IN     DATE        ,
    x_last_updated_by                   IN     NUMBER      ,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By : BDEVARAK
  ||  Created On : 26-APR-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)
  || pathipat        30-SEP-2002     Obsoleted columns other_balance_id, other_balance_rule_id,
  ||                                 installment_balance_id and installment_balance_rule_id for
  ||                                 Enh Bug # 2562745
  || smvk            17-Sep-2002     Obsoleted column subaccount_id, as part of Bug # 2564643
  || agairola        30-May-2002     For bug 2364505, obsoleted column
                                     standard_balance_rule_id
  */

    CURSOR cur_old_ref_values IS
      SELECT   *
      FROM     IGS_FI_BALANCES
      WHERE    rowid = x_rowid;
Line: 54

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 82

    new_references.last_updated_by                   := x_last_updated_by;
Line: 83

    new_references.last_update_login                 := x_last_update_login;
Line: 96

  || pathipat        14-Feb-2003     Enh 2747325 - Removed FOR UPDATE NOWAIT clause
  ||                                 in cursor cur_rowid
  || pathipat        30-SEP-2002     Obsoleted columns other_balance_rule_id and
  ||                                 installment_balance_rule_id for Enh Bug # 2562745
  || smvk            17-Sep-2002     Obsoleted column subaccount_id, as part of Bug # 2564643
  || agairola        30-May-2002     For bug 2364505, obsoleted column
                                     standard_balance_rule_id
  */

   CURSOR cur_rowid IS
      SELECT   rowid
      FROM     hz_parties
      WHERE    party_id = new_references.party_id;
Line: 124

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

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

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

      SELECT   rowid
      FROM     igs_fi_balances
      WHERE    balance_id = x_balance_id
      FOR UPDATE NOWAIT;
Line: 225

    SELECT rowid
    FROM   IGS_FI_BALANCES
    WHERE  party_id = new_references.party_id
    AND    TRUNC(balance_date)  = TRUNC(new_references.balance_date)
    AND    ((l_rowid IS NULL) OR (rowid <> l_rowid))
    FOR UPDATE NOWAIT;
Line: 274

PROCEDURE afterrowupdate AS
/*
  ||  Created By : PATHIPAT
  ||  Created On : 30-SEP-2002
  ||  Purpose : Maintaining history for the balances table
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  */
l_v_balance_type      igs_fi_balances_hst.balance_type%TYPE;
Line: 323

       IGS_FI_BALANCES_HST_PKG.INSERT_ROW (  x_rowid           => l_rowid,
                                             x_balance_hist_id => l_balance_hist_id,
                                             x_balance_id      => old_references.balance_id,
                                             x_balance_type    => l_v_balance_type,
                                             x_balance_amount  => l_v_balance_amount,
                                             x_balance_rule_id => l_v_balance_rule_id,
	                                     x_mode            => 'R'
                                           );
Line: 333

 END afterrowupdate;
Line: 349

    x_last_update_date                  IN     DATE        ,
    x_last_updated_by                   IN     NUMBER      ,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By : BDEVARAK
  ||  Created On : 26-APR-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)
  ||  pathipat       21-OCT-2002     Bug:2562745 - Added check_child_existance() calls before
  ||                                 delete operation.
  ||  pathipat       30-SEP-2002     Obsoleted columns other_balance_id, other_balance_rule_id,
  ||                                 installment_balance_id and installment_balance_rule_id for
  ||                                 Enh Bug # 2562745
  ||  smvk           17-Sep-2002     Obsoleted column subaccount_id, as part of Bug # 2564643
  || agairola        30-May-2002     For bug 2364505, obsoleted column
  ||                                 standard_balance_rule_id
  ||  SCHODAVA        8-OCT-2001      Enh # 2030448 (SFCR010)
  */
  BEGIN

    set_column_values (
      p_action,
      x_rowid,
      x_balance_id,
      x_party_id,
      x_standard_balance,
      x_fee_balance,
      x_holds_balance,
      x_balance_date,
      x_fee_balance_rule_id,
      x_holds_balance_rule_id,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 392

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

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

    ELSIF (p_action = 'DELETE') THEN
      -- Call all the procedures related to Before Delete.
      check_child_existance;
Line: 411

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

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

    ELSIF (p_action = 'VALIDATE_DELETE') THEN
      -- Call all the procedures related to Before Delete.
      check_child_existance;
Line: 448

     IF (p_action = 'UPDATE') THEN
       afterrowupdate;
Line: 454

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_balance_id                        IN OUT NOCOPY NUMBER,
    x_party_id                          IN     NUMBER,
    x_standard_balance                  IN     NUMBER,
    x_fee_balance                       IN     NUMBER,
    x_holds_balance                     IN     NUMBER,
    x_balance_date                      IN     DATE,
    x_fee_balance_rule_id               IN     NUMBER,
    x_holds_balance_rule_id             IN     NUMBER,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : BDEVARAK
  ||  Created On : 26-APR-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)
  || pathipat        30-SEP-2002     Obsoleted columns other_balance_id, other_balance_rule_id,
  ||                                 installment_balance_id and installment_balance_rule_id for
  ||                                 Enh Bug # 2562745
  || smvk            17-Sep-2002     Obsoleted column subaccount_id as a part of Bug # 2564643
  || agairola        30-May-2002     For bug 2364505, obsoleted column
                                     standard_balance_rule_id
  */
    CURSOR c IS
      SELECT   rowid
      FROM     igs_fi_balances
      WHERE    balance_id = x_balance_id;
Line: 486

    x_last_update_date           DATE;
Line: 487

    x_last_updated_by            NUMBER;
Line: 488

    x_last_update_login          NUMBER;
Line: 492

    x_program_update_date        DATE;
Line: 496

    x_last_update_date := SYSDATE;
Line: 498

      x_last_updated_by := 1;
Line: 499

      x_last_update_login := 0;
Line: 501

      x_last_updated_by := fnd_global.user_id;
Line: 502

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

      x_last_update_login := fnd_global.login_id;
Line: 506

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

        x_program_update_date    := NULL;
Line: 519

        x_program_update_date    := SYSDATE;
Line: 527

    SELECT    igs_fi_balances_s.NEXTVAL
    INTO      x_balance_id
    FROM      dual;
Line: 532

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_balance_id                        => x_balance_id,
      x_party_id                          => x_party_id,
      x_standard_balance                  => x_standard_balance,
      x_fee_balance                       => x_fee_balance,
      x_holds_balance                     => x_holds_balance,
      x_balance_date                      => x_balance_date,
      x_fee_balance_rule_id               => x_fee_balance_rule_id,
      x_holds_balance_rule_id             => x_holds_balance_rule_id,
      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: 549

    INSERT INTO igs_fi_balances (
      balance_id,
      party_id,
      standard_balance,
      fee_balance,
      holds_balance,
      balance_date,
      fee_balance_rule_id,
      holds_balance_rule_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.balance_id,
      new_references.party_id,
      new_references.standard_balance,
      new_references.fee_balance,
      new_references.holds_balance,
      new_references.balance_date,
      new_references.fee_balance_rule_id,
      new_references.holds_balance_rule_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: 595

  END insert_row;
Line: 625

      SELECT
        party_id,
        standard_balance,
        fee_balance,
        holds_balance,
        balance_date,
        fee_balance_rule_id,
        holds_balance_rule_id
      FROM  igs_fi_balances
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 644

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_balance_id                        IN     NUMBER,
    x_party_id                          IN     NUMBER,
    x_standard_balance                  IN     NUMBER,
    x_fee_balance                       IN     NUMBER,
    x_holds_balance                     IN     NUMBER,
    x_balance_date                      IN     DATE,
    x_fee_balance_rule_id               IN     NUMBER,
    x_holds_balance_rule_id             IN     NUMBER,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : BDEVARAK
  ||  Created On : 26-APR-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)
  || pathipat        30-SEP-2002     Obsoleted columns other_balance_id, other_balance_rule_id,
  ||                                 installment_balance_id and installment_balance_rule_id for
  ||                                 Enh Bug # 2562745
  || smvk            17-Sep-2002     Obsoleted column subaccount_id, as part of Bug # 2564643
  || agairola        30-May-2002     For bug 2364505, obsoleted column
                                     standard_balance_rule_id
  */
    x_last_update_date           DATE ;
Line: 701

    x_last_updated_by            NUMBER;
Line: 702

    x_last_update_login          NUMBER;
Line: 706

    x_program_update_date        DATE;
Line: 710

    x_last_update_date := SYSDATE;
Line: 712

      x_last_updated_by := 1;
Line: 713

      x_last_update_login := 0;
Line: 715

      x_last_updated_by := fnd_global.user_id;
Line: 716

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

      x_last_update_login := fnd_global.login_id;
Line: 720

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_balance_id                        => x_balance_id,
      x_party_id                          => x_party_id,
      x_standard_balance                  => x_standard_balance,
      x_fee_balance                       => x_fee_balance,
      x_holds_balance                     => x_holds_balance,
      x_balance_date                      => x_balance_date,
      x_fee_balance_rule_id               => x_fee_balance_rule_id,
      x_holds_balance_rule_id             => x_holds_balance_rule_id,
      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: 755

        x_program_update_date := old_references.program_update_date;
Line: 757

        x_program_update_date := SYSDATE;
Line: 761

    UPDATE igs_fi_balances
      SET
        party_id                          = new_references.party_id,
        standard_balance                  = new_references.standard_balance,
        fee_balance                       = new_references.fee_balance,
        holds_balance                     = new_references.holds_balance,
        balance_date                      = new_references.balance_date,
        fee_balance_rule_id               = new_references.fee_balance_rule_id,
        holds_balance_rule_id             = new_references.holds_balance_rule_id,
        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: 788

         p_action => 'UPDATE',
         x_rowid  => x_rowid );
Line: 791

  END update_row;
Line: 809

  ||  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)
  ||  pathipat        30-SEP-2002     Obsoleted columns other_balance_id, other_balance_rule_id,
  ||                                 installment_balance_id and installment_balance_rule_id for
  ||                                 Enh Bug # 2562745
  ||  smvk           17-Sep-2002     Obsoleted column subaccount_id, as part of Bug # 2564643
  || agairola        30-May-2002     For bug 2364505, obsoleted column
                                     standard_balance_rule_id
  */
    CURSOR c1 IS
      SELECT   rowid
      FROM     igs_fi_balances
      WHERE    balance_id = x_balance_id;
Line: 833

      insert_row (
        x_rowid,
        x_balance_id,
        x_party_id,
        x_standard_balance,
        x_fee_balance,
        x_holds_balance,
        x_balance_date,
        x_fee_balance_rule_id,
        x_holds_balance_rule_id,
        x_mode
      );
Line: 849

    update_row (
      x_rowid,
      x_balance_id,
      x_party_id,
      x_standard_balance,
      x_fee_balance,
      x_holds_balance,
      x_balance_date,
      x_fee_balance_rule_id,
      x_holds_balance_rule_id,
      x_mode
    );
Line: 865

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : BDEVARAK
  ||  Created On : 26-APR-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: 884

    DELETE FROM igs_fi_balances
    WHERE rowid = x_rowid;
Line: 891

  END delete_row;