DBA Data[Home] [Help]

APPS.IGS_PE_VISA_PKG SQL Statements

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

Line: 47

    x_last_update_date                  IN     DATE,
    x_last_updated_by                   IN     NUMBER,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 28-NOV-2002
  ||  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_visa
      WHERE    rowid = x_rowid;
Line: 74

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 128

    new_references.last_updated_by                   := x_last_updated_by;
Line: 129

    new_references.last_update_login                 := x_last_update_login;
Line: 133

  PROCEDURE beforerowinsertupdate(p_inserting BOOLEAN,p_updating BOOLEAN) AS
  /*
  ||  Created By : Npalanis
  ||  Created On : 5-MAR-2003
  ||  Purpose : Handles the Unique Constraint logic defined for the columns.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  pkpatel         13-Jun-2005     Added the validations for DOB, Dates and the POE Overlap
  ||  (reverse chronological order - newest change first)
  */
  CURSOR get_pass_exp_dt(p_passport_id igs_pe_passport.passport_id%TYPE)
  IS
  SELECT passport_expiry_date
  FROM  IGS_PE_PASSPORT
  WHERE passport_id = p_passport_id;
Line: 152

  SELECT birth_date
  FROM  igs_pe_person_base_v
  WHERE person_id = cp_person_id;
Line: 159

  SELECT 1
  FROM   igs_pe_visit_histry
  WHERE  visa_id = cp_visa_id AND
  (visit_start_date < cp_issue_date OR visit_end_date > cp_expiry_date+30);
Line: 169

    IF p_inserting or p_updating THEN
		  IF new_references.passport_id IS NOT NULL THEN
			 OPEN get_pass_exp_dt(new_references.passport_id);
Line: 220

  END beforerowinsertupdate;
Line: 267

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

         Fnd_Message.Set_Name ('FND','FORM_RECORD_DELETED');
Line: 318

      SELECT   rowid
      FROM     igs_pe_visa
      WHERE    visa_id = x_visa_id
      FOR UPDATE NOWAIT;
Line: 355

      SELECT   rowid
      FROM     igs_pe_visa
      WHERE    person_id = x_person_id
      AND      visa_type = x_visa_type
      AND      visa_issue_date = x_visa_issue_date
      AND      ((l_rowid IS NULL) OR (rowid <> l_rowid));
Line: 392

      SELECT   rowid
      FROM     igs_pe_visa
      WHERE   ((passport_id = x_passport_id));
Line: 453

    x_last_update_date                  IN     DATE,
    x_last_updated_by                   IN     NUMBER,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 28-NOV-2002
  ||  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_visa_id,
      x_person_id,
      x_visa_type,
      x_visa_number,
      x_visa_issue_date,
      x_visa_expiry_date,
      x_visa_category,
      x_visa_issuing_post,
      x_passport_id,
      x_agent_org_unit_cd,
      x_agent_person_id,
      x_agent_contact_name,
      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_visa_issuing_country,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 513

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

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

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

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

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

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

 PROCEDURE afterrowinsertupdate(
    p_inserting IN BOOLEAN,
    p_updating IN BOOLEAN,
    p_deleting IN BOOLEAN
    ) AS
  ------------------------------------------------------------------------------------------
  --Created by  : pkpatel
  --Date created: 24-FEB-2003
  --
  --Purpose:Bug 2783882. Moved the overlap validation from library post-forms-commit
  --
  --Known limitations/enhancements and/or remarks:
  --
  --Change History:
  --Who         When            What
  ----------------------------------------------------------------------------------------------
  CURSOR c_visa_overlap(cp_person_id igs_pe_visa.person_id%TYPE) IS
  SELECT count(1)
  FROM igs_pe_visa a ,igs_pe_visa b
  WHERE a.person_id = cp_person_id AND
        a.person_id = b.person_id AND
        a.rowid <> b.rowid        AND
        a.visa_expiry_date >=  b.visa_issue_date AND
        a.visa_expiry_date <= b.visa_expiry_date;
Line: 590

 END afterrowinsertupdate;
Line: 609

    IF (p_action = 'INSERT') THEN
      -- Call all the procedures related to After Insert.
      AfterRowInsertUpdate (
          p_inserting => TRUE,
          p_updating  => FALSE,
          p_deleting  => FALSE
         );
Line: 616

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

    ELSIF (p_action = 'DELETE') THEN
      -- Call all the procedures related to After Delete.
      Null;
Line: 629

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_visa_id                           IN OUT NOCOPY NUMBER,
    x_person_id                         IN     NUMBER,
    x_visa_type                         IN     VARCHAR2,
    x_visa_number                       IN     VARCHAR2,
    x_visa_issue_date                   IN     DATE,
    x_visa_expiry_date                  IN     DATE,
    x_visa_category                     IN     VARCHAR2,
    x_visa_issuing_post                 IN     VARCHAR2,
    x_passport_id                       IN     NUMBER,
    x_agent_org_unit_cd                 IN     VARCHAR2,
    x_agent_person_id                   IN     NUMBER,
    x_agent_contact_name                IN     VARCHAR2,
    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_visa_issuing_country              IN     VARCHAR2,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 28-NOV-2002
  ||  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)
  */

    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                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_visa_id                           => x_visa_id,
      x_person_id                         => x_person_id,
      x_visa_type                         => x_visa_type,
      x_visa_number                       => x_visa_number,
      x_visa_issue_date                   => x_visa_issue_date,
      x_visa_expiry_date                  => x_visa_expiry_date,
      x_visa_category                     => x_visa_category,
      x_visa_issuing_post                 => x_visa_issuing_post,
      x_passport_id                       => x_passport_id,
      x_agent_org_unit_cd                 => x_agent_org_unit_cd,
      x_agent_person_id                   => x_agent_person_id,
      x_agent_contact_name                => x_agent_contact_name,
      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_visa_issuing_country              => x_visa_issuing_country,
      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: 749

 INSERT INTO igs_pe_visa (
      visa_id,
      person_id,
      visa_type,
      visa_number,
      visa_issue_date,
      visa_expiry_date,
      visa_category,
      visa_issuing_post,
      passport_id,
      agent_org_unit_cd,
      agent_person_id,
      agent_contact_name,
      attribute_category,
      attribute1,
      attribute2,
      attribute3,
      attribute4,
      attribute5,
      attribute6,
      attribute7,
      attribute8,
      attribute9,
      attribute10,
      attribute11,
      attribute12,
      attribute13,
      attribute14,
      attribute15,
      attribute16,
      attribute17,
      attribute18,
      attribute19,
      attribute20,
      visa_issuing_country,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      igs_pe_visa_s.NEXTVAL,
      new_references.person_id,
      new_references.visa_type,
      new_references.visa_number,
      new_references.visa_issue_date,
      new_references.visa_expiry_date,
      new_references.visa_category,
      new_references.visa_issuing_post,
      new_references.passport_id,
      new_references.agent_org_unit_cd,
      new_references.agent_person_id,
      new_references.agent_contact_name,
      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,
      new_references.visa_issuing_country,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    ) RETURNING ROWID, visa_id INTO x_rowid, x_visa_id;
Line: 837

     p_action => 'INSERT',
     x_rowid => X_ROWID
   );
Line: 854

 END insert_row;
Line: 904

      SELECT
        person_id,
        visa_type,
        visa_number,
        visa_issue_date,
        visa_expiry_date,
        visa_category,
        visa_issuing_post,
        passport_id,
        agent_org_unit_cd,
        agent_person_id,
        agent_contact_name,
        attribute_category,
        attribute1,
        attribute2,
        attribute3,
        attribute4,
        attribute5,
        attribute6,
        attribute7,
        attribute8,
        attribute9,
        attribute10,
        attribute11,
        attribute12,
        attribute13,
        attribute14,
        attribute15,
        attribute16,
        attribute17,
        attribute18,
        attribute19,
        attribute20,
        visa_issuing_country
      FROM  igs_pe_visa
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 949

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_visa_id                           IN     NUMBER,
    x_person_id                         IN     NUMBER,
    x_visa_type                         IN     VARCHAR2,
    x_visa_number                       IN     VARCHAR2,
    x_visa_issue_date                   IN     DATE,
    x_visa_expiry_date                  IN     DATE,
    x_visa_category                     IN     VARCHAR2,
    x_visa_issuing_post                 IN     VARCHAR2,
    x_passport_id                       IN     NUMBER,
    x_agent_org_unit_cd                 IN     VARCHAR2,
    x_agent_person_id                   IN     NUMBER,
    x_agent_contact_name                IN     VARCHAR2,
    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_visa_issuing_country              IN     VARCHAR2,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 28-NOV-2002
  ||  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: 1052

    x_last_updated_by            NUMBER;
Line: 1053

    x_last_update_login          NUMBER;
Line: 1057

    x_last_update_date := SYSDATE;
Line: 1059

      x_last_updated_by := 1;
Line: 1060

      x_last_update_login := 0;
Line: 1062

      x_last_updated_by := fnd_global.user_id;
Line: 1063

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

      x_last_update_login := fnd_global.login_id;
Line: 1067

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_visa_id                           => x_visa_id,
      x_person_id                         => x_person_id,
      x_visa_type                         => x_visa_type,
      x_visa_number                       => x_visa_number,
      x_visa_issue_date                   => x_visa_issue_date,
      x_visa_expiry_date                  => x_visa_expiry_date,
      x_visa_category                     => x_visa_category,
      x_visa_issuing_post                 => x_visa_issuing_post,
      x_passport_id                       => x_passport_id,
      x_agent_org_unit_cd                 => x_agent_org_unit_cd,
      x_agent_person_id                   => x_agent_person_id,
      x_agent_contact_name                => x_agent_contact_name,
      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_visa_issuing_country              => x_visa_issuing_country,
      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: 1123

 UPDATE igs_pe_visa
      SET
        person_id                         = new_references.person_id,
        visa_type                         = new_references.visa_type,
        visa_number                       = new_references.visa_number,
        visa_issue_date                   = new_references.visa_issue_date,
        visa_expiry_date                  = new_references.visa_expiry_date,
        visa_category                     = new_references.visa_category,
        visa_issuing_post                 = new_references.visa_issuing_post,
        passport_id                       = new_references.passport_id,
        agent_org_unit_cd                 = new_references.agent_org_unit_cd,
        agent_person_id                   = new_references.agent_person_id,
        agent_contact_name                = new_references.agent_contact_name,
        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,
        visa_issuing_country              = new_references.visa_issuing_country,
        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: 1175

    p_action => 'UPDATE',
    x_rowid => X_ROWID
    );
Line: 1192

 END update_row;
Line: 1236

  ||  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_visa
      WHERE    visa_id                           = x_visa_id;
Line: 1254

      insert_row (
        x_rowid,
        x_visa_id,
        x_person_id,
        x_visa_type,
        x_visa_number,
        x_visa_issue_date,
        x_visa_expiry_date,
        x_visa_category,
        x_visa_issuing_post,
        x_passport_id,
        x_agent_org_unit_cd,
        x_agent_person_id,
        x_agent_contact_name,
        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_visa_issuing_country,
        x_mode
      );
Line: 1296

    update_row (
      x_rowid,
      x_visa_id,
      x_person_id,
      x_visa_type,
      x_visa_number,
      x_visa_issue_date,
      x_visa_expiry_date,
      x_visa_category,
      x_visa_issuing_post,
      x_passport_id,
      x_agent_org_unit_cd,
      x_agent_person_id,
      x_agent_contact_name,
      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_visa_issuing_country,
      x_mode
    );
Line: 1338

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2,
    x_mode IN VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 28-NOV-2002
  ||  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: 1361

 DELETE FROM igs_pe_visa
    WHERE rowid = x_rowid;
Line: 1375

  END delete_row;