DBA Data[Home] [Help]

APPS.IGS_AD_PNMEMBR_DTLS_PKG SQL Statements

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

Line: 44

    x_last_update_date                  IN     DATE,
    x_last_updated_by                   IN     NUMBER,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By : Navin Sinha
  ||  Created On : 16-JUN-2003
  ||  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_ad_pnmembr_dtls
      WHERE    rowid = x_rowid;
Line: 72

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 123

    new_references.last_updated_by                   := x_last_updated_by;
Line: 124

    new_references.last_update_login                 := x_last_update_login;
Line: 147

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

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

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

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

        FND_MESSAGE.SET_NAME('FND','FORM_RECORD_DELETED');
Line: 241

      SELECT   rowid
      FROM     igs_ad_pnmembr_dtls
      WHERE    panel_dtls_id = x_panel_dtls_id
      AND      member_person_id = x_member_person_id
      FOR UPDATE NOWAIT;
Line: 277

      SELECT   rowid
      FROM     igs_ad_pnmembr_dtls
      WHERE   ((panel_dtls_id = x_panel_dtls_id));
Line: 313

      SELECT   rowid
      FROM     igs_ad_pnmembr_dtls
      WHERE   ((member_decision_code = x_name) AND
               (member_decision_type = x_class));
Line: 349

      SELECT   rowid
      FROM     igs_ad_pnmembr_dtls
      WHERE   ((location_cd = x_location_cd));
Line: 384

      SELECT   rowid
      FROM     igs_ad_pnmembr_dtls
      WHERE   ((room_id = x_room_id));
Line: 405

  PROCEDURE beforerowinsertupdatedelete1 (
                             p_inserting BOOLEAN,
                             p_updating BOOLEAN,
                             p_deleting BOOLEAN ) IS

    ----------------------------------------------------------------
    --Created by  : Navin Sinha
    --Date created: 16-Jun-03
    --
    --Purpose: BUG NO : 1366894 - Interview Build.
    --
    --
    --Known limitations/enhancements and/or remarks:
    --
    --Change History:
    --Who         When            What
    ----------------------------------------------------------------
    -- Cursor to check if person type of interviewer exists.
    CURSOR c_interviewer_exist IS
      SELECT 'x'
      FROM   IGS_PE_TYP_INSTANCES_ALL TI,
        IGS_PE_PERSON_TYPES PT
       WHERE  ti.person_id = new_references.member_person_id
      AND pt.system_type = 'INTERVIEWER'
      AND    (ti.end_date is NULL OR (ti.end_date IS NOT NULL AND trunc(ti.end_date) > trunc(SYSDATE)))
      AND     TI.PERSON_TYPE_CODE = PT.PERSON_TYPE_CODE;
Line: 436

    SELECT appl_dt
    FROM   igs_ad_panel_dtls pd,
           igs_ad_appl aa
    WHERE  pd.panel_dtls_id =  new_references.panel_dtls_id
    AND    pd.admission_appl_number = aa.admission_appl_number
    AND    pd.person_id = aa.person_id;
Line: 447

    SELECT *
    FROM   igs_ad_panel_dtls
    WHERE  panel_dtls_id = cp_panel_dtls_id;
Line: 459

   SELECT *
   FROM   igs_ad_code_classes
   WHERE  system_status = 'PENDING'
   AND    name = new_references.member_decision_code
   AND    class = new_references.member_decision_type
   AND    closed_ind = 'N'
   AND    CLASS_TYPE_CODE='ADM_CODE_CLASSES';
Line: 470

   SELECT  person_id,admission_appl_number,nominated_course_Cd,sequence_number
   FROM  igs_ad_panel_dtls pdtls,
         igs_Ad_pnmembr_Dtls  pmbr
   WHERE  pdtls.panel_Dtls_id = pmbr.panel_dtls_id
   AND    pmbr.panel_dtls_id = NVL(old_references.panel_dtls_id, new_references.panel_dtls_id);
Line: 479

   SELECT   'X'
   FROM igs_ad_intvw_pnls pnls,
        igs_ad_panel_dtls pdtls
   WHERE  pnls.panel_type_code='INTERVIEW'
   AND  pnls.panel_code = pdtls.panel_code
   AND pdtls.person_id = cp_instance_rec.person_id
   AND  pdtls.admission_appl_number = cp_instance_rec.admission_appl_number
   AND  pdtls.nominated_course_Cd  = cp_instance_rec.nominated_course_Cd
   AND pdtls.sequence_number  = cp_instance_rec.sequence_number;
