DBA Data[Home] [Help]

APPS.IGS_TR_STATUS_PKG SQL Statements

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

Line: 35

    x_last_update_date IN DATE DEFAULT NULL,
    x_last_updated_by IN NUMBER DEFAULT NULL,
    x_last_update_login IN NUMBER DEFAULT NULL,
    x_default_ind IN VARCHAR2 DEFAULT 'N'
  ) AS

    CURSOR cur_old_ref_values IS
      SELECT   *
      FROM     igs_tr_status
      WHERE    ROWID = x_rowid;
Line: 55

    IF (cur_old_ref_values%NOTFOUND) AND (p_action NOT IN ('INSERT','VALIDATE_INSERT')) THEN
      fnd_message.set_name ('FND', 'FORM_RECORD_DELETED');
Line: 71

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

    new_references.last_update_date := x_last_update_date;
Line: 80

    new_references.last_updated_by := x_last_updated_by;
Line: 81

    new_references.last_update_login := x_last_update_login;
Line: 90

      SELECT   ROWID
      FROM     igs_tr_status
      WHERE    tracking_status = x_tracking_status;
Line: 198

    x_last_update_date IN DATE DEFAULT NULL,
    x_last_updated_by IN NUMBER DEFAULT NULL,
    x_last_update_login IN NUMBER DEFAULT NULL,
    x_default_ind IN VARCHAR2 DEFAULT 'N'
  ) AS
  BEGIN

    set_column_values (
      p_action,
      x_rowid,
      x_tracking_status,
      x_description,
      x_s_tracking_status,
      x_closed_ind,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login,
      x_default_ind
    );
Line: 220

    IF (p_action = 'INSERT') THEN
      -- Call all the procedures related to Before Insert.
      NULL;
Line: 230

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

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

    ELSIF (p_action = 'VALIDATE_UPDATE') THEN
      -- Call all the procedures related to Before Delete.
      check_constraints;
Line: 294

  PROCEDURE insert_row (
    x_rowid IN OUT NOCOPY VARCHAR2,
    x_tracking_status IN VARCHAR2,
    x_description IN VARCHAR2,
    x_s_tracking_status IN VARCHAR2,
    x_closed_ind IN VARCHAR2,
    x_mode IN VARCHAR2 DEFAULT 'R',
    x_default_ind IN VARCHAR2 DEFAULT 'N'
    ) AS

    CURSOR c IS
      SELECT ROWID
      FROM   igs_tr_status
      WHERE  tracking_status = x_tracking_status;
Line: 308

    x_last_update_date DATE;
Line: 309

    x_last_updated_by NUMBER;
Line: 310

    x_last_update_login NUMBER;
Line: 314

    x_last_update_date := SYSDATE;
Line: 317

      x_last_updated_by := 1;
Line: 318

      x_last_update_login := 0;
Line: 320

      x_last_updated_by := fnd_global.user_id;
Line: 322

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

      x_last_update_login :=fnd_global.login_id;
Line: 327

      IF x_last_update_login IS NULL THEN
        x_last_update_login := -1;
Line: 336

    before_dml(p_action =>'INSERT',
      x_rowid =>x_rowid,
      x_tracking_status => x_tracking_status,
      x_description => x_description,
      x_s_tracking_status => x_s_tracking_status,
      x_closed_ind => NVL(x_closed_ind,'N'),
      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,
      x_default_ind  => NVL(x_default_ind,'N')
    );
Line: 350

    INSERT INTO igs_tr_status (
      tracking_status,
      description,
      s_tracking_status,
      closed_ind,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login,
      default_ind
    ) VALUES (
      new_references.tracking_status,
      new_references.description,
      new_references.s_tracking_status,
      new_references.closed_ind,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login,
      new_references.default_ind
      );
Line: 383

      p_action =>'INSERT',
      x_rowid => x_rowid
      );
Line: 387

  END insert_row;
Line: 416

    SELECT   description,s_tracking_status,closed_ind
    FROM     igs_tr_status
    WHERE    ROWID = x_rowid
    FOR UPDATE NOWAIT;
Line: 428

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

  PROCEDURE update_row (
    x_rowid IN VARCHAR2,
    x_tracking_status IN VARCHAR2,
    x_description IN VARCHAR2,
    x_s_tracking_status IN VARCHAR2,
    x_closed_ind IN VARCHAR2,
    x_mode IN VARCHAR2 DEFAULT 'R',
    x_default_ind IN VARCHAR2 DEFAULT 'N'
  ) AS
    x_last_update_date DATE;
Line: 477

    x_last_updated_by NUMBER;
Line: 478

    x_last_update_login NUMBER;
Line: 482

    x_last_update_date := SYSDATE;
Line: 485

      x_last_updated_by := 1;
Line: 486

      x_last_update_login := 0;
Line: 488

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

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

    before_dml(p_action =>'UPDATE',
      x_rowid =>x_rowid,
      x_tracking_status => x_tracking_status,
      x_description => x_description,
      x_s_tracking_status => x_s_tracking_status,
      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,
      x_default_ind => x_default_ind
    );
Line: 518

    UPDATE igs_tr_status SET
      description = new_references.description,
      s_tracking_status = new_references.s_tracking_status,
      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,
      default_ind = new_references.default_ind
    WHERE tracking_status = x_tracking_status;
Line: 532

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

  END update_row;
Line: 566

      SELECT   ROWID
      FROM     igs_tr_status
      WHERE    tracking_status = x_tracking_status;
Line: 577

      insert_row (
        x_rowid,
        x_tracking_status,
        x_description,
        x_s_tracking_status,
        x_closed_ind,
        x_mode,
        x_default_ind);
Line: 589

    update_row (
      x_rowid,
      x_tracking_status,
      x_description,
      x_s_tracking_status,
     x_closed_ind,
     x_mode,
     x_default_ind);