DBA Data[Home] [Help]

APPS.IGS_TR_STEP_PKG SQL Statements

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

Line: 25

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

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

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

    new_references.last_update_date := x_last_update_date;
Line: 77

    new_references.last_updated_by := x_last_updated_by;
Line: 78

    new_references.last_update_login := x_last_update_login;
Line: 82

  PROCEDURE BeforeRowInsertUpdate(
    p_inserting IN BOOLEAN DEFAULT FALSE,
    p_updating IN BOOLEAN DEFAULT FALSE
    ) as
     v_message_name                  VARCHAR2(30);
Line: 88

        IF (p_inserting OR (p_updating AND (old_references.step_catalog_cd <> new_references.step_catalog_cd))) THEN
	 IF NOT IGS_TR_VAL_TRI.val_tr_step_ctlg (new_references.step_catalog_cd,
	                                          v_message_name) THEN
             Fnd_Message.Set_Name('IGS', v_message_name);
Line: 96

  END BeforeRowInsertUpdate;
Line: 98

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

    v_message_name   VARCHAR2(30);
Line: 109

      SELECT  tracking_type
      FROM    igs_tr_item
      WHERE   tracking_id = cp_tracking_id;
Line: 117

    IF (p_inserting OR
      (p_updating AND ((old_references.step_completion_ind <> new_references.step_completion_ind) OR
      (old_references.by_pass_ind <> new_references.by_pass_ind) OR
      (NVL(old_references.completion_dt, igs_ge_date.igsdate ('1900/01/01')) <>
      NVL(new_references.completion_dt, igs_ge_date.igsdate ('1900/01/01')))))) THEN

      IF igs_tr_val_trst.trkp_val_trst_sci_cd(
        new_references.step_completion_ind,
        new_references.completion_dt,
        new_references.by_pass_ind,
        v_message_name) = FALSE THEN

        fnd_message.set_name('IGS',v_message_name);
Line: 136

    IF (p_inserting OR
      (p_updating AND (NVL(old_references.s_tracking_step_type, 'NULL') <>
      NVL(new_references.s_tracking_step_type, 'NULL')))) AND
      new_references.s_tracking_step_type IS NOT NULL THEN

      OPEN c_tri (new_references.tracking_id);
Line: 157

  END beforerowinsertupdatedelete1;
Line: 168

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

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

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

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

      SELECT   ROWID
      FROM     igs_tr_step
      WHERE    tracking_id = x_tracking_id
      AND      tracking_step_id = x_tracking_step_id
      FOR UPDATE NOWAIT;
Line: 249

      SELECT   ROWID
      FROM     igs_tr_step
      WHERE    recipient_id = x_person_id ;
Line: 275

      SELECT   ROWID
      FROM     igs_tr_step
      WHERE    tracking_id = x_tracking_id ;
Line: 302

      SELECT   ROWID
      FROM     igs_tr_step
      WHERE    s_tracking_step_type = x_s_tracking_step_type ;
Line: 441

    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_tracking_step_number,
      x_description,
      x_completion_dt,
      x_action_days,
      x_step_completion_ind,
      x_by_pass_ind,
      x_recipient_id,
      x_s_tracking_step_type,
      x_step_group_id,
      x_publish_ind,
      x_step_catalog_cd,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 471

    IF (p_action = 'INSERT') THEN
      -- Call all the procedures related to Before Insert.
      BeforeRowInsertUpdate ( p_inserting => TRUE );
Line: 474

      beforerowinsertupdatedelete1 ( p_inserting => TRUE );
Line: 486

    ELSIF (p_action = 'UPDATE') THEN
      -- Call all the procedures related to Before Update.
      BeforeRowInsertUpdate ( p_updating => TRUE );
Line: 489

      beforerowinsertupdatedelete1 ( p_updating => TRUE );
Line: 493

    ELSIF (p_action = 'DELETE') THEN
      -- Call all the procedures related to Before Delete.
      beforerowinsertupdatedelete1 ( p_deleting => TRUE );
Line: 498

    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
      )THEN
        fnd_message.set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