Line: 493

   SELECT *
   FROM   igs_ad_code_classes
   WHERE  system_status = 'PENDING'
   AND    class = cp_panel_type_code           --'INTERVIEW', 'SCREENING', 'FINAL_SCREENING', 'FINAL_INTERVIEW'
   AND    NVL(system_default, 'N') = 'Y'
   AND    closed_ind = 'N'
   AND    CLASS_TYPE_CODE='ADM_CODE_CLASSES';
Line: 505

   SELECT ip.panel_type_Code
   FROM   igs_ad_intvw_pnls ip,
	  igs_ad_panel_dtls pd
   WHERE  ip.panel_code = pd.panel_code
     AND pd.panel_dtls_id = new_references.panel_dtls_id;
Line: 515

   SELECT meaning
   FROM   igs_lookups_view
   WHERE  lookup_type = cp_lookup_type
   AND    lookup_code = cp_lookup_code;
Line: 525

    IF NVL(p_inserting,FALSE) THEN
      -- A Person added to a panel must have the system person type of Interviewer. Else raise an error message.
      OPEN c_interviewer_exist;
Line: 579

    IF NVL(p_inserting,FALSE) OR NVL(p_updating,FALSE) THEN
        -- Check if member Decisions is mapped to the system defaulted Decisions of 'PENDING'
        OPEN cur_dflt_panl_cd;
Line: 632

              fnd_message.set_name('IGS','IGS_AD_PNL_FNL_DECISION_EXITS');  -- Message: Cannot update/insert  panel member's information when the panel final decision is already recorded.
Line: 638

    IF  NVL(p_inserting,FALSE) OR NVL(p_updating,FALSE) OR NVL(p_deleting,FALSE) THEN
      IF new_references.member_decision_type = 'SCREENING' OR old_references.member_decision_type = 'SCREENING' THEN
          OPEN  c_instance_dets;
Line: 648

              fnd_message.set_name('IGS','IGS_AD_INTVW_PNL_EXITS');  -- Message: Cannot update screening information when interview panel is already associated to the application instance.
Line: 661

        fnd_message.set_name('IGS','IGS_AD_PNL_IS_CLOSED');  -- Message: Cannot update or delete a closed panel.
Line: 678

        fnd_message.set_name('IGS','IGS_AD_NO_UPD_VOID_DECISION');  -- Message: Cannot update the reviewer's decision as it is mapped to a status of Voided.
Line: 701

        fnd_message.set_name('IGS','IGS_AD_PNL_DECISION_EXITS');  -- Message: Cannot delete the panel member when the decision is already recorded.
Line: 706

  END beforerowinsertupdatedelete1;
Line: 744

    x_last_update_date                  IN     DATE,
    x_last_updated_by                   IN     NUMBER,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By : Navin Sinha
  ||  Created On : 16-JUN-2003
  ||  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_panel_dtls_id,
      x_role_type_code,
      x_member_person_id,
      x_interview_date,
      x_interview_time,
      x_location_cd,
      x_room_id,
      x_member_decision_code,
      x_member_decision_type,
      x_member_decision_date,
      x_attribute_category,
      x_attribute1,
      x_attribute2,
      x_attribute3,
      x_attribute4,
      x_attribute5,
      x_attribute6,
      x_attribute7,
      x_attribute8,
      x_attribute9,
      x_attribute10,
      x_attribute11,
      x_attribute12,
      x_attribute13,
      x_attribute14,
      x_attribute15,
      x_attribute16,
      x_attribute17,
      x_attribute18,
      x_attribute19,
      x_attribute20,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 801

    IF (p_action = 'INSERT') THEN
      -- Call all the procedures related to Before Insert.
      IF ( get_pk_for_validation(
             new_references.panel_dtls_id,
             new_references.member_person_id
           )
         ) THEN
        fnd_message.set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
Line: 812

      beforerowinsertupdatedelete1( p_inserting => TRUE , p_updating => FALSE, p_deleting=> FALSE);
Line: 814

    ELSIF (p_action = 'UPDATE') THEN
      -- Call all the procedures related to Before Update.
      beforerowinsertupdatedelete1( p_inserting => FALSE , p_updating => TRUE, p_deleting=> FALSE);
Line: 818

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

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

      beforerowinsertupdatedelete1( p_inserting => TRUE , p_updating => FALSE, p_deleting=> FALSE);
Line: 834

    ELSIF (p_action = 'VALIDATE_DELETE') THEN
      beforerowinsertupdatedelete1( p_inserting => FALSE , p_updating => FALSE, p_deleting=> TRUE);
