DBA Data[Home] [Help]

APPS.IGS_FI_BALANCE_RULES_PKG SQL Statements

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

Line: 17

    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)
  ||  smadathi   30-sep-2002   Bug 2562745. All references to columns effective_start_date,effective_end_date,
  ||                           exclude_txn_date_low,exclude_txn_date_high,exclude_eff_date_low,exclude_eff_date_high
  ||                           removed. Column last_conversion_date added newly
  ||  vvutukur   24-Sep-2002   Enh#2564643.Removed DEFAULT clause from parameters as gscc fix.
  */

    CURSOR cur_old_ref_values IS
      SELECT   *
      FROM     IGS_FI_BALANCE_RULES
      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: 63

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

    new_references.last_update_date                  := x_last_update_date;
Line: 72

    new_references.last_updated_by                   := x_last_updated_by;
Line: 73

    new_references.last_update_login                 := x_last_update_login;
Line: 131

            Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
Line: 149

  ||                             Removed FOR UPDATE NOWAIT clause
  ||  (reverse chronological order - newest change first)
  */

    CURSOR cur_rowid IS
      SELECT   rowid
      FROM     igs_fi_balance_rules
      WHERE    balance_rule_id = x_balance_rule_id ;
Line: 184

    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
  ||  pathipat       14-Feb-2003      Enh 2747325 - Locking Issues Build
  ||                                  Removed code for p_action = DELETE and VALIDATE_DELETE
  ||  vvutukur       03-may-2002     called check_constrainsts for bug:2329042.
  ||  (reverse chronological order - newest change first)
  ||  smadathi   30-sep-2002   Bug 2562745. All references to columns effective_start_date,effective_end_date,
  ||                           exclude_txn_date_low,exclude_txn_date_high,exclude_eff_date_low,exclude_eff_date_high
  ||                           removed. Column last_conversion_date added newly
  ||  vvutukur   24-Sep-2002   Enh#2564643.Removed DEFAULT clause from parameters as gscc fix.
  */
  BEGIN

    set_column_values (
      p_action,
      x_rowid,
      x_balance_rule_id,
      x_balance_name,
      x_version_number,
      x_last_conversion_date,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 221

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

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

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_balance_rule_id                   IN OUT NOCOPY NUMBER,
    x_balance_name                      IN     VARCHAR2,
    x_version_number                    IN     NUMBER,
    x_last_conversion_date              IN     DATE,
    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)
  ||  smadathi   30-sep-2002   Bug 2562745. All references to columns effective_start_date,effective_end_date,
  ||                           exclude_txn_date_low,exclude_txn_date_high,exclude_eff_date_low,exclude_eff_date_high
  ||                           removed. Column last_conversion_date added newly
  ||  vvutukur   24-Sep-2002   Enh#2564643.Removed DEFAULT clause from parameters as gscc fix.
  */
    CURSOR c IS
      SELECT   rowid
      FROM     igs_fi_balance_rules
      WHERE    balance_rule_id                   = x_balance_rule_id;
Line: 279

    x_last_update_date           DATE;
Line: 280

    x_last_updated_by            NUMBER;
Line: 281

    x_last_update_login          NUMBER;
Line: 285

    x_last_update_date := SYSDATE;
Line: 287

      x_last_updated_by := 1;
Line: 288

      x_last_update_login := 0;
Line: 290

      x_last_updated_by := fnd_global.user_id;
Line: 291

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

      x_last_update_login := fnd_global.login_id;
Line: 295

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

    SELECT    igs_fi_balance_rules_s.NEXTVAL
    INTO      x_balance_rule_id
    FROM      dual;
Line: 309

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_balance_rule_id                   => x_balance_rule_id,
      x_balance_name                      => x_balance_name,
      x_version_number                    => x_version_number,
      x_last_conversion_date              => x_last_conversion_date,
      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: 322

    INSERT INTO igs_fi_balance_rules (
      balance_rule_id,
      balance_name,
      version_number,
      last_conversion_date,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      new_references.balance_rule_id,
      new_references.balance_name,
      new_references.version_number,
      new_references.last_conversion_date,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 352

  END insert_row;
Line: 375

      SELECT
            balance_name,
            version_number,
            last_conversion_date
      FROM  igs_fi_balance_rules
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 390

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_balance_rule_id                   IN     NUMBER,
    x_balance_name                      IN     VARCHAR2,
    x_version_number                    IN     NUMBER,
    x_last_conversion_date              IN     DATE,
    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)
  ||  smadathi   30-sep-2002   Bug 2562745. All references to columns effective_start_date,effective_end_date,
  ||                           exclude_txn_date_low,exclude_txn_date_high,exclude_eff_date_low,exclude_eff_date_high
  ||                           removed. Column last_conversion_date added newly
  ||  vvutukur   24-Sep-2002   Enh#2564643.Removed DEFAULT clause from parameters as gscc fix.
  */
    x_last_update_date           DATE ;
Line: 437

    x_last_updated_by            NUMBER;
Line: 438

    x_last_update_login          NUMBER;
Line: 442

    x_last_update_date := SYSDATE;
Line: 444

      x_last_updated_by := 1;
Line: 445

      x_last_update_login := 0;
Line: 447

      x_last_updated_by := fnd_global.user_id;
Line: 448

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

      x_last_update_login := fnd_global.login_id;
Line: 452

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_balance_rule_id                   => x_balance_rule_id,
      x_balance_name                      => x_balance_name,
      x_version_number                    => x_version_number,
      x_last_conversion_date              => x_last_conversion_date,
      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: 475

    UPDATE igs_fi_balance_rules
      SET
        balance_name                      = new_references.balance_name,
        version_number                    = new_references.version_number,
	last_conversion_date              = new_references.last_conversion_date,
        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: 489

  END update_row;
Line: 503

  ||  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)
  ||  smadathi   30-sep-2002   Bug 2562745. All references to columns effective_start_date,effective_end_date,
  ||                           exclude_txn_date_low,exclude_txn_date_high,exclude_eff_date_low,exclude_eff_date_high
  ||                           removed. Column last_conversion_date added newly
  ||  vvutukur   24-Sep-2002   Enh#2564643.Removed DEFAULT clause from parameters as gscc fix.
  */
    CURSOR c1 IS
      SELECT   rowid
      FROM     igs_fi_balance_rules
      WHERE    balance_rule_id                   = x_balance_rule_id;
Line: 525

      insert_row (
        x_rowid,
        x_balance_rule_id,
        x_balance_name,
        x_version_number,
	x_last_conversion_date,
        x_mode
      );
Line: 537

    update_row (
      x_rowid,
      x_balance_rule_id,
      x_balance_name,
      x_version_number,
      x_last_conversion_date,
      x_mode
    );