Line: 510

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

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

  PROCEDURE insert_row (
    x_rowid IN OUT NOCOPY VARCHAR2,
    x_tracking_id IN NUMBER,
    x_tracking_step_id IN NUMBER,
    x_tracking_step_number IN NUMBER,
    x_description IN VARCHAR2,
    x_s_tracking_step_type IN VARCHAR2,
    x_completion_dt IN DATE,
    x_action_days IN NUMBER,
    x_step_completion_ind IN VARCHAR2,
    x_by_pass_ind IN VARCHAR2,
    x_recipient_id IN NUMBER,
    x_step_group_id IN NUMBER DEFAULT NULL,
    x_publish_ind IN VARCHAR2 DEFAULT 'N',
    x_step_catalog_cd IN VARCHAR2 DEFAULT NULL,
    x_mode IN VARCHAR2 DEFAULT 'R'
  ) AS

    CURSOR c IS
      SELECT ROWID
      FROM   igs_tr_step
      WHERE  tracking_id = x_tracking_id AND tracking_step_id = x_tracking_step_id;
Line: 546

    x_last_update_date DATE;
Line: 547

    x_last_updated_by NUMBER;
Line: 548

    x_last_update_login NUMBER;
Line: 552

    x_program_update_date DATE;
Line: 556

    x_last_update_date := SYSDATE;
Line: 558

      x_last_updated_by := 1;
Line: 559

      x_last_update_login := 0;
Line: 563

      x_last_updated_by := fnd_global.user_id;
Line: 564

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

      x_last_update_login :=fnd_global.login_id;
Line: 569

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

        x_program_update_date := NULL;
Line: 582

        x_program_update_date := SYSDATE;