Line: 842

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_panel_dtls_id                     IN     NUMBER,
    x_role_type_code                         IN     VARCHAR2,
    x_member_person_id                  IN     NUMBER,
    x_interview_date                    IN     DATE,
    x_interview_time                    IN     DATE,
    x_location_cd                       IN     VARCHAR2,
    x_room_id                           IN     NUMBER,
    x_member_decision_code              IN     VARCHAR2,
    x_member_decision_type              IN     VARCHAR2,
    x_member_decision_date              IN     DATE,
    x_attribute_category                IN     VARCHAR2,
    x_attribute1                        IN     VARCHAR2,
    x_attribute2                        IN     VARCHAR2,
    x_attribute3                        IN     VARCHAR2,
    x_attribute4                        IN     VARCHAR2,
    x_attribute5                        IN     VARCHAR2,
    x_attribute6                        IN     VARCHAR2,
    x_attribute7                        IN     VARCHAR2,
    x_attribute8                        IN     VARCHAR2,
    x_attribute9                        IN     VARCHAR2,
    x_attribute10                       IN     VARCHAR2,
    x_attribute11                       IN     VARCHAR2,
    x_attribute12                       IN     VARCHAR2,
    x_attribute13                       IN     VARCHAR2,
    x_attribute14                       IN     VARCHAR2,
    x_attribute15                       IN     VARCHAR2,
    x_attribute16                       IN     VARCHAR2,
    x_attribute17                       IN     VARCHAR2,
    x_attribute18                       IN     VARCHAR2,
    x_attribute19                       IN     VARCHAR2,
    x_attribute20                       IN     VARCHAR2,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : Navin Sinha
  ||  Created On : 16-JUN-2003
  ||  Purpose : Handles the INSERT DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  ravishar      05/27/05        Security related changes
  ||  (reverse chronological order - newest change first)
  */

    x_last_update_date           DATE;
Line: 889

    x_last_updated_by            NUMBER;
Line: 890

    x_last_update_login          NUMBER;
Line: 894

    x_last_update_date := SYSDATE;
Line: 896

      x_last_updated_by := 1;
Line: 897

      x_last_update_login := 0;
Line: 899

      x_last_updated_by := fnd_global.user_id;
Line: 900

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

      x_last_update_login := fnd_global.login_id;
Line: 904

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

      fnd_message.set_token ('ROUTINE', 'IGS_AD_PNMEMBR_DTLS_PKG.INSERT_ROW');
Line: 915

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_panel_dtls_id                     => x_panel_dtls_id,
      x_role_type_code                         => x_role_type_code,
      x_member_person_id                  => x_member_person_id,
      x_interview_date                    => x_interview_date,
      x_interview_time                    => x_interview_time,
      x_location_cd                       => x_location_cd,
      x_room_id                           => x_room_id,
      x_member_decision_code              => x_member_decision_code,
      x_member_decision_type              => x_member_decision_type,
      x_member_decision_date              => x_member_decision_date,
      x_attribute_category                => x_attribute_category,
      x_attribute1                        => x_attribute1,
      x_attribute2                        => x_attribute2,
      x_attribute3                        => x_attribute3,
      x_attribute4                        => x_attribute4,
      x_attribute5                        => x_attribute5,
      x_attribute6                        => x_attribute6,
      x_attribute7                        => x_attribute7,
      x_attribute8                        => x_attribute8,
      x_attribute9                        => x_attribute9,
      x_attribute10                       => x_attribute10,
      x_attribute11                       => x_attribute11,
      x_attribute12                       => x_attribute12,
      x_attribute13                       => x_attribute13,
      x_attribute14                       => x_attribute14,
      x_attribute15                       => x_attribute15,
      x_attribute16                       => x_attribute16,
      x_attribute17                       => x_attribute17,
      x_attribute18                       => x_attribute18,
      x_attribute19                       => x_attribute19,
      x_attribute20                       => x_attribute20,
      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: 958

 INSERT INTO igs_ad_pnmembr_dtls (
      panel_dtls_id,
      role_type_code,
      member_person_id,
      interview_date,
      interview_time,
      location_cd,
      room_id,
      member_decision_code,
      member_decision_type,
      member_decision_date,
      attribute_category,
      attribute1,
      attribute2,
      attribute3,
      attribute4,
      attribute5,
      attribute6,
      attribute7,
      attribute8,
      attribute9,
      attribute10,
      attribute11,
      attribute12,
      attribute13,
      attribute14,
      attribute15,
      attribute16,
      attribute17,
      attribute18,
      attribute19,
      attribute20,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      new_references.panel_dtls_id,
      new_references.role_type_code,
      new_references.member_person_id,
      new_references.interview_date,
      new_references.interview_time,
      new_references.location_cd,
      new_references.room_id,
      new_references.member_decision_code,
      new_references.member_decision_type,
      new_references.member_decision_date,
      new_references.attribute_category,
      new_references.attribute1,
      new_references.attribute2,
      new_references.attribute3,
      new_references.attribute4,
      new_references.attribute5,
      new_references.attribute6,
      new_references.attribute7,
      new_references.attribute8,
      new_references.attribute9,
      new_references.attribute10,
      new_references.attribute11,
      new_references.attribute12,
      new_references.attribute13,
      new_references.attribute14,
      new_references.attribute15,
      new_references.attribute16,
      new_references.attribute17,
      new_references.attribute18,
      new_references.attribute19,
      new_references.attribute20,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    ) RETURNING ROWID INTO x_rowid;
