DBA Data[Home] [Help]

APPS.IGS_FI_SUB_ER_RT_PKG SQL Statements

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

Line: 15

    x_logical_delete_date               IN     DATE,
    x_creation_date                     IN     DATE,
    x_created_by                        IN     NUMBER,
    x_last_update_date                  IN     DATE,
    x_last_updated_by                   IN     NUMBER,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 25-JUN-2005
  ||  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     igs_fi_sub_er_rt
      WHERE    rowid = x_rowid;
Line: 45

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

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

    new_references.logical_delete_date               := x_logical_delete_date;
Line: 61

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

    new_references.last_update_date                  := x_last_update_date;
Line: 70

    new_references.last_updated_by                   := x_last_updated_by;
Line: 71

    new_references.last_update_login                 := x_last_update_login;
Line: 120

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

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

      SELECT   rowid
      FROM     igs_fi_sub_er_rt
      WHERE    sub_err_id = x_sub_err_id
      FOR UPDATE NOWAIT;
Line: 189

      SELECT   rowid
      FROM     igs_fi_sub_er_rt
      WHERE    sub_er_id = x_sub_er_id
      AND      far_id = x_far_id
      AND      create_date = x_create_date
      AND      ((l_rowid IS NULL) OR (rowid <> l_rowid));
Line: 225

      SELECT   rowid
      FROM     igs_fi_sub_er_rt
      WHERE   ((far_id = x_far_id));
Line: 254

    x_logical_delete_date               IN     DATE,
    x_creation_date                     IN     DATE,
    x_created_by                        IN     NUMBER,
    x_last_update_date                  IN     DATE,
    x_last_updated_by                   IN     NUMBER,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 25-JUN-2005
  ||  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_sub_err_id,
      x_sub_er_id,
      x_far_id,
      x_create_date,
      x_logical_delete_date,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 288

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

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

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

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_sub_err_id                        IN OUT NOCOPY NUMBER,
    x_sub_er_id                         IN     NUMBER,
    x_far_id                            IN     NUMBER,
    x_create_date                       IN     DATE,
    x_logical_delete_date               IN     DATE,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 25-JUN-2005
  ||  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)
  */

    x_last_update_date           DATE;
Line: 342

    x_last_updated_by            NUMBER;
Line: 343

    x_last_update_login          NUMBER;
Line: 347

    x_last_update_date := SYSDATE;
Line: 349

      x_last_updated_by := 1;
Line: 350

      x_last_update_login := 0;
Line: 352

      x_last_updated_by := fnd_global.user_id;
Line: 353

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

      x_last_update_login := fnd_global.login_id;
Line: 357

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

      fnd_message.set_token ('ROUTINE', 'IGS_FI_SUB_ER_RT_PKG.INSERT_ROW');
Line: 370

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_sub_err_id                        => x_sub_err_id,
      x_sub_er_id                         => x_sub_er_id,
      x_far_id                            => x_far_id,
      x_create_date                       => x_create_date,
      x_logical_delete_date               => x_logical_delete_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: 384

    INSERT INTO igs_fi_sub_er_rt (
      sub_err_id,
      sub_er_id,
      far_id,
      create_date,
      logical_delete_date,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      igs_fi_sub_er_rt_s.NEXTVAL,
      new_references.sub_er_id,
      new_references.far_id,
      new_references.create_date,
      new_references.logical_delete_date,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    ) RETURNING ROWID, sub_err_id INTO x_rowid, x_sub_err_id;
Line: 408

  END insert_row;
Line: 417

    x_logical_delete_date               IN     DATE
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 25-JUN-2005
  ||  Purpose : Handles the LOCK mechanism for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  */
    CURSOR c1 IS
      SELECT
        sub_er_id,
        far_id,
        create_date,
        logical_delete_date
      FROM  igs_fi_sub_er_rt
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 445

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

        AND ((tlinfo.logical_delete_date = x_logical_delete_date) OR ((tlinfo.logical_delete_date IS NULL) AND (X_logical_delete_date IS NULL)))
       ) THEN
      NULL;
Line: 471

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_sub_err_id                        IN     NUMBER,
    x_sub_er_id                         IN     NUMBER,
    x_far_id                            IN     NUMBER,
    x_create_date                       IN     DATE,
    x_logical_delete_date               IN     DATE,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 25-JUN-2005
  ||  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: 490

    x_last_updated_by            NUMBER;
Line: 491

    x_last_update_login          NUMBER;
Line: 495

    x_last_update_date := SYSDATE;
Line: 497

      x_last_updated_by := 1;
Line: 498

      x_last_update_login := 0;
Line: 500

      x_last_updated_by := fnd_global.user_id;
Line: 501

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

      x_last_update_login := fnd_global.login_id;
Line: 505

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

      fnd_message.set_token ('ROUTINE', 'IGS_FI_SUB_ER_RT_PKG.UPDATE_ROW');
Line: 516

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_sub_err_id                        => x_sub_err_id,
      x_sub_er_id                         => x_sub_er_id,
      x_far_id                            => x_far_id,
      x_create_date                       => x_create_date,
      x_logical_delete_date               => x_logical_delete_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: 530

    UPDATE igs_fi_sub_er_rt
      SET
        sub_er_id                         = new_references.sub_er_id,
        far_id                            = new_references.far_id,
        create_date                       = new_references.create_date,
        logical_delete_date               = new_references.logical_delete_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: 545

  END update_row;
Line: 554

    x_logical_delete_date               IN     DATE,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 25-JUN-2005
  ||  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     igs_fi_sub_er_rt
      WHERE    sub_err_id                        = x_sub_err_id;
Line: 578

      insert_row (
        x_rowid,
        x_sub_err_id,
        x_sub_er_id,
        x_far_id,
        x_create_date,
        x_logical_delete_date,
        x_mode
      );
Line: 591

    update_row (
      x_rowid,
      x_sub_err_id,
      x_sub_er_id,
      x_far_id,
      x_create_date,
      x_logical_delete_date,
      x_mode
    );