DBA Data[Home] [Help]

APPS.IGS_TR_STEP_NOTE_PKG SQL Statements

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

Line: 17

    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

    CURSOR cur_old_ref_values IS
      SELECT   *
      FROM     igs_tr_step_note
      WHERE    ROWID = x_rowid;
Line: 36

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

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

    new_references.last_update_date := x_last_update_date;
Line: 60

    new_references.last_updated_by := x_last_updated_by;
Line: 61

    new_references.last_update_login := x_last_update_login;
Line: 76

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

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

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

      SELECT   ROWID
      FROM     igs_tr_step_note
      WHERE    tracking_id = x_tracking_id
      AND      tracking_step_id = x_tracking_step_id
      AND      reference_number = x_reference_number
      FOR UPDATE NOWAIT;
Line: 150

      SELECT   ROWID
      FROM     igs_tr_step_note
      WHERE    reference_number = x_reference_number ;
Line: 176

      SELECT   ROWID
      FROM     igs_tr_step_note
      WHERE    trk_note_type = x_trk_note_type ;
Line: 204

      SELECT   ROWID
      FROM     igs_tr_step_note
      WHERE    tracking_id = x_tracking_id
      AND      tracking_step_id = x_tracking_step_id ;
Line: 259

    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
  BEGIN

    set_column_values (
      p_action,
      x_rowid,
      x_tracking_id,
      x_tracking_step_id,
      x_reference_number,
      x_trk_note_type,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 279

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

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

    ELSIF (p_action = 'DELETE') THEN
      -- Call all the procedures related to Before Delete.
      NULL;
Line: 304

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

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

    ELSIF (p_action = 'VALIDATE_DELETE') THEN
      -- Call all the procedures related to Before Delete.
      NULL;
Line: 339

  PROCEDURE insert_row (
    x_rowid IN OUT NOCOPY VARCHAR2,
    x_tracking_id IN NUMBER,
    x_tracking_step_id IN NUMBER,
    x_reference_number IN NUMBER,
    x_trk_note_type IN VARCHAR2,
    x_mode IN VARCHAR2 DEFAULT 'R'
  ) AS

    CURSOR c IS
      SELECT ROWID
      FROM   igs_tr_step_note
      WHERE  tracking_id = x_tracking_id
      AND    tracking_step_id = x_tracking_step_id
      AND    reference_number = x_reference_number;
Line: 355

    x_last_update_date DATE;
Line: 356

    x_last_updated_by NUMBER;
Line: 357

    x_last_update_login NUMBER;
Line: 361

    x_last_update_date := SYSDATE;
Line: 363

      x_last_updated_by := 1;
Line: 364

      x_last_update_login := 0;
Line: 367

      x_last_updated_by := fnd_global.user_id;
Line: 368

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

      x_last_update_login :=fnd_global.login_id;
Line: 373

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

    before_dml(p_action =>'INSERT',
      x_rowid =>x_rowid,
      x_tracking_id => x_tracking_id,
      x_tracking_step_id => x_tracking_step_id,
      x_reference_number => x_reference_number,
      x_trk_note_type => x_trk_note_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: 395

    INSERT INTO igs_tr_step_note (
      tracking_id,
      tracking_step_id,
      reference_number,
      trk_note_type,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      new_references.tracking_id,
      new_references.tracking_step_id,
      new_references.reference_number,
      new_references.trk_note_type,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 427

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

  END insert_row;
Line: 442

      SELECT  trk_note_type
      FROM    igs_tr_step_note
      WHERE   ROWID = x_rowid
      FOR UPDATE NOWAIT;
Line: 453

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

  PROCEDURE update_row (
    x_rowid IN VARCHAR2,
    x_tracking_id IN NUMBER,
    x_tracking_step_id IN NUMBER,
    x_reference_number IN NUMBER,
    x_trk_note_type IN VARCHAR2,
    x_mode IN VARCHAR2 DEFAULT 'R'
  ) AS

    x_last_update_date DATE;
Line: 482

    x_last_updated_by NUMBER;
Line: 483

    x_last_update_login NUMBER;
Line: 486

    x_last_update_date := SYSDATE;
Line: 488

      x_last_updated_by := 1;
Line: 489

      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

    before_dml(p_action =>'UPDATE',
      x_rowid =>x_rowid,
      x_tracking_id => x_tracking_id,
      x_tracking_step_id => x_tracking_step_id,
      x_reference_number => x_reference_number,
      x_trk_note_type => x_trk_note_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: 520

    UPDATE igs_tr_step_note SET
      trk_note_type = new_references.trk_note_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: 532

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

  END update_row;
Line: 548

    SELECT ROWID
    FROM   igs_tr_step_note
    WHERE  tracking_id = x_tracking_id
      AND  tracking_step_id = x_tracking_step_id
      AND  reference_number = x_reference_number;
Line: 560

      insert_row (
        x_rowid,
        x_tracking_id,
        x_tracking_step_id,
        x_reference_number,
        x_trk_note_type,
        x_mode
      );
Line: 572

    update_row (
      x_rowid,
      x_tracking_id,
      x_tracking_step_id,
      x_reference_number,
      x_trk_note_type,
      x_mode
     );
Line: 583

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  BEGIN

    before_dml(p_action =>'DELETE',
      x_rowid =>x_rowid
    );
Line: 592

    DELETE FROM igs_tr_step_note WHERE ROWID = x_rowid;
Line: 598

      p_action =>'DELETE',
      x_rowid => x_rowid
    );
Line: 602

  END delete_row;