DBA Data[Home] [Help]

APPS.IGS_FI_IMPCHGS_LINES_PKG SQL Statements

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

Line: 57

    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 : 09-APR-2001
  ||  Purpose : Initialises the Old and New references for the columns of the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  || smadathi   06-Nov-2002           Enh. Bug 2584986. Removed columns as mentioned
  ||                                  in GL interface TD
  ||  vvutukur        24-Jul-2002     Bug#2425767.Removed references to chg_rate,chg_elements.
  ||  agairola        04-Jun-2002     For bug 2395663, added EXT_ columns for the DFF for External Charges
  ||  (reverse chronological order - newest change first)
  */

    CURSOR cur_old_ref_values IS
      SELECT   *
      FROM     IGS_FI_IMPCHGS_LINES
      WHERE    rowid = x_rowid;
Line: 88

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 152

    new_references.last_updated_by                   := x_last_updated_by;
Line: 153

    new_references.last_update_login                 := x_last_update_login;
Line: 176

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

      SELECT   rowid
      FROM     igs_fi_impchgs_lines
      WHERE    impchg_lines_id = x_impchg_lines_id
      FOR UPDATE NOWAIT;
Line: 231

      SELECT   rowid
      FROM     igs_fi_impchgs_lines
      WHERE   ((import_charges_id = x_import_charges_id));
Line: 302

    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 : 09-APR-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
  || smadathi   06-Nov-2002           Enh. Bug 2584986. Removed columns as mentioned
  ||                                  in GL interface TD. removed DEFAULT clauses
  ||  vvutukur        24-Jul-2002     Bug#2425767.Removed references to obsoleted columns chg_rate,chg_elements
  ||                                  from call to set_column_values.
  ||  agairola        04-Jun-2002     For bug 2395663, added EXT_ columns for the DFF for External Charges
  ||  (reverse chronological order - newest change first)
  */
  BEGIN

    set_column_values (
      p_action,
      x_rowid,
      x_impchg_lines_id,
      x_import_charges_id,
      x_transaction_dt,
      x_effective_dt,
      x_transaction_amount,
      x_currency_cd,
      x_exchange_rate,
      x_comments,
      x_ancillary_attribute1,
      x_ancillary_attribute2,
      x_ancillary_attribute3,
      x_ancillary_attribute4,
      x_ancillary_attribute5,
      x_ancillary_attribute6,
      x_ancillary_attribute7,
      x_ancillary_attribute8,
      x_ancillary_attribute9,
      x_ancillary_attribute10,
      x_ancillary_attribute11,
      x_ancillary_attribute12,
      x_ancillary_attribute13,
      x_ancillary_attribute14,
      x_ancillary_attribute15,
      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: 377

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

    ELSIF (p_action = 'UPDATE') THEN
      -- Call all the procedures related to Before Update.
      check_parent_existance;
Line: 391

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_impchg_lines_id                   IN OUT NOCOPY NUMBER,
    x_import_charges_id                 IN     NUMBER,
    x_transaction_dt                    IN     DATE,
    x_effective_dt                      IN     DATE,
    x_transaction_amount                IN     NUMBER,
    x_currency_cd                       IN     VARCHAR2,
    x_exchange_rate                     IN     NUMBER,
    x_comments                          IN     VARCHAR2,
    x_ancillary_attribute1              IN     VARCHAR2,
    x_ancillary_attribute2              IN     VARCHAR2,
    x_ancillary_attribute3              IN     VARCHAR2,
    x_ancillary_attribute4              IN     VARCHAR2,
    x_ancillary_attribute5              IN     VARCHAR2,
    x_ancillary_attribute6              IN     VARCHAR2,
    x_ancillary_attribute7              IN     VARCHAR2,
    x_ancillary_attribute8              IN     VARCHAR2,
    x_ancillary_attribute9              IN     VARCHAR2,
    x_ancillary_attribute10             IN     VARCHAR2,
    x_ancillary_attribute11             IN     VARCHAR2,
    x_ancillary_attribute12             IN     VARCHAR2,
    x_ancillary_attribute13             IN     VARCHAR2,
    x_ancillary_attribute14             IN     VARCHAR2,
    x_ancillary_attribute15             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_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 09-APR-2001
  ||  Purpose : Handles the INSERT DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When           What
  || smadathi       06-Nov-2002      Enh. Bug 2584986. Removed columns as mentioned
  ||                                 in GL interface TD
  ||  vvutukur        24-Jul-2002   Bug#2425767.Removed references to obsoleted columns chg_rate,chg_elements
  ||                                (from the call to before_dml and from insert statement).
  ||  agairola        04-Jun-2002     For bug 2395663, added EXT_ columns for the DFF for External Charges
  ||  (reverse chronological order - newest change first)
  */
    CURSOR c IS
      SELECT   rowid
      FROM     igs_fi_impchgs_lines
      WHERE    impchg_lines_id                   = x_impchg_lines_id;
Line: 473

    x_last_update_date           DATE;
Line: 474

    x_last_updated_by            NUMBER;
Line: 475

    x_last_update_login          NUMBER;
Line: 479

    x_program_update_date        DATE;
Line: 483

    x_last_update_date := SYSDATE;
Line: 485

      x_last_updated_by := 1;
Line: 486

      x_last_update_login := 0;
Line: 488

      x_last_updated_by := fnd_global.user_id;
Line: 489

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

      x_last_update_login := fnd_global.login_id;
Line: 493

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

        x_program_update_date    := NULL;
Line: 506

        x_program_update_date    := SYSDATE;
Line: 514

   SELECT igs_fi_impchgs_lines_s.NEXTVAL INTO x_impchg_lines_id FROM DUAL;
Line: 516

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_impchg_lines_id                   => x_impchg_lines_id,
      x_import_charges_id                 => x_import_charges_id,
      x_transaction_dt                    => x_transaction_dt,
      x_effective_dt                      => x_effective_dt,
      x_transaction_amount                => x_transaction_amount,
      x_currency_cd                       => x_currency_cd,
      x_exchange_rate                     => x_exchange_rate,
      x_comments                          => x_comments,
      x_ancillary_attribute1              => x_ancillary_attribute1,
      x_ancillary_attribute2              => x_ancillary_attribute2,
      x_ancillary_attribute3              => x_ancillary_attribute3,
      x_ancillary_attribute4              => x_ancillary_attribute4,
      x_ancillary_attribute5              => x_ancillary_attribute5,
      x_ancillary_attribute6              => x_ancillary_attribute6,
      x_ancillary_attribute7              => x_ancillary_attribute7,
      x_ancillary_attribute8              => x_ancillary_attribute8,
      x_ancillary_attribute9              => x_ancillary_attribute9,
      x_ancillary_attribute10             => x_ancillary_attribute10,
      x_ancillary_attribute11             => x_ancillary_attribute11,
      x_ancillary_attribute12             => x_ancillary_attribute12,
      x_ancillary_attribute13             => x_ancillary_attribute13,
      x_ancillary_attribute14             => x_ancillary_attribute14,
      x_ancillary_attribute15             => x_ancillary_attribute15,
      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: 569

    INSERT INTO igs_fi_impchgs_lines (
      impchg_lines_id,
      import_charges_id,
      transaction_dt,
      effective_dt,
      transaction_amount,
      currency_cd,
      exchange_rate,
      comments,
      ancillary_attribute1,
      ancillary_attribute2,
      ancillary_attribute3,
      ancillary_attribute4,
      ancillary_attribute5,
      ancillary_attribute6,
      ancillary_attribute7,
      ancillary_attribute8,
      ancillary_attribute9,
      ancillary_attribute10,
      ancillary_attribute11,
      ancillary_attribute12,
      ancillary_attribute13,
      ancillary_attribute14,
      ancillary_attribute15,
      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,
      request_id,
      program_id,
      program_application_id,
      program_update_date
    ) VALUES (
      new_references.impchg_lines_id,
      new_references.import_charges_id,
      new_references.transaction_dt,
      new_references.effective_dt,
      new_references.transaction_amount,
      new_references.currency_cd,
      new_references.exchange_rate,
      new_references.comments,
      new_references.ancillary_attribute1,
      new_references.ancillary_attribute2,
      new_references.ancillary_attribute3,
      new_references.ancillary_attribute4,
      new_references.ancillary_attribute5,
      new_references.ancillary_attribute6,
      new_references.ancillary_attribute7,
      new_references.ancillary_attribute8,
      new_references.ancillary_attribute9,
      new_references.ancillary_attribute10,
      new_references.ancillary_attribute11,
      new_references.ancillary_attribute12,
      new_references.ancillary_attribute13,
      new_references.ancillary_attribute14,
      new_references.ancillary_attribute15,
      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 ,
      x_request_id,
      x_program_id,
      x_program_application_id,
      x_program_update_date
    );
Line: 689

  END insert_row;
Line: 754

      SELECT
        import_charges_id,
        transaction_dt,
        effective_dt,
        transaction_amount,
        currency_cd,
        exchange_rate,
        comments,
        ancillary_attribute1,
        ancillary_attribute2,
        ancillary_attribute3,
        ancillary_attribute4,
        ancillary_attribute5,
        ancillary_attribute6,
        ancillary_attribute7,
        ancillary_attribute8,
        ancillary_attribute9,
        ancillary_attribute10,
        ancillary_attribute11,
        ancillary_attribute12,
        ancillary_attribute13,
        ancillary_attribute14,
        ancillary_attribute15,
        attribute_category,
        attribute1,
        attribute2,
        attribute3,
        attribute4,
        attribute5,
        attribute6,
        attribute7,
        attribute8,
        attribute9,
        attribute10,
        attribute11,
        attribute12,
        attribute13,
        attribute14,
        attribute15,
        attribute16,
        attribute17,
        attribute18,
        attribute19,
        attribute20
      FROM  igs_fi_impchgs_lines
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 809

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_impchg_lines_id                   IN     NUMBER,
    x_import_charges_id                 IN     NUMBER,
    x_transaction_dt                    IN     DATE,
    x_effective_dt                      IN     DATE,
    x_transaction_amount                IN     NUMBER,
    x_currency_cd                       IN     VARCHAR2,
    x_exchange_rate                     IN     NUMBER,
    x_comments                          IN     VARCHAR2,
    x_ancillary_attribute1              IN     VARCHAR2,
    x_ancillary_attribute2              IN     VARCHAR2,
    x_ancillary_attribute3              IN     VARCHAR2,
    x_ancillary_attribute4              IN     VARCHAR2,
    x_ancillary_attribute5              IN     VARCHAR2,
    x_ancillary_attribute6              IN     VARCHAR2,
    x_ancillary_attribute7              IN     VARCHAR2,
    x_ancillary_attribute8              IN     VARCHAR2,
    x_ancillary_attribute9              IN     VARCHAR2,
    x_ancillary_attribute10             IN     VARCHAR2,
    x_ancillary_attribute11             IN     VARCHAR2,
    x_ancillary_attribute12             IN     VARCHAR2,
    x_ancillary_attribute13             IN     VARCHAR2,
    x_ancillary_attribute14             IN     VARCHAR2,
    x_ancillary_attribute15             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_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 09-APR-2001
  ||  Purpose : Handles the UPDATE DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  || smadathi   06-Nov-2002  Enh. Bug 2584986. Removed columns as mentioned
  ||                         in GL interface TD
  ||  vvutukur        24-Jul-2002   Bug#2425767.Removed references to obsoleted columns chg_rate,chg_elements
  ||                                (from the call to before_dml and from update statement).
  ||  agairola        04-Jun-2002     For bug 2395663, added EXT_ columns for the DFF for External Charges
  ||  (reverse chronological order - newest change first)
  */
    x_last_update_date           DATE ;
Line: 938

    x_last_updated_by            NUMBER;
Line: 939

    x_last_update_login          NUMBER;
Line: 943

    x_program_update_date        DATE;
Line: 947

    x_last_update_date := SYSDATE;
Line: 949

      x_last_updated_by := 1;
Line: 950

      x_last_update_login := 0;
Line: 952

      x_last_updated_by := fnd_global.user_id;
Line: 953

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

      x_last_update_login := fnd_global.login_id;
Line: 957

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_impchg_lines_id                   => x_impchg_lines_id,
      x_import_charges_id                 => x_import_charges_id,
      x_transaction_dt                    => x_transaction_dt,
      x_effective_dt                      => x_effective_dt,
      x_transaction_amount                => x_transaction_amount,
      x_currency_cd                       => x_currency_cd,
      x_exchange_rate                     => x_exchange_rate,
      x_comments                          => x_comments,
      x_ancillary_attribute1              => x_ancillary_attribute1,
      x_ancillary_attribute2              => x_ancillary_attribute2,
      x_ancillary_attribute3              => x_ancillary_attribute3,
      x_ancillary_attribute4              => x_ancillary_attribute4,
      x_ancillary_attribute5              => x_ancillary_attribute5,
      x_ancillary_attribute6              => x_ancillary_attribute6,
      x_ancillary_attribute7              => x_ancillary_attribute7,
      x_ancillary_attribute8              => x_ancillary_attribute8,
      x_ancillary_attribute9              => x_ancillary_attribute9,
      x_ancillary_attribute10             => x_ancillary_attribute10,
      x_ancillary_attribute11             => x_ancillary_attribute11,
      x_ancillary_attribute12             => x_ancillary_attribute12,
      x_ancillary_attribute13             => x_ancillary_attribute13,
      x_ancillary_attribute14             => x_ancillary_attribute14,
      x_ancillary_attribute15             => x_ancillary_attribute15,
      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: 1028

        x_program_update_date := old_references.program_update_date;
Line: 1030

        x_program_update_date := SYSDATE;
Line: 1034

    UPDATE igs_fi_impchgs_lines
      SET
        import_charges_id                 = new_references.import_charges_id,
        transaction_dt                    = new_references.transaction_dt,
        effective_dt                      = new_references.effective_dt,
        transaction_amount                = new_references.transaction_amount,
        currency_cd                       = new_references.currency_cd,
        exchange_rate                     = new_references.exchange_rate,
        comments                          = new_references.comments,
        ancillary_attribute1              = new_references.ancillary_attribute1,
        ancillary_attribute2              = new_references.ancillary_attribute2,
        ancillary_attribute3              = new_references.ancillary_attribute3,
        ancillary_attribute4              = new_references.ancillary_attribute4,
        ancillary_attribute5              = new_references.ancillary_attribute5,
        ancillary_attribute6              = new_references.ancillary_attribute6,
        ancillary_attribute7              = new_references.ancillary_attribute7,
        ancillary_attribute8              = new_references.ancillary_attribute8,
        ancillary_attribute9              = new_references.ancillary_attribute9,
        ancillary_attribute10             = new_references.ancillary_attribute10,
        ancillary_attribute11             = new_references.ancillary_attribute11,
        ancillary_attribute12             = new_references.ancillary_attribute12,
        ancillary_attribute13             = new_references.ancillary_attribute13,
        ancillary_attribute14             = new_references.ancillary_attribute14,
        ancillary_attribute15             = new_references.ancillary_attribute15,
        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 ,
        request_id                        = x_request_id,
        program_id                        = x_program_id,
        program_application_id            = x_program_application_id,
        program_update_date               = x_program_update_date
      WHERE rowid = x_rowid;
Line: 1094

  END update_row;
Line: 1148

  ||  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
  || smadathi   06-Nov-2002  Enh. Bug 2584986. Removed columns as mentioned
  ||                         in GL interface TD
  ||  vvutukur        24-Jul-2002   Bug#2425767.Removed references to obsoleted columns chg_rate,chg_elements
  ||                                (from the calls to insert_row and update_row procedures).
  ||  agairola        04-Jun-2002     For bug 2395663, added EXT_ columns for the DFF for External Charges
  ||  (reverse chronological order - newest change first)
  */
    CURSOR c1 IS
      SELECT   rowid
      FROM     igs_fi_impchgs_lines
      WHERE    impchg_lines_id                   = x_impchg_lines_id;
Line: 1171

      insert_row (
        x_rowid,
        x_impchg_lines_id,
        x_import_charges_id,
        x_transaction_dt,
        x_effective_dt,
        x_transaction_amount,
        x_currency_cd,
        x_exchange_rate,
        x_comments,
        x_ancillary_attribute1,
        x_ancillary_attribute2,
        x_ancillary_attribute3,
        x_ancillary_attribute4,
        x_ancillary_attribute5,
        x_ancillary_attribute6,
        x_ancillary_attribute7,
        x_ancillary_attribute8,
        x_ancillary_attribute9,
        x_ancillary_attribute10,
        x_ancillary_attribute11,
        x_ancillary_attribute12,
        x_ancillary_attribute13,
        x_ancillary_attribute14,
        x_ancillary_attribute15,
        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_mode
      );
Line: 1223

    update_row (
      x_rowid,
      x_impchg_lines_id,
      x_import_charges_id,
      x_transaction_dt,
      x_effective_dt,
      x_transaction_amount,
      x_currency_cd,
      x_exchange_rate,
      x_comments,
      x_ancillary_attribute1,
      x_ancillary_attribute2,
      x_ancillary_attribute3,
      x_ancillary_attribute4,
      x_ancillary_attribute5,
      x_ancillary_attribute6,
      x_ancillary_attribute7,
      x_ancillary_attribute8,
      x_ancillary_attribute9,
      x_ancillary_attribute10,
      x_ancillary_attribute11,
      x_ancillary_attribute12,
      x_ancillary_attribute13,
      x_ancillary_attribute14,
      x_ancillary_attribute15,
      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_mode
    );
Line: 1277

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 09-APR-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: 1296

    DELETE FROM igs_fi_impchgs_lines
    WHERE rowid = x_rowid;
Line: 1305

  END delete_row;