DBA Data[Home] [Help]

APPS.IGS_TR_GROUP_PKG SQL Statements

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

Line: 15

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

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

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

    new_references.last_update_date := x_last_update_date;
Line: 56

    new_references.last_updated_by := x_last_updated_by;
Line: 57

    new_references.last_update_login := x_last_update_login;
Line: 101

      SELECT   ROWID
      FROM     igs_tr_group_all
      WHERE    tracking_group_id = x_tracking_group_id
      FOR UPDATE NOWAIT;
Line: 129

    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_group_id,
      x_description,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login,
      x_org_id
    );
Line: 149

    IF (p_action = 'INSERT') THEN
      IF  get_pk_for_validation ( new_references.tracking_group_id ) THEN
        fnd_message.set_name ('IGS', 'IGS_GE_MULTI_ORG_DUP_REC');
Line: 157

    ELSIF (p_action = 'UPDATE') THEN
      check_constraints;
Line: 160

    ELSIF (p_action = 'DELETE') THEN
      check_child_existance;
Line: 163

    ELSIF (p_action = 'VALIDATE_INSERT') THEN
      IF  get_pk_for_validation ( new_references.tracking_group_id ) THEN
        fnd_message.set_name ('IGS', 'IGS_GE_MULTI_ORG_DUP_REC');
Line: 171

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

    ELSIF (p_action = 'VALIDATE_DELETE') THEN
      check_child_existance;
Line: 190

PROCEDURE insert_row (
  x_rowid IN OUT NOCOPY VARCHAR2,
  x_tracking_group_id IN NUMBER,
  x_description IN VARCHAR2,
  x_mode IN VARCHAR2 DEFAULT 'R',
  x_org_id IN NUMBER
  ) AS

    CURSOR c IS
      SELECT ROWID
      FROM igs_tr_group_all
      WHERE tracking_group_id = x_tracking_group_id;
Line: 203

    x_last_update_date DATE;
Line: 204

    x_last_updated_by NUMBER;
Line: 205

    x_last_update_login NUMBER;
Line: 209

    x_last_update_date := SYSDATE;
Line: 212

      x_last_updated_by := 1;
Line: 213

      x_last_update_login := 0;
Line: 216

      x_last_updated_by := fnd_global.user_id;
Line: 217

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

        x_last_update_login :=fnd_global.login_id;
Line: 221

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

    before_dml(p_action =>'INSERT',
      x_rowid =>x_rowid,
      x_tracking_group_id => x_tracking_group_id,
      x_description => x_description,
      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 => igs_ge_gen_003.get_org_id
    );
Line: 243

    INSERT INTO igs_tr_group_all (
      tracking_group_id,
      description,
      org_id,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      new_references.tracking_group_id,
      new_references.description,
      new_references.org_id,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 271

    after_dml( p_action =>'INSERT', x_rowid => x_rowid);
Line: 273

  END insert_row;
Line: 282

      SELECT  description
      FROM    igs_tr_group_all
      WHERE   ROWID = x_rowid
      FOR UPDATE NOWAIT;
Line: 294

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

  PROCEDURE update_row (
    x_rowid IN VARCHAR2,
    x_tracking_group_id IN NUMBER,
    x_description IN VARCHAR2,
    x_mode IN VARCHAR2 DEFAULT 'R'
    ) AS

      x_last_update_date DATE;
Line: 321

      x_last_updated_by NUMBER;
Line: 322

      x_last_update_login NUMBER;
Line: 326

    x_last_update_date := SYSDATE;
Line: 328

      x_last_updated_by := 1;
Line: 329

      x_last_update_login := 0;
Line: 332

      x_last_updated_by := fnd_global.user_id;
Line: 333

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

      x_last_update_login :=fnd_global.login_id;
Line: 337

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

    before_dml(p_action =>'UPDATE',
      x_rowid =>x_rowid,
      x_tracking_group_id => x_tracking_group_id,
      x_description => x_description,
      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: 358

    UPDATE igs_tr_group_all SET
      description = new_references.description,
      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: 370

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

  END update_row;
Line: 385

      SELECT ROWID
      FROM   igs_tr_group_all
      WHERE  tracking_group_id = x_tracking_group_id;
Line: 395

      insert_row (
        x_rowid,
        x_tracking_group_id,
        x_description,
        x_mode,
        x_org_id
      );
Line: 405

    update_row (
      x_rowid,
      x_tracking_group_id,
      x_description,
      x_mode);
Line: 413

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  BEGIN

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

    DELETE FROM igs_tr_group_all WHERE ROWID = x_rowid;
Line: 429

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

  END delete_row;