DBA Data[Home] [Help]

APPS.IGS_PE_EIT_PKG SQL Statements

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

Line: 23

    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
  /*
  ||  Created By : cdcruz
  ||  Created On : 21-SEP-2001
  ||  Purpose : Initialises the Old and New references for the columns of the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  */

    CURSOR cur_old_ref_values IS
      SELECT   *
      FROM     igs_pe_eit
      WHERE    rowid = x_rowid;
Line: 50

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 80

    new_references.last_updated_by                   := x_last_updated_by;
Line: 81

    new_references.last_update_login                 := x_last_update_login;
Line: 140

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

      SELECT   rowid
      FROM     igs_pe_eit
      WHERE    pe_eit_id = x_pe_eit_id
      FOR UPDATE NOWAIT;
Line: 198

      SELECT   rowid
      FROM     igs_pe_eit
      WHERE    person_id = x_person_id
      AND      information_type = x_information_type
      AND      start_date = x_start_date
      AND      ((l_rowid IS NULL) OR (rowid <> l_rowid));
Line: 235

      SELECT   rowid
      FROM     igs_pe_eit
      WHERE   ((person_id = x_party_id));
Line: 258

 PROCEDURE BeforeRowInsertUpdate(
    p_inserting IN BOOLEAN,
    p_updating IN BOOLEAN,
    p_deleting IN BOOLEAN
    ) as
  ------------------------------------------------------------------------------------------
  --Created by  : vredkar
  --Date created: 18-JUL-2005
  --
  --Purpose:
  --Known limitations/enhancements and/or remarks:
  --
  --Change History:
  --Who         When            What
  ----------------------------------------------------------------------------------------------

  l_bth_dt IGS_PE_PERSON_BASE_V.birth_date%TYPE;
Line: 279

  SELECT birth_date
  FROM  IGS_PE_PERSON_BASE_V
  WHERE person_id = cp_person_id ;
Line: 285

  SELECT 'X'
  FROM igs_pe_eit
  WHERE person_id= cp_person_id
  AND information_type = cp_information_type
  AND cp_pe_eit_id <> pe_eit_id
  AND (cp_start_date between start_date AND NVL(end_date,l_default_date)
  OR cp_end_date between start_date AND NVL(end_date,l_default_date)
  OR (cp_start_date <= START_DATE
       AND NVL(cp_end_date,l_default_date) >= NVL(END_DATE,l_default_date)) );
Line: 300

       IF p_inserting OR p_updating THEN
	  OPEN validate_brth_dt(new_references.person_id);
Line: 348

 END BeforeRowInsertUpdate;
