DBA Data[Home] [Help]

APPS.IGS_TR_STEP_CTLG_PKG SQL Statements

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

Line: 20

    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 : smaddali
  ||  Created On : 18-JUN-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     IGS_TR_STEP_CTLG_ALL
      WHERE    rowid = x_rowid;
Line: 47

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 74

    new_references.last_updated_by                   := x_last_updated_by;
Line: 75

    new_references.last_update_login                 := x_last_update_login;
Line: 122

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

      SELECT   rowid
      FROM     igs_tr_step_ctlg_all
      WHERE    step_catalog_id = x_step_catalog_id;
Line: 176

      SELECT   rowid
      FROM     igs_tr_step_ctlg_all
      WHERE    step_catalog_cd = x_step_catalog_cd
      AND      ((l_rowid IS NULL) OR (rowid <> l_rowid));
Line: 210

    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 : smaddali
  ||  Created On : 18-JUN-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)
  ||  vrathi          19-jun-2003     Bug: 2885713
  ||                                  Made l_rowid Null after Before_DML
  */
  BEGIN

    set_column_values (
      p_action,
      x_rowid,
      x_step_catalog_id,
      x_step_catalog_cd,
      x_description,
      x_action_days,
      x_s_tracking_step_type,
      x_publish_ind,
      x_closed_ind,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 245

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

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

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

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_step_catalog_id                   IN OUT NOCOPY NUMBER,
    x_step_catalog_cd                   IN     VARCHAR2,
    x_description                       IN     VARCHAR2,
    x_action_days                       IN     NUMBER,
    x_s_tracking_step_type              IN     VARCHAR2,
    x_publish_ind                       IN     VARCHAR2,
    x_closed_ind                        IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : smaddali
  ||  Created On : 18-JUN-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     igs_tr_step_ctlg_all
      WHERE    step_catalog_id                   = x_step_catalog_id;
Line: 306

    x_last_update_date           DATE;
Line: 307

    x_last_updated_by            NUMBER;
Line: 308

    x_last_update_login          NUMBER;
Line: 312

    x_last_update_date := SYSDATE;
Line: 314

      x_last_updated_by := 1;
Line: 315

      x_last_update_login := 0;
Line: 317

      x_last_updated_by := fnd_global.user_id;
Line: 318

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

      x_last_update_login := fnd_global.login_id;
Line: 322

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

    SELECT    igs_tr_step_ctlg_all_s.NEXTVAL
    INTO      x_step_catalog_id
    FROM      dual;
Line: 338

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_step_catalog_id                   => x_step_catalog_id,
      x_step_catalog_cd                   => x_step_catalog_cd,
      x_description                       => x_description,
      x_action_days                       => x_action_days,
      x_s_tracking_step_type              => x_s_tracking_step_type,
      x_publish_ind                       => x_publish_ind,
      x_closed_ind                        => x_closed_ind,
      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: 354

    INSERT INTO igs_tr_step_ctlg_all (
      step_catalog_id,
      step_catalog_cd,
      description,
      action_days,
      s_tracking_step_type,
      publish_ind,
      closed_ind,
      org_id,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      new_references.step_catalog_id,
      new_references.step_catalog_cd,
      new_references.description,
      new_references.action_days,
      new_references.s_tracking_step_type,
      new_references.publish_ind,
      new_references.closed_ind,
      new_references.org_id,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 392

  END insert_row;
Line: 415

      SELECT
        step_catalog_cd,
        description,
        action_days,
        s_tracking_step_type,
        publish_ind,
        closed_ind
      FROM  igs_tr_step_ctlg_all
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 433

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_step_catalog_id                   IN     NUMBER,
    x_step_catalog_cd                   IN     VARCHAR2,
    x_description                       IN     VARCHAR2,
    x_action_days                       IN     NUMBER,
    x_s_tracking_step_type              IN     VARCHAR2,
    x_publish_ind                       IN     VARCHAR2,
    x_closed_ind                        IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : smaddali
  ||  Created On : 18-JUN-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)
  */
    x_last_update_date           DATE ;
Line: 482

    x_last_updated_by            NUMBER;
Line: 483

    x_last_update_login          NUMBER;
Line: 487

    x_last_update_date := SYSDATE;
Line: 489

      x_last_updated_by := 1;
Line: 490

      x_last_update_login := 0;
Line: 492

      x_last_updated_by := fnd_global.user_id;
Line: 493

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

      x_last_update_login := fnd_global.login_id;
Line: 497

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_step_catalog_id                   => x_step_catalog_id,
      x_step_catalog_cd                   => x_step_catalog_cd,
      x_description                       => x_description,
      x_action_days                       => x_action_days,
      x_s_tracking_step_type              => x_s_tracking_step_type,
      x_publish_ind                       => x_publish_ind,
      x_closed_ind                        => x_closed_ind,
      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: 523

    UPDATE igs_tr_step_ctlg_all
      SET
        step_catalog_cd                   = new_references.step_catalog_cd,
        description                       = new_references.description,
        action_days                       = new_references.action_days,
        s_tracking_step_type              = new_references.s_tracking_step_type,
        publish_ind                       = new_references.publish_ind,
        closed_ind                        = new_references.closed_ind,
        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: 540

  END update_row;
Line: 557

  ||  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_tr_step_ctlg_all
      WHERE    step_catalog_id                   = x_step_catalog_id;
Line: 575

      insert_row (
        x_rowid,
        x_step_catalog_id,
        x_step_catalog_cd,
        x_description,
        x_action_days,
        x_s_tracking_step_type,
        x_publish_ind,
        x_closed_ind,
        x_mode
      );
Line: 590

    update_row (
      x_rowid,
      x_step_catalog_id,
      x_step_catalog_cd,
      x_description,
      x_action_days,
      x_s_tracking_step_type,
      x_publish_ind,
      x_closed_ind,
      x_mode
    );