DBA Data[Home] [Help]

APPS.IGS_TR_ITEM_NOTE_PKG SQL Statements

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

Line: 16

    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_item_note
      WHERE    ROWID = x_rowid;
Line: 34

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

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

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

    new_references.last_update_date := x_last_update_date;
Line: 57

    new_references.last_updated_by := x_last_updated_by;
Line: 58

    new_references.last_update_login := x_last_update_login;
Line: 65

  PROCEDURE beforerowinsertupdatedelete1(
    p_inserting IN BOOLEAN DEFAULT FALSE,
    p_updating IN BOOLEAN DEFAULT FALSE,
    p_deleting IN BOOLEAN DEFAULT FALSE
  ) AS
  BEGIN

    NULL;
Line: 74

  END beforerowinsertupdatedelete1;
Line: 106

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

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

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

      SELECT   ROWID
      FROM     igs_tr_item_note
      WHERE    tracking_id = x_tracking_id
      AND      reference_number = x_reference_number
      FOR UPDATE NOWAIT;
Line: 169

      SELECT   ROWID
      FROM     igs_tr_item_note
      WHERE    reference_number = x_reference_number ;
Line: 195

      SELECT   ROWID
      FROM     igs_tr_item_note
      WHERE    trk_note_type = x_trk_note_type ;
Line: 221

      SELECT   ROWID
      FROM     igs_tr_item_note
      WHERE    tracking_id = x_tracking_id ;
Line: 250

    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_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: 269

    IF (p_action = 'INSERT') THEN
      beforerowinsertupdatedelete1 ( p_inserting => TRUE );
Line: 281

    ELSIF (p_action = 'UPDATE') THEN
      beforerowinsertupdatedelete1 ( p_updating => TRUE );
Line: 285

    ELSIF (p_action = 'DELETE') THEN
      beforerowinsertupdatedelete1 ( p_deleting => TRUE );
Line: 287

    ELSIF (p_action = 'VALIDATE_INSERT') THEN
      IF  get_pk_for_validation (
          new_references.tracking_id,
          new_references.reference_number
      ) THEN
        fnd_message.set_name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
Line: 297

    ELSIF (p_action = 'VALIDATE_UPDATE') THEN
      check_constraints;
Line: 299

    ELSIF (p_action = 'VALIDATE_DELETE') THEN
      check_constraints;
Line: 315

  PROCEDURE insert_row (
    x_rowid IN OUT NOCOPY VARCHAR2,
    x_tracking_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_item_note
      WHERE    tracking_id = x_tracking_id
      AND      reference_number = x_reference_number;
Line: 329

    x_last_update_date DATE;
Line: 330

    x_last_updated_by NUMBER;
Line: 331

    x_last_update_login NUMBER;
Line: 335

    x_last_update_date := SYSDATE;
Line: 338

      x_last_updated_by := 1;
Line: 339

      x_last_update_login := 0;
Line: 341

      x_last_updated_by := fnd_global.user_id;
Line: 342

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

      x_last_update_login :=fnd_global.login_id;
Line: 346

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

      p_action =>'INSERT',
      x_rowid =>x_rowid,
      x_tracking_id => x_tracking_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: 368

    INSERT INTO igs_tr_item_note (
      tracking_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.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: 397

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

  END insert_row;
Line: 411

      SELECT    trk_note_type
      FROM      igs_tr_item_note
      WHERE     ROWID = x_rowid
      FOR UPDATE NOWAIT;
Line: 424

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

  PROCEDURE update_row (
    x_rowid IN VARCHAR2,
    x_tracking_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: 451

      x_last_updated_by NUMBER;
Line: 452

      x_last_update_login NUMBER;
Line: 456

    x_last_update_date := SYSDATE;
Line: 459

      x_last_updated_by := 1;
Line: 460

      x_last_update_login := 0;
Line: 462

      x_last_updated_by := fnd_global.user_id;
Line: 463

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

      x_last_update_login :=fnd_global.login_id;
Line: 467

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

      p_action =>'UPDATE',
      x_rowid =>x_rowid,
      x_tracking_id => x_tracking_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: 489

    UPDATE igs_tr_item_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: 501

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

  END update_row;
Line: 516

    SELECT     ROWID
    FROM       igs_tr_item_note
    WHERE      tracking_id = x_tracking_id
    AND        reference_number = x_reference_number;
Line: 528

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

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

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  BEGIN

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

    DELETE FROM igs_tr_item_note
    WHERE ROWID = x_rowid;
Line: 568

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

  END delete_row;