Line: 1056

 END insert_row;
Line: 1103

      SELECT
        role_type_code,
        interview_date,
        interview_time,
        location_cd,
        room_id,
        member_decision_code,
        member_decision_type,
        member_decision_date,
        attribute_category,
        attribute1,
        attribute2,
        attribute3,
        attribute4,
        attribute5,
        attribute6,
        attribute7,
        attribute8,
        attribute9,
        attribute10,
        attribute11,
        attribute12,
        attribute13,
        attribute14,
        attribute15,
        attribute16,
        attribute17,
        attribute18,
        attribute19,
        attribute20
      FROM  igs_ad_pnmembr_dtls
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 1144

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_panel_dtls_id                     IN     NUMBER,
    x_role_type_code                         IN     VARCHAR2,
    x_member_person_id                  IN     NUMBER,
    x_interview_date                    IN     DATE,
    x_interview_time                    IN     DATE,
    x_location_cd                       IN     VARCHAR2,
    x_room_id                           IN     NUMBER,
    x_member_decision_code              IN     VARCHAR2,
    x_member_decision_type              IN     VARCHAR2,
    x_member_decision_date              IN     DATE,
    x_attribute_category                IN     VARCHAR2,
    x_attribute1                        IN     VARCHAR2,
    x_attribute2                        IN     VARCHAR2,
    x_attribute3                        IN     VARCHAR2,
    x_attribute4                        IN     VARCHAR2,
    x_attribute5                        IN     VARCHAR2,
    x_attribute6                        IN     VARCHAR2,
    x_attribute7                        IN     VARCHAR2,
    x_attribute8                        IN     VARCHAR2,
    x_attribute9                        IN     VARCHAR2,
    x_attribute10                       IN     VARCHAR2,
    x_attribute11                       IN     VARCHAR2,
    x_attribute12                       IN     VARCHAR2,
    x_attribute13                       IN     VARCHAR2,
    x_attribute14                       IN     VARCHAR2,
    x_attribute15                       IN     VARCHAR2,
    x_attribute16                       IN     VARCHAR2,
    x_attribute17                       IN     VARCHAR2,
    x_attribute18                       IN     VARCHAR2,
    x_attribute19                       IN     VARCHAR2,
    x_attribute20                       IN     VARCHAR2,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : Navin Sinha
  ||  Created On : 16-JUN-2003
  ||  Purpose : Handles the UPDATE DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  ravishar      05/27/05        Security related changes
  ||  (reverse chronological order - newest change first)
  */
    x_last_update_date           DATE ;
Line: 1241

    x_last_updated_by            NUMBER;
Line: 1242

    x_last_update_login          NUMBER;
Line: 1246

    x_last_update_date := SYSDATE;
Line: 1248

      x_last_updated_by := 1;
Line: 1249

      x_last_update_login := 0;
Line: 1251

      x_last_updated_by := fnd_global.user_id;
Line: 1252

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

      x_last_update_login := fnd_global.login_id;
Line: 1256

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

      fnd_message.set_token ('ROUTINE', 'IGS_AD_PNMEMBR_DTLS_PKG.UPDATE_ROW');
