DBA Data[Home] [Help]

APPS.IGI_DOS_TRX_HEADERS_PKG SQL Statements

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

Line: 65

    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 : 02-MAY-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     igi_dos_trx_headers
      WHERE    rowid = x_rowid;
Line: 92

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 159

    new_references.last_updated_by                   := x_last_updated_by;
Line: 160

    new_references.last_update_login                 := x_last_update_login;
Line: 173

  PROCEDURE BeforeRowUpdate1(
    p_updating  IN BOOLEAN
  ) AS
x_history_trx_id number;
Line: 184

       SELECT   igi_dos_trx_headers_hist_s.NEXTVAL
--
-- Bug 2897525 End(1)
--
       into     x_history_trx_id
       from     dual;
Line: 191

        insert into igi_dos_trx_headers_hist
                 (
                  trx_id                     ,
                  dossier_name               ,
                  trx_number                 ,
                  packet_id                  ,
                  trx_status                 ,
                  dossier_id                 ,
 		  dossier_transaction_name   ,
                  description                ,
                  last_update_date           ,
                  history_trx_id
                   )
                   values (
                    new_references.trx_id                     ,
                    new_references.dossier_name               ,
                    new_references.trx_number                 ,
                    new_references.packet_id                  ,
                    new_references.trx_status                 ,
                    new_references.dossier_id                 ,
                    new_references.dossier_transaction_name   ,
                    new_references.description                ,
                    new_references.last_update_date           ,
                    x_history_trx_id
                  );
Line: 220

INSERT INTO igi_dos_trx_sources_hist
 (
  sob_id                  ,
  trx_id                  ,
  source_trx_id           ,
  source_id               ,
  code_combination_id     ,
  profile_code            ,
  budget_org_id           ,
  budget_entity_id        ,
  budget_amount           ,
  funds_available         ,
  new_balance             ,
  currency_code           ,
  visible_segments        ,
  actual_segments         ,
  mrc_budget_amount       ,
  mrc_budget_amt_exch_rate      ,
  mrc_budget_amt_exch_rate_type  ,
  mrc_budget_amt_exch_date   ,
  mrc_budget_amt_exch_status  ,
  mrc_funds_avail            ,
  mrc_funds_avail_exch_rate  ,
  mrc_funds_avail_exch_rate_type  ,
  mrc_funds_avail_exch_date  ,
  mrc_funds_avail_exch_status  ,
  mrc_new_balance            ,
  mrc_new_balance_exch_rate  ,
  mrc_new_balance_exch_rate_type  ,
  mrc_new_balance_exch_date  ,
  mrc_new_balance_exch_status  ,
  budget_name                ,
  dossier_id                 ,
  budget_version_id          ,
  period_name                ,
  status                     ,
  group_id                   ,
  quarter_num                ,
  period_year                ,
  period_num                 ,
  history_trx_id)
  SELECT
  sob_id                  ,
  trx_id                  ,
  source_trx_id           ,
  source_id               ,
  code_combination_id     ,
  profile_code            ,
  budget_org_id           ,
  budget_entity_id        ,
  budget_amount           ,
  funds_available         ,
  new_balance             ,
  currency_code           ,
  visible_segments        ,
  actual_segments         ,
  mrc_budget_amount       ,
  mrc_budget_amt_exch_rate      ,
  mrc_budget_amt_exch_rate_type  ,
  mrc_budget_amt_exch_date   ,
  mrc_budget_amt_exch_status  ,
  mrc_funds_avail            ,
  mrc_funds_avail_exch_rate  ,
  mrc_funds_avail_exch_rate_type  ,
  mrc_funds_avail_exch_date  ,
  mrc_funds_avail_exch_status  ,
  mrc_new_balance            ,
  mrc_new_balance_exch_rate
,
  mrc_new_balance_exch_rate_type  ,
  mrc_new_balance_exch_date  ,
  mrc_new_balance_exch_status  ,
  budget_name                ,
  dossier_id                 ,
  budget_version_id          ,
  period_name                ,
  status                     ,
  group_id                   ,
  quarter_num                ,
  period_year                ,
  period_num                 ,
  x_history_trx_id
  from igi_dos_trx_sources
  where trx_id = new_references.trx_id;