Line: 365

    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
  /*
  ||  Created By : cdcruz
  ||  Created On : 21-SEP-2001
  ||  Purpose : Initialises the columns, Checks Constraints, Calls the
  ||            Trigger Handlers for the table, before any DML operation.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  */
  BEGIN

    set_column_values (
      p_action,
      x_rowid,
      x_pe_eit_id,
      x_person_id,
      x_information_type,
      x_pei_information1,
      x_pei_information2,
      x_pei_information3,
      x_pei_information4,
      x_pei_information5,
      x_start_date,
      x_end_date,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 401

    IF (p_action = 'INSERT') THEN
      -- Call all the procedures related to Before Insert.
      BeforeRowInsertUpdate( TRUE, FALSE,FALSE );
Line: 414

    ELSIF (p_action = 'UPDATE') THEN
      -- Call all the procedures related to Before Update.
      BeforeRowInsertUpdate( FALSE,TRUE,FALSE );
Line: 419

    ELSIF (p_action = 'VALIDATE_INSERT') THEN
      -- Call all the procedures related to Before Insert.
      IF ( get_pk_for_validation (
             new_references.pe_eit_id
           )
         ) THEN
		  fnd_message.set_name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
Line: 430

    ELSIF (p_action = 'VALIDATE_UPDATE') THEN
      check_uniqueness;
Line: 437

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_pe_eit_id                         IN OUT NOCOPY NUMBER,
    x_person_id                         IN     NUMBER,
    x_information_type                  IN     VARCHAR2,
    x_pei_information1                  IN     VARCHAR2,
    x_pei_information2                  IN     VARCHAR2,
    x_pei_information3                  IN     VARCHAR2,
    x_pei_information4                  IN     VARCHAR2,
    x_pei_information5                  IN     VARCHAR2,
    x_start_date                        IN     DATE,
    x_end_date                          IN     DATE,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : cdcruz
  ||  Created On : 21-SEP-2001
  ||  Purpose : Handles the INSERT DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  */
    CURSOR c IS
      SELECT   rowid
      FROM     igs_pe_eit
      WHERE    pe_eit_id                         = x_pe_eit_id;
Line: 465

    x_last_update_date           DATE;
Line: 466

    x_last_updated_by            NUMBER;
Line: 467

    x_last_update_login          NUMBER;
Line: 471

    x_last_update_date := SYSDATE;
Line: 473

      x_last_updated_by := 1;
Line: 474

      x_last_update_login := 0;
Line: 476

      x_last_updated_by := fnd_global.user_id;
Line: 477

      IF (x_last_updated_by IS NULL) THEN
        x_last_updated_by := -1;
Line: 480

      x_last_update_login := fnd_global.login_id;
Line: 481

      IF (x_last_update_login IS NULL) THEN
        x_last_update_login := -1;
Line: 490

    SELECT    igs_pe_eit_s.NEXTVAL
    INTO      x_pe_eit_id
    FROM      dual;
Line: 495

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_pe_eit_id                         => x_pe_eit_id,
      x_person_id                         => x_person_id,
      x_information_type                  => x_information_type,
      x_pei_information1                  => x_pei_information1,
      x_pei_information2                  => x_pei_information2,
      x_pei_information3                  => x_pei_information3,
      x_pei_information4                  => x_pei_information4,
      x_pei_information5                  => x_pei_information5,
      x_start_date                        => x_start_date,
      x_end_date                          => x_end_date,
      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: 517

 INSERT INTO igs_pe_eit (
      pe_eit_id,
      person_id,
      information_type,
      pei_information1,
      pei_information2,
      pei_information3,
      pei_information4,
      pei_information5,
      start_date,
      end_date,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      new_references.pe_eit_id,
      new_references.person_id,
      new_references.information_type,
      new_references.pei_information1,
      new_references.pei_information2,
      new_references.pei_information3,
      new_references.pei_information4,
      new_references.pei_information5,
      new_references.start_date,
      new_references.end_date,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 576

 END insert_row;
Line: 602

      SELECT
        person_id,
        information_type,
        pei_information1,
        pei_information2,
        pei_information3,
        pei_information4,
        pei_information5,
        start_date,
        end_date
      FROM  igs_pe_eit
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 623

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_pe_eit_id                         IN     NUMBER,
    x_person_id                         IN     NUMBER,
    x_information_type                  IN     VARCHAR2,
    x_pei_information1                  IN     VARCHAR2,
    x_pei_information2                  IN     VARCHAR2,
    x_pei_information3                  IN     VARCHAR2,
    x_pei_information4                  IN     VARCHAR2,
    x_pei_information5                  IN     VARCHAR2,
    x_start_date                        IN     DATE,
    x_end_date                          IN     DATE,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : cdcruz
  ||  Created On : 21-SEP-2001
  ||  Purpose : Handles the UPDATE DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  */
    x_last_update_date           DATE ;
Line: 678

    x_last_updated_by            NUMBER;
Line: 679

    x_last_update_login          NUMBER;
Line: 683

    x_last_update_date := SYSDATE;
Line: 685

      x_last_updated_by := 1;
Line: 686

      x_last_update_login := 0;
Line: 688

      x_last_updated_by := fnd_global.user_id;
Line: 689

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

      x_last_update_login := fnd_global.login_id;
Line: 693

      IF (x_last_update_login IS NULL) THEN
        x_last_update_login := -1;
Line: 703

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_pe_eit_id                         => x_pe_eit_id,
      x_person_id                         => x_person_id,
      x_information_type                  => x_information_type,
      x_pei_information1                  => x_pei_information1,
      x_pei_information2                  => x_pei_information2,
      x_pei_information3                  => x_pei_information3,
      x_pei_information4                  => x_pei_information4,
      x_pei_information5                  => x_pei_information5,
      x_start_date                        => x_start_date,
      x_end_date                          => x_end_date,
      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: 725

 UPDATE igs_pe_eit
      SET
        person_id                         = new_references.person_id,
        information_type                  = new_references.information_type,
        pei_information1                  = new_references.pei_information1,
        pei_information2                  = new_references.pei_information2,
        pei_information3                  = new_references.pei_information3,
        pei_information4                  = new_references.pei_information4,
        pei_information5                  = new_references.pei_information5,
        start_date                        = new_references.start_date,
        end_date                          = new_references.end_date,
        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: 765

 END update_row;
Line: 785

  ||  Purpose : Adds a row if there is no existing row, otherwise updates existing row in the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  */
    CURSOR c1 IS
      SELECT   rowid
      FROM     igs_pe_eit
      WHERE    pe_eit_id                         = x_pe_eit_id;
Line: 803

      insert_row (
        x_rowid,
        x_pe_eit_id,
        x_person_id,
        x_information_type,
        x_pei_information1,
        x_pei_information2,
        x_pei_information3,
        x_pei_information4,
        x_pei_information5,
        x_start_date,
        x_end_date,
        x_mode
      );
Line: 821

    update_row (
      x_rowid,
      x_pe_eit_id,
      x_person_id,
      x_information_type,
      x_pei_information1,
      x_pei_information2,
      x_pei_information3,
      x_pei_information4,
      x_pei_information5,
      x_start_date,
      x_end_date,
      x_mode
    );
Line: 839

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2,
  x_mode IN VARCHAR2
  ) AS
  /*
  ||  Created By : cdcruz
  ||  Created On : 21-SEP-2001
  ||  Purpose : Handles the DELETE DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  */
  BEGIN

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

 DELETE FROM igs_pe_eit
    WHERE rowid = x_rowid;
Line: 876

  END delete_row;