Line: 1267

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_panel_dtls_id                     => x_panel_dtls_id,
      x_role_type_code                         => x_role_type_code,
      x_member_person_id                  => x_member_person_id,
      x_interview_date                    => x_interview_date,
      x_interview_time                    => x_interview_time,
      x_location_cd                       => x_location_cd,
      x_room_id                           => x_room_id,
      x_member_decision_code              => x_member_decision_code,
      x_member_decision_type              => x_member_decision_type,
      x_member_decision_date              => x_member_decision_date,
      x_attribute_category                => x_attribute_category,
      x_attribute1                        => x_attribute1,
      x_attribute2                        => x_attribute2,
      x_attribute3                        => x_attribute3,
      x_attribute4                        => x_attribute4,
      x_attribute5                        => x_attribute5,
      x_attribute6                        => x_attribute6,
      x_attribute7                        => x_attribute7,
      x_attribute8                        => x_attribute8,
      x_attribute9                        => x_attribute9,
      x_attribute10                       => x_attribute10,
      x_attribute11                       => x_attribute11,
      x_attribute12                       => x_attribute12,
      x_attribute13                       => x_attribute13,
      x_attribute14                       => x_attribute14,
      x_attribute15                       => x_attribute15,
      x_attribute16                       => x_attribute16,
      x_attribute17                       => x_attribute17,
      x_attribute18                       => x_attribute18,
      x_attribute19                       => x_attribute19,
      x_attribute20                       => x_attribute20,
      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: 1310

 UPDATE igs_ad_pnmembr_dtls
      SET
        role_type_code                         = new_references.role_type_code,
        interview_date                    = new_references.interview_date,
        interview_time                    = new_references.interview_time,
        location_cd                       = new_references.location_cd,
        room_id                           = new_references.room_id,
        member_decision_code              = new_references.member_decision_code,
        member_decision_type              = new_references.member_decision_type,
        member_decision_date              = new_references.member_decision_date,
        attribute_category                = new_references.attribute_category,
        attribute1                        = new_references.attribute1,
        attribute2                        = new_references.attribute2,
        attribute3                        = new_references.attribute3,
        attribute4                        = new_references.attribute4,
        attribute5                        = new_references.attribute5,
        attribute6                        = new_references.attribute6,
        attribute7                        = new_references.attribute7,
        attribute8                        = new_references.attribute8,
        attribute9                        = new_references.attribute9,
        attribute10                       = new_references.attribute10,
        attribute11                       = new_references.attribute11,
        attribute12                       = new_references.attribute12,
        attribute13                       = new_references.attribute13,
        attribute14                       = new_references.attribute14,
        attribute15                       = new_references.attribute15,
        attribute16                       = new_references.attribute16,
        attribute17                       = new_references.attribute17,
        attribute18                       = new_references.attribute18,
        attribute19                       = new_references.attribute19,
        attribute20                       = new_references.attribute20,
        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: 1377

  END update_row;
Line: 1418

  ||  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_ad_pnmembr_dtls
      WHERE    panel_dtls_id                     = x_panel_dtls_id
      AND      member_person_id                  = x_member_person_id;
Line: 1437

      insert_row (
        x_rowid,
        x_panel_dtls_id,
        x_role_type_code,
        x_member_person_id,
        x_interview_date,
        x_interview_time,
        x_location_cd,
        x_room_id,
        x_member_decision_code,
        x_member_decision_type,
        x_member_decision_date,
        x_attribute_category,
        x_attribute1,
        x_attribute2,
        x_attribute3,
        x_attribute4,
        x_attribute5,
        x_attribute6,
        x_attribute7,
        x_attribute8,
        x_attribute9,
        x_attribute10,
        x_attribute11,
        x_attribute12,
        x_attribute13,
        x_attribute14,
        x_attribute15,
        x_attribute16,
        x_attribute17,
        x_attribute18,
        x_attribute19,
        x_attribute20,
        l_mode
      );
Line: 1476

    update_row (
      x_rowid,
      x_panel_dtls_id,
      x_role_type_code,
      x_member_person_id,
      x_interview_date,
      x_interview_time,
      x_location_cd,
      x_room_id,
      x_member_decision_code,
      x_member_decision_type,
      x_member_decision_date,
      x_attribute_category,
      x_attribute1,
      x_attribute2,
      x_attribute3,
      x_attribute4,
      x_attribute5,
      x_attribute6,
      x_attribute7,
      x_attribute8,
      x_attribute9,
      x_attribute10,
      x_attribute11,
      x_attribute12,
      x_attribute13,
      x_attribute14,
      x_attribute15,
      x_attribute16,
      x_attribute17,
      x_attribute18,
      x_attribute19,
      x_attribute20,
      l_mode
    );
Line: 1515

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2,
  x_mode IN VARCHAR2
  ) AS
  /*
  ||  Created By : Navin Sinha
  ||  Created On : 16-JUN-2003
  ||  Purpose : Handles the DELETE DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  ravishar      5/30/2005        Security related changes
  ||  (reverse chronological order - newest change first)
  */
  BEGIN

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

 DELETE FROM igs_ad_pnmembr_dtls
    WHERE rowid = x_rowid;
Line: 1573

  END delete_row;