DBA Data[Home] [Help]

APPS.IGS_FI_BAL_EX_F_TYPS_PKG SQL Statements

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

Line: 16

    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 : 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
  ||  smadathi        10-Apr-2002      Bug 2289191. Enabled_flag column reference removed.
  ||  (reverse chronological order - newest change first)
  */

    CURSOR cur_old_ref_values IS
      SELECT   *
      FROM     IGS_FI_BAL_EX_F_TYPS
      WHERE    rowid = x_rowid;
Line: 44

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 67

    new_references.last_updated_by                   := x_last_updated_by;
Line: 68

    new_references.last_update_login                 := x_last_update_login;
Line: 91

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

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

      SELECT   rowid
      FROM     igs_fi_bal_ex_f_typs
      WHERE    bal_exc_fee_type_id = x_bal_exc_fee_type_id
      FOR UPDATE NOWAIT;
Line: 180

      SELECT   rowid
      FROM     igs_fi_bal_ex_f_typs
      WHERE    balance_rule_id = x_balance_rule_id
      AND      fee_type  = x_fee_type
      AND      ((l_rowid IS NULL) OR (rowid <> l_rowid));
Line: 202

  PROCEDURE BeforeRowInsertUpdate(
                       p_inserting IN BOOLEAN DEFAULT FALSE,
		       p_updating IN BOOLEAN DEFAULT FALSE )
   AS
  /*
  ||  Created By : SMVK
  ||  Created On : 25-Feb-2002
  ||  Purpose : Checks Fee Type of System Fee Type is Refunds
  ||  It should not be included in exclusion rule for any Balance Type
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  */
     CURSOR c_sft(cp_fee_type IN igs_fi_fee_type.fee_type%TYPE) IS
   	SELECT s_fee_type
	FROM igs_fi_fee_type
   	WHERE fee_type = cp_fee_type ;
Line: 223

    IF(p_inserting OR p_updating) THEN
      OPEN c_sft(new_references.fee_type);
Line: 233

  END BeforeRowInsertUpdate ;
Line: 243

    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 : 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
  ||  smadathi        18-FEB-2003     Bug 2473845. Added logic to re initialize l_rowid to null.
  ||  smadathi        10-Apr-2002      Bug 2289191. Enabled_flag column reference removed.
  ||  smvk	      25-Feb-2002     Added call to before_row_insert_update
  ||				      as per Bug No.2144600
  ||  (reverse chronological order - newest change first)
  */
  BEGIN

    set_column_values (
      p_action,
      x_rowid,
      x_bal_exc_fee_type_id,
      x_balance_rule_id,
      x_fee_type,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 276

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

      BeforeRowInsertUpdate(p_inserting => TRUE);
Line: 289

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

      BeforeRowInsertUpdate(p_updating => TRUE);
Line: 294

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

      BeforeRowInsertUpdate(p_inserting => TRUE);
Line: 311

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_bal_exc_fee_type_id               IN OUT NOCOPY NUMBER,
    x_balance_rule_id                   IN     NUMBER,
    x_fee_type                          IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) 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
  ||  smadathi        10-Apr-2002      Bug 2289191. Enabled_flag column reference removed.
  ||  (reverse chronological order - newest change first)
  */
    CURSOR c IS
      SELECT   rowid
      FROM     igs_fi_bal_ex_f_typs
      WHERE    bal_exc_fee_type_id               = x_bal_exc_fee_type_id;
Line: 333

    x_last_update_date           DATE;
Line: 334

    x_last_updated_by            NUMBER;
Line: 335

    x_last_update_login          NUMBER;
Line: 339

    x_last_update_date := SYSDATE;
Line: 341

      x_last_updated_by := 1;
Line: 342

      x_last_update_login := 0;
Line: 344

      x_last_updated_by := fnd_global.user_id;
Line: 345

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

      x_last_update_login := fnd_global.login_id;
Line: 349

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

    SELECT    igs_fi_bal_ex_f_typs_s.NEXTVAL
    INTO      x_bal_exc_fee_type_id
    FROM      dual;
Line: 363

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_bal_exc_fee_type_id               => x_bal_exc_fee_type_id,
      x_balance_rule_id                   => x_balance_rule_id,
      x_fee_type                          => x_fee_type,
      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: 375

    INSERT INTO igs_fi_bal_ex_f_typs (
      bal_exc_fee_type_id,
      balance_rule_id,
      fee_type,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      new_references.bal_exc_fee_type_id,
      new_references.balance_rule_id,
      new_references.fee_type,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 403

  END insert_row;
Line: 423

      SELECT
        balance_rule_id,
        fee_type
      FROM  igs_fi_bal_ex_f_typs
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 437

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_bal_exc_fee_type_id               IN     NUMBER,
    x_balance_rule_id                   IN     NUMBER,
    x_fee_type                          IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) 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
  ||  smadathi        10-Apr-2002      Bug 2289191. Enabled_flag column reference removed.
  ||  (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_bal_exc_fee_type_id               => x_bal_exc_fee_type_id,
      x_balance_rule_id                   => x_balance_rule_id,
      x_fee_type                          => x_fee_type,
      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: 516

    UPDATE igs_fi_bal_ex_f_typs
      SET
        balance_rule_id                   = new_references.balance_rule_id,
        fee_type                          = new_references.fee_type,
        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: 529

  END update_row;
Line: 542

  ||  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        10-Apr-2002      Bug 2289191. Enabled_flag column reference removed.
  */
    CURSOR c1 IS
      SELECT   rowid
      FROM     igs_fi_bal_ex_f_typs
      WHERE    bal_exc_fee_type_id               = x_bal_exc_fee_type_id;
Line: 561

      insert_row (
        x_rowid,
        x_bal_exc_fee_type_id,
        x_balance_rule_id,
        x_fee_type,
        x_mode
      );
Line: 572

    update_row (
      x_rowid,
      x_bal_exc_fee_type_id,
      x_balance_rule_id,
      x_fee_type,
      x_mode
    );
Line: 583

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

    DELETE FROM igs_fi_bal_ex_f_typs
    WHERE rowid = x_rowid;
Line: 609

  END delete_row;