Line: 591

    before_dml(p_action =>'INSERT',
      x_rowid =>x_rowid,
      x_tracking_id => x_tracking_id,
      x_tracking_step_id => x_tracking_step_id,
      x_tracking_step_number => x_tracking_step_number,
      x_description => x_description,
      x_completion_dt => x_completion_dt,
      x_action_days => x_action_days,
      x_step_completion_ind => x_step_completion_ind,
      x_by_pass_ind => NVL(x_by_pass_ind,'N'),
      x_recipient_id => x_recipient_id,
      x_s_tracking_step_type => x_s_tracking_step_type,
      x_step_group_id => x_step_group_id,
      x_publish_ind => NVL(x_publish_ind,'N'),
      x_step_catalog_cd => x_step_catalog_cd,
      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: 613

    INSERT INTO igs_tr_step (
      tracking_id,
      tracking_step_id,
      tracking_step_number,
      description,
      s_tracking_step_type,
      completion_dt,
      action_days,
      step_completion_ind,
      by_pass_ind,
      recipient_id,
      step_group_id,
      publish_ind,
      step_catalog_cd,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login,
      request_id,
      program_id,
      program_application_id,
      program_update_date
    ) VALUES (
      new_references.tracking_id,
      new_references.tracking_step_id,
      new_references.tracking_step_number,
      new_references.description,
      new_references.s_tracking_step_type,
      new_references.completion_dt,
      new_references.action_days,
      new_references.step_completion_ind,
      new_references.by_pass_ind,
      new_references.recipient_id,
      new_references.step_group_id,
      new_references.publish_ind,
      new_references.step_catalog_cd,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login,
      x_request_id,
      x_program_id,
      x_program_application_id,
      x_program_update_date
    );
Line: 669

  END insert_row;
Line: 689

      SELECT    tracking_step_number, description,
                s_tracking_step_type, completion_dt,
		action_days, step_completion_ind,by_pass_ind, recipient_id,
		step_group_id, publish_ind, step_catalog_cd
      FROM      igs_tr_step
      WHERE     ROWID = x_rowid
      FOR UPDATE NOWAIT;
Line: 703

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

  PROCEDURE update_row (
    x_rowid IN VARCHAR2,
    x_tracking_id IN NUMBER,
    x_tracking_step_id IN NUMBER,
    x_tracking_step_number IN NUMBER,
    x_description IN VARCHAR2,
    x_s_tracking_step_type IN VARCHAR2,
    x_completion_dt IN DATE,
    x_action_days IN NUMBER,
    x_step_completion_ind IN VARCHAR2,
    x_by_pass_ind IN VARCHAR2,
    x_recipient_id IN NUMBER,
    x_step_group_id IN NUMBER DEFAULT NULL,
    x_publish_ind IN VARCHAR2 DEFAULT 'N',
    x_step_catalog_cd IN VARCHAR2 DEFAULT NULL,
    x_mode IN VARCHAR2 DEFAULT 'R'
  ) AS
    x_last_update_date DATE;
Line: 764

    x_last_updated_by NUMBER;
Line: 765

    x_last_update_login NUMBER;
Line: 769

    x_program_update_date DATE;
Line: 771

    x_last_update_date := SYSDATE;
Line: 773

      x_last_updated_by := 1;
Line: 774

      x_last_update_login := 0;
Line: 776

      x_last_updated_by := fnd_global.user_id;
Line: 777

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

      x_last_update_login :=fnd_global.login_id;
Line: 781

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

    before_dml(p_action =>'UPDATE',
      x_rowid =>x_rowid,
      x_tracking_id => x_tracking_id,
      x_tracking_step_id => x_tracking_step_id,
      x_tracking_step_number => x_tracking_step_number,
      x_description => x_description,
      x_completion_dt => x_completion_dt,
      x_action_days => x_action_days,
      x_step_completion_ind => x_step_completion_ind,
      x_by_pass_ind => x_by_pass_ind,
      x_recipient_id => x_recipient_id,
      x_s_tracking_step_type => x_s_tracking_step_type,
      x_step_group_id => x_step_group_id,
      x_publish_ind => x_publish_ind,
      x_step_catalog_cd => x_step_catalog_cd,
      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: 821

        x_program_update_date := old_references.program_update_date;
Line: 824

        x_program_update_date := SYSDATE;
Line: 829

    UPDATE igs_tr_step SET
      tracking_step_number = new_references.tracking_step_number,
      description = new_references.description,
      s_tracking_step_type = new_references.s_tracking_step_type,
      completion_dt = new_references.completion_dt,
      action_days = new_references.action_days,
      step_completion_ind = new_references.step_completion_ind,
      by_pass_ind = new_references.by_pass_ind,
      recipient_id = new_references.recipient_id,
      step_group_id = new_references.step_group_id,
      publish_ind = new_references.publish_ind,
      step_catalog_cd = new_references.step_catalog_cd,
      last_update_date = x_last_update_date,
      last_updated_by = x_last_updated_by,
      last_update_login = x_last_update_login,
      request_id = x_request_id,
      program_id = x_program_id,
      program_application_id = x_program_application_id,
      program_update_date = x_program_update_date
    WHERE ROWID = x_rowid;
Line: 854

  END update_row;
Line: 874

      SELECT  ROWID
      FROM    igs_tr_step
      WHERE   tracking_id = x_tracking_id
      AND     tracking_step_id = x_tracking_step_id;
Line: 885

      insert_row (
        x_rowid,
        x_tracking_id,
        x_tracking_step_id,
        x_tracking_step_number,
        x_description,
        x_s_tracking_step_type,
        x_completion_dt,
        x_action_days,
        x_step_completion_ind,
        x_by_pass_ind,
        x_recipient_id,
        x_step_group_id,
        x_publish_ind,
        x_step_catalog_cd,
        x_mode
      );
Line: 905

    update_row (
      x_rowid,
      x_tracking_id,
      x_tracking_step_id,
      x_tracking_step_number,
      x_description,
      x_s_tracking_step_type,
      x_completion_dt,
      x_action_days,
      x_step_completion_ind,
      x_by_pass_ind,
      x_recipient_id,
      x_step_group_id,
      x_publish_ind,
      x_step_catalog_cd,
      x_mode
    );
Line: 925

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS

  BEGIN

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

    DELETE FROM igs_tr_step
    WHERE ROWID = x_rowid;
Line: 941

  END delete_row;