DBA Data[Home] [Help]

APPS.IGS_TR_TYP_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 ,
    x_org_id IN NUMBER DEFAULT NULL
  ) AS

    CURSOR cur_old_ref_values IS
      SELECT   *
      FROM     igs_tr_typ_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: 58

    new_references.last_update_date := x_last_update_date;
Line: 59

    new_references.last_updated_by := x_last_updated_by;
Line: 60

    new_references.last_update_login := x_last_update_login;
Line: 74

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

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

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

      SELECT   ROWID
      FROM     igs_tr_typ_step_note
      WHERE    tracking_type = x_tracking_type
      AND      tracking_type_step_id = x_tracking_type_step_id
      AND      reference_number = x_reference_number
     -- AND      org_id = x_org_id
      FOR UPDATE NOWAIT;
Line: 151

      SELECT   ROWID
      FROM     igs_tr_typ_step_note
      WHERE    reference_number = x_reference_number ;
Line: 177

      SELECT   ROWID
      FROM     igs_tr_typ_step_note
      WHERE    trk_note_type = x_trk_note_type ;
Line: 207

      SELECT   ROWID
      FROM     igs_tr_typ_step_note
      WHERE    tracking_type = x_tracking_type
      AND      tracking_type_step_id = x_tracking_type_step_id ;
Line: 272

    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_org_id IN NUMBER DEFAULT NULL
  ) AS
  BEGIN

    set_column_values (
      p_action,
      x_rowid,
      x_tracking_type,
      x_tracking_type_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,
      x_org_id
    );
Line: 294

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

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

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

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

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

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

  PROCEDURE insert_row (
    x_rowid IN OUT NOCOPY VARCHAR2,
    x_tracking_type IN VARCHAR2,
    x_tracking_type_step_id IN NUMBER,
    x_reference_number IN NUMBER,
    x_trk_note_type IN VARCHAR2,
    x_mode IN VARCHAR2 DEFAULT 'R',
    x_org_id IN NUMBER
  ) AS
/*----------------------------------------------------------------------------------------------
-- ssawhney, bug 2753353, removed org_id check from PK check cursor
-----------------------------------------------------------------------------------------------*/
    CURSOR c IS SELECT ROWID FROM igs_tr_typ_step_note
      WHERE tracking_type = x_tracking_type
      AND tracking_type_step_id = x_tracking_type_step_id
      AND reference_number = x_reference_number;
Line: 371

    x_last_update_date DATE;
Line: 372

    x_last_updated_by NUMBER;
Line: 373

    x_last_update_login NUMBER;
Line: 376

    x_last_update_date := SYSDATE;
Line: 378

      x_last_updated_by := 1;
Line: 379

      x_last_update_login := 0;
Line: 382

      x_last_updated_by := fnd_global.user_id;
Line: 383

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

      x_last_update_login :=fnd_global.login_id;
Line: 387

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

    before_dml(p_action =>'INSERT',
      x_rowid =>x_rowid,
      x_tracking_type => x_tracking_type,
      x_tracking_type_step_id => x_tracking_type_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,
      x_org_id => x_org_id
    );
Line: 410

    INSERT INTO igs_tr_typ_step_note (
      tracking_type,
      tracking_type_step_id,
      reference_number,
      trk_note_type,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login,
      org_id
    ) VALUES (
      new_references.tracking_type,
      new_references.tracking_type_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,
      new_references.org_id
    );
Line: 443

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

  END insert_row;
Line: 458

      SELECT   trk_note_type
      FROM     igs_tr_typ_step_note
      WHERE    ROWID = x_rowid
      FOR UPDATE NOWAIT;
Line: 469

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

  PROCEDURE update_row (
    x_rowid IN VARCHAR2,
    x_tracking_type IN VARCHAR2,
    x_tracking_type_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: 498

    x_last_updated_by NUMBER;
Line: 499

    x_last_update_login NUMBER;
Line: 503

    x_last_update_date := SYSDATE;
Line: 506

      x_last_updated_by := 1;
Line: 507

      x_last_update_login := 0;
Line: 510

      x_last_updated_by := fnd_global.user_id;
Line: 511

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

      x_last_update_login :=fnd_global.login_id;
Line: 515

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

    before_dml(p_action =>'UPDATE',
      x_rowid =>x_rowid,
      x_tracking_type => x_tracking_type,
      x_tracking_type_step_id => x_tracking_type_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: 538

    UPDATE igs_tr_typ_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: 550

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

  END update_row;
Line: 569

      SELECT ROWID
      FROM   igs_tr_typ_step_note
      WHERE  tracking_type = x_tracking_type
      AND    tracking_type_step_id = x_tracking_type_step_id
      AND    reference_number = x_reference_number;
Line: 582

      insert_row (
        x_rowid,
        x_tracking_type,
        x_tracking_type_step_id,
        x_reference_number,
        x_trk_note_type,
        x_mode,
        x_org_id
      );
Line: 594

    update_row (
      x_rowid,
      x_tracking_type,
      x_tracking_type_step_id,
      x_reference_number,
      x_trk_note_type,
      x_mode
    );
Line: 605

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  BEGIN

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

    DELETE FROM igs_tr_typ_step_note WHERE ROWID = x_rowid;
Line: 620

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

  END delete_row;