Line: 305

  insert into igi_dos_trx_dest_hist
 (
  sob_id                     ,
  trx_id                     ,
  dest_trx_id                ,
  source_id                  ,
  destination_id             ,
  code_combination_id        ,
  profile_code               ,
  budget_name                ,
  budget_entity_id           ,
  budget_amount              ,
  funds_available            ,
  new_balance                ,
  currency_code              ,
  visible_segments           ,
  actual_segments            ,
  mrc_budget_amount          ,
  mrc_budget_amt_exch_rate   ,
  mrc_budget_amt_exch_rate_type  ,
  mrc_budget_amt_exch_date   ,
  mrc_budget_amt_exch_status  ,
  mrc_funds_avail            ,
  mrc_funds_avail_exch_rate  ,
  mrc_funds_avail_exch_rate_type  ,
  mrc_funds_avail_exch_date  ,
  mrc_funds_avail_exch_status  ,
  mrc_new_balance            ,
  mrc_new_balance_exch_rate  ,
  mrc_new_balance_exch_rate_type  ,
  mrc_new_balance_exch_date  ,
  mrc_new_balance_exch_status  ,
  dossier_id                 ,
  budget_version_id          ,
  period_name                ,
  percentage                 ,
  status                     ,
  group_id                   ,
  quarter_num                ,
  period_year                ,
  period_num                 ,
  history_trx_id
 )
 select
  sob_id                     ,
  trx_id                     ,
  dest_trx_id                ,
  source_id                  ,
  destination_id             ,
  code_combination_id        ,
  profile_code               ,
  budget_name                ,
  budget_entity_id           ,
  budget_amount              ,
  funds_available            ,
  new_balance                ,
  currency_code              ,
  visible_segments           ,
  actual_segments            ,
  mrc_budget_amount          ,
  mrc_budget_amt_exch_rate   ,
  mrc_budget_amt_exch_rate_type  ,
  mrc_budget_amt_exch_date   ,
  mrc_budget_amt_exch_status  ,
  mrc_funds_avail            ,
  mrc_funds_avail_exch_rate  ,

mrc_funds_avail_exch_rate_type  ,
  mrc_funds_avail_exch_date  ,
  mrc_funds_avail_exch_status  ,
  mrc_new_balance            ,
  mrc_new_balance_exch_rate  ,
  mrc_new_balance_exch_rate_type  ,
  mrc_new_balance_exch_date  ,
  mrc_new_balance_exch_status  ,
  dossier_id                 ,
  budget_version_id          ,
  period_name                ,
  percentage                 ,
  status                     ,
  group_id                   ,
  quarter_num                ,
  period_year                ,
  period_num                 ,
  x_history_trx_id
 from igi_dos_trx_dest
 where trx_id = new_references.trx_id;
Line: 394

  END BeforeRowUpdate1;
Line: 415

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

      SELECT   rowid
      FROM     igi_dos_trx_headers
      WHERE    trx_id = x_trx_id
      FOR UPDATE NOWAIT;
Line: 507

      SELECT   rowid
      FROM     igi_dos_trx_headers
      WHERE   ((dossier_id = x_dossier_id));
Line: 519

      fnd_message.set_name ('FND', 'FND-CANNOT DELETE MASTER');
Line: 581

    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 : 02-MAY-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_sob_id,
      x_trx_id,
      x_dossier_name,
      x_trx_number,
      x_packet_id,
      x_trx_status,
      x_dossier_id,
      x_dossier_transaction_name,
      x_description,
      x_funds_status,
      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_attribute21,
      x_attribute22,
      x_attribute23,
      x_attribute24,
      x_attribute25,
      x_attribute26,
      x_attribute27,
      x_attribute28,
      x_attribute29,
      x_attribute30,
      x_parent_trx_id,
      x_parent_trx_number,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 650

    IF (p_action = 'INSERT') THEN
      -- Call all the procedures related to Before Insert.
      IF ( get_pk_for_validation(
             new_references.trx_id
           )
         ) THEN
        fnd_message.set_name('FND','FORM_DUPLICATE_KEY_IN_INDEX');
Line: 665

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

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

    ELSIF (p_action = 'VALIDATE_INSERT') THEN
      -- Call all the procedures related to Before Insert.
      IF ( get_pk_for_validation (
             new_references.trx_id
           )
         ) THEN
        fnd_message.set_name('FND','FORM_DUPLICATE_KEY_IN_INDEX');
Line: 686

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_sob_id							IN NUMBER,
    x_trx_id                            IN OUT NOCOPY NUMBER,
    x_dossier_name                      IN     VARCHAR2,
    x_trx_number                        IN     VARCHAR2,
    x_packet_id                         IN     NUMBER,
    x_trx_status                        IN     VARCHAR2,
    x_dossier_id                        IN     NUMBER,
    x_dossier_transaction_name          IN     VARCHAR2,
    x_description                       IN     VARCHAR2,
    x_funds_status                      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_attribute21                       IN     VARCHAR2,
    x_attribute22                       IN     VARCHAR2,
    x_attribute23                       IN     VARCHAR2,
    x_attribute24                       IN     VARCHAR2,
    x_attribute25                       IN     VARCHAR2,
    x_attribute26                       IN     VARCHAR2,
    x_attribute27                       IN     VARCHAR2,
    x_attribute28                       IN     VARCHAR2,
    x_attribute29                       IN     VARCHAR2,
    x_attribute30                       IN     VARCHAR2,
    x_parent_trx_id                     IN     NUMBER,
    x_parent_trx_number                 IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 02-MAY-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)
  */
    CURSOR c IS
      SELECT   rowid
      FROM     igi_dos_trx_headers
      WHERE    trx_id                            = x_trx_id;
Line: 753

    x_last_update_date           DATE;
Line: 754

    x_last_updated_by            NUMBER;
Line: 755

    x_last_update_login          NUMBER;
Line: 766

    x_last_update_date := SYSDATE;
Line: 768

      x_last_updated_by := 1;
Line: 769

      x_last_update_login := 0;
Line: 771

      x_last_updated_by := fnd_global.user_id;
Line: 772

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

      x_last_update_login := fnd_global.login_id;
Line: 776

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

         FND_LOG.MESSAGE(l_unexp_level, 'igi.plsql.igi_dos_trx_headers_pkg.insert_row.Msg1',FALSE);
Line: 789

    SELECT    igi_dos_trx_headers_s.NEXTVAL
    INTO      x_trx_id
    FROM      dual;
Line: 794

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_sob_id                            => x_sob_id,
      x_trx_id                            => x_trx_id,
      x_dossier_name                      => x_dossier_name,
      x_trx_number                        => x_trx_number,
      x_packet_id                         => x_packet_id,
      x_trx_status                        => x_trx_status,
      x_dossier_id                        => x_dossier_id,
      x_dossier_transaction_name          => x_dossier_transaction_name,
      x_description                       => x_description,
      x_funds_status                      => x_funds_status,
      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_attribute21                       => x_attribute21,
      x_attribute22                       => x_attribute22,
      x_attribute23                       => x_attribute23,
      x_attribute24                       => x_attribute24,
      x_attribute25                       => x_attribute25,
      x_attribute26                       => x_attribute26,
      x_attribute27                       => x_attribute27,
      x_attribute28                       => x_attribute28,
      x_attribute29                       => x_attribute29,
      x_attribute30                       => x_attribute30,
      x_parent_trx_id                     => x_parent_trx_id,
      x_parent_trx_number                 => x_parent_trx_number,
      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: 846

    INSERT INTO igi_dos_trx_headers (
      sob_id,
      trx_id,
      dossier_name,
      trx_number,
      packet_id,
      trx_status,
      dossier_id,
      dossier_transaction_name,
      description,
      funds_status,
      attribute_category,
      attribute1,
      attribute2,
      attribute3,
      attribute4,
      attribute5,
      attribute6,
      attribute7,
      attribute8,
      attribute9,
      attribute10,
      attribute11,
      attribute12,
      attribute13,
      attribute14,
      attribute15,
      attribute16,
      attribute17,
      attribute18,
      attribute19,
      attribute20,
      attribute21,
      attribute22,
      attribute23,
      attribute24,
      attribute25,
      attribute26,
      attribute27,
      attribute28,
      attribute29,
      attribute30,
      parent_trx_id,
      parent_trx_number,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      new_references.sob_id,
      new_references.trx_id,
      new_references.dossier_name,
      new_references.trx_number,
      new_references.packet_id,
      new_references.trx_status,
      new_references.dossier_id,
      new_references.dossier_transaction_name,
      new_references.description,
      new_references.funds_status,
      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.attribute21,
      new_references.attribute22,
      new_references.attribute23,
      new_references.attribute24,
      new_references.attribute25,
      new_references.attribute26,
      new_references.attribute27,
      new_references.attribute28,
      new_references.attribute29,
      new_references.attribute30,
      new_references.parent_trx_id,
      new_references.parent_trx_number,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 954

  END insert_row;
Line: 1013

      SELECT
        sob_id,
        dossier_name,
        trx_number,
        packet_id,
        trx_status,
        dossier_id,
        dossier_transaction_name,
        description,
        funds_status,
        attribute_category,
        attribute1,
        attribute2,
        attribute3,
        attribute4,
        attribute5,
        attribute6,
        attribute7,
        attribute8,
        attribute9,
        attribute10,
        attribute11,
        attribute12,
        attribute13,
        attribute14,
        attribute15,
        attribute16,
        attribute17,
        attribute18,
        attribute19,
        attribute20,
        attribute21,
        attribute22,
        attribute23,
        attribute24,
        attribute25,
        attribute26,
        attribute27,
        attribute28,
        attribute29,
        attribute30,
        parent_trx_id,
        parent_trx_number
      FROM  igi_dos_trx_headers
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 1067

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_sob_id							IN 	   NUMBER,
    x_trx_id						    IN     NUMBER,
    x_dossier_name                      IN     VARCHAR2,
    x_trx_number                        IN     VARCHAR2,
    x_packet_id                         IN     NUMBER,
    x_trx_status                        IN     VARCHAR2,
    x_dossier_id                        IN     NUMBER,
    x_dossier_transaction_name          IN     VARCHAR2,
    x_description                       IN     VARCHAR2,
    x_funds_status                      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_attribute21                       IN     VARCHAR2,
    x_attribute22                       IN     VARCHAR2,
    x_attribute23                       IN     VARCHAR2,
    x_attribute24                       IN     VARCHAR2,
    x_attribute25                       IN     VARCHAR2,
    x_attribute26                       IN     VARCHAR2,
    x_attribute27                       IN     VARCHAR2,
    x_attribute28                       IN     VARCHAR2,
    x_attribute29                       IN     VARCHAR2,
    x_attribute30                       IN     VARCHAR2,
    x_parent_trx_id                     IN     NUMBER,
    x_parent_trx_number                 IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 02-MAY-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: 1195

    x_last_updated_by            NUMBER;
Line: 1196

    x_last_update_login          NUMBER;
Line: 1208

    x_last_update_date := SYSDATE;
Line: 1210

      x_last_updated_by := 1;
Line: 1211

      x_last_update_login := 0;
Line: 1213

      x_last_updated_by := fnd_global.user_id;
Line: 1214

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

      x_last_update_login := fnd_global.login_id;
Line: 1218

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

         FND_LOG.MESSAGE(l_unexp_level, 'igi.plsql.igi_dos_trx_headers_pkg.update_row.Msg1',FALSE);
Line: 1232

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_sob_id                            => x_sob_id,
      x_trx_id                            => x_trx_id,
      x_dossier_name                      => x_dossier_name,
      x_trx_number                        => x_trx_number,
      x_packet_id                         => x_packet_id,
      x_trx_status                        => x_trx_status,
      x_dossier_id                        => x_dossier_id,
      x_dossier_transaction_name          => x_dossier_transaction_name,
      x_description                       => x_description,
      x_funds_status                      => x_funds_status,
      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_attribute21                       => x_attribute21,
      x_attribute22                       => x_attribute22,
      x_attribute23                       => x_attribute23,
      x_attribute24                       => x_attribute24,
      x_attribute25                       => x_attribute25,
      x_attribute26                       => x_attribute26,
      x_attribute27                       => x_attribute27,
      x_attribute28                       => x_attribute28,
      x_attribute29                       => x_attribute29,
      x_attribute30                       => x_attribute30,
      x_parent_trx_id                     => x_parent_trx_id,
      x_parent_trx_number                 => x_parent_trx_number,
      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: 1284

    UPDATE igi_dos_trx_headers
      SET
        sob_id                            = new_references.sob_id,
        dossier_name                      = new_references.dossier_name,
        trx_number                        = new_references.trx_number,
        packet_id                         = new_references.packet_id,
        trx_status                        = new_references.trx_status,
        dossier_id                        = new_references.dossier_id,
        dossier_transaction_name          = new_references.dossier_transaction_name,
        description                       = new_references.description,
        funds_status                      = new_references.funds_status,
        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,
        attribute21                       = new_references.attribute21,
        attribute22                       = new_references.attribute22,
        attribute23                       = new_references.attribute23,
        attribute24                       = new_references.attribute24,
        attribute25                       = new_references.attribute25,
        attribute26                       = new_references.attribute26,
        attribute27                       = new_references.attribute27,
        attribute28                       = new_references.attribute28,
        attribute29                       = new_references.attribute29,
        attribute30                       = new_references.attribute30,
        parent_trx_id                     = new_references.parent_trx_id,
        parent_trx_number                 = new_references.parent_trx_number,
        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: 1337

  END update_row;
Line: 1389

  ||  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     igi_dos_trx_headers
      WHERE    trx_id                            = x_trx_id;
Line: 1414

      insert_row (
        x_rowid,
        x_sob_id,
        x_trx_id,
        x_dossier_name,
        x_trx_number,
        x_packet_id,
        x_trx_status,
        x_dossier_id,
        x_dossier_transaction_name,
        x_description,
        x_funds_status,
        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_attribute21,
        x_attribute22,
        x_attribute23,
        x_attribute24,
        x_attribute25,
        x_attribute26,
        x_attribute27,
        x_attribute28,
        x_attribute29,
        x_attribute30,
        x_parent_trx_id,
        x_parent_trx_number,
        l_mode
      );
Line: 1465

    update_row (
      x_rowid,
      x_sob_id,
      x_trx_id,
      x_dossier_name,
      x_trx_number,
      x_packet_id,
      x_trx_status,
      x_dossier_id,
      x_dossier_transaction_name,
      x_description,
      x_funds_status,
      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_attribute21,
      x_attribute22,
      x_attribute23,
      x_attribute24,
      x_attribute25,
      x_attribute26,
      x_attribute27,
      x_attribute28,
      x_attribute29,
      x_attribute30,
      x_parent_trx_id,
      x_parent_trx_number,
      l_mode
    );
Line: 1516

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 02-MAY-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,
    x_sob_id=>NULL,
    x_trx_id=>NULL,
    x_dossier_name=>NULL,
    x_trx_number  =>NULL,
    x_packet_id=>NULL,
    x_trx_status  =>NULL,
    x_dossier_id=>NULL,
    x_dossier_transaction_name=>NULL,
    x_description =>NULL,
    x_funds_status=>NULL,
    x_attribute_category=>NULL,
    x_attribute1  =>NULL,
    x_attribute2  =>NULL,
    x_attribute3  =>NULL,
    x_attribute4  =>NULL,
    x_attribute5  =>NULL,
    x_attribute6  =>NULL,
    x_attribute7  =>NULL,
    x_attribute8  =>NULL,
    x_attribute9  =>NULL,
    x_attribute10 =>NULL,
    x_attribute11 =>NULL,
    x_attribute12 =>NULL,
    x_attribute13 =>NULL,
    x_attribute14 =>NULL,
    x_attribute15 =>NULL,
    x_attribute16 =>NULL,
    x_attribute17 =>NULL,
    x_attribute18 =>NULL,
    x_attribute19 =>NULL,
    x_attribute20 =>NULL,
    x_attribute21 =>NULL,
    x_attribute22 =>NULL,
    x_attribute23 =>NULL,
    x_attribute24 =>NULL,
    x_attribute25 =>NULL,
    x_attribute26 =>NULL,
    x_attribute27 =>NULL,
    x_attribute28 =>NULL,
    x_attribute29 =>NULL,
    x_attribute30 =>NULL,
    x_parent_trx_id=>NULL,
    x_parent_trx_number=>NULL,
    x_creation_date=>NULL,
    x_created_by=>NULL,
    x_last_update_date=>NULL,
    x_last_updated_by=>NULL,
    x_last_update_login=>NULL

    );
Line: 1584

    DELETE FROM igi_dos_trx_headers
    WHERE rowid = x_rowid;
Line: 1591

  END delete_row;