DBA Data[Home] [Help]

APPS.IGF_AW_COA_ITM_TERMS_PKG SQL Statements

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

Line: 18

    x_last_update_date                  IN     DATE,
    x_last_updated_by                   IN     NUMBER,
    x_last_update_login                 IN     NUMBER,
    x_lock_flag                          IN     VARCHAR2
  ) AS
  /*
  ||  Created By : sjadhav
  ||  Created On : 19-OCT-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     igf_aw_coa_itm_terms
      WHERE    rowid = x_rowid;
Line: 46

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 72

    new_references.last_updated_by                   := x_last_updated_by;
Line: 73

    new_references.last_update_login                 := x_last_update_login;
Line: 99

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

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

      SELECT   rowid
      FROM     igf_aw_coa_itm_terms
      WHERE    base_id = x_base_id
      AND      ld_cal_type = x_ld_cal_type
      AND      ld_sequence_number = x_ld_sequence_number
      AND      item_code = x_item_code
      FOR UPDATE NOWAIT;
Line: 176

      SELECT   rowid
      FROM     igf_aw_coa_itm_terms
      WHERE   ((base_id = x_base_id) AND
               (item_code = x_item_code));
Line: 213

      SELECT   rowid
      FROM     igf_aw_coa_itm_terms
      WHERE   ((ld_cal_type = x_cal_type) AND
               (ld_sequence_number = x_sequence_number));
Line: 246

    x_last_update_date                  IN     DATE,
    x_last_updated_by                   IN     NUMBER,
    x_last_update_login                 IN     NUMBER,
    x_lock_flag                          IN     VARCHAR2
  ) AS
  /*
  ||  Created By : sjadhav
  ||  Created On : 19-OCT-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_base_id,
      x_item_code,
      x_amount,
      x_ld_cal_type,
      x_ld_sequence_number,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login,
      x_lock_flag
    );
Line: 279

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

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

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

  PROCEDURE AfterRowInsertUpdateDelete2(
    p_inserting IN BOOLEAN ,
    p_updating  IN BOOLEAN ,
    p_deleting  IN BOOLEAN
    ) AS
   /*-----------------------------------------------------------------
  ||  Created By : veramach
  ||  Created On : 16-Nov-2004
  ||  Purpose :
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  --------------------------------------------------------------------*/
  lv_rowid         ROWID;
Line: 337

      l_operation_txt := 'UPDATE';
Line: 342

    ELSIF p_inserting THEN
      l_operation_txt := 'INSERT';
Line: 349

      l_operation_txt := 'DELETE';
Line: 358

      igf_aw_coa_hist_pkg.insert_row(
                                     x_rowid              => lv_rowid,
                                     x_coah_id            => l_coah_id,
                                     x_base_id            => l_base_id,
                                     x_tran_date          => SYSDATE,
                                     x_item_code          => l_item_code,
                                     x_ld_cal_type        => l_ld_cal_type,
                                     x_ld_sequence_number => l_ld_seq_num,
                                     x_operation_txt      => l_operation_txt,
                                     x_old_value          => old_references.amount,
                                     x_new_value          => new_references.amount,
                                     x_mode               => 'R'
                                    );
Line: 372

  END AfterRowInsertUpdateDelete2;
Line: 374

  PROCEDURE AfterRowInsertUpdateDelete1(
    p_inserting IN BOOLEAN ,
    p_updating  IN BOOLEAN ,
    p_deleting  IN BOOLEAN
    ) AS
   /*-----------------------------------------------------------------
  ||  Created By : veramach
  ||  Created On : 16-Nov-2004
  ||  Purpose :
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  --------------------------------------------------------------------*/
  lv_rowid  ROWID;
Line: 402

    igf_aw_coa_hist_pkg.insert_row(
                                   x_rowid              => lv_rowid,
                                   x_coah_id            => l_coah_id,
                                   x_base_id            => NVL(old_references.base_id,new_references.base_id),
                                   x_tran_date          => SYSDATE,
                                   x_item_code          => NVL(old_references.item_code,new_references.item_code),
                                   x_ld_cal_type        => NVL(old_references.ld_cal_type,new_references.ld_cal_type),
                                   x_ld_sequence_number => NVL(old_references.ld_sequence_number,new_references.ld_sequence_number),
                                   x_operation_txt      => l_operation_txt,
                                   x_old_value          => NULL,
                                   x_new_value          => NULL,
                                   x_mode               => 'R'
                                  );
Line: 415

  END AfterRowInsertUpdateDelete1;
Line: 424

  ||  Purpose : Invoke the proceduers related to after update
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  (reverse chronological order - newest change first)
  --------------------------------------------------------------------*/
  BEGIN
    l_rowid := x_rowid;
Line: 432

    IF (p_action = 'INSERT') THEN
      AfterRowInsertUpdateDelete1(
                                  p_inserting => TRUE,
                                  p_updating  => FALSE ,
                                  p_deleting  => FALSE
                                 );
Line: 438

      AfterRowInsertUpdateDelete2(
                                  p_inserting => TRUE,
                                  p_updating  => FALSE ,
                                  p_deleting  => FALSE
                                 );
Line: 444

    IF (p_action = 'DELETE') THEN
      AfterRowInsertUpdateDelete1(
                                  p_inserting => FALSE,
                                  p_updating  => FALSE ,
                                  p_deleting  => TRUE
                                 );
Line: 450

      AfterRowInsertUpdateDelete2(
                                  p_inserting => FALSE,
                                  p_updating  => FALSE ,
                                  p_deleting  => TRUE
                                 );
Line: 456

    IF (p_action = 'UPDATE') THEN
      AfterRowInsertUpdateDelete1(
                                  p_inserting => FALSE,
                                  p_updating  => TRUE ,
                                  p_deleting  => FALSE
                                 );
Line: 462

      AfterRowInsertUpdateDelete2(
                                  p_inserting => FALSE,
                                  p_updating  => TRUE ,
                                  p_deleting  => FALSE
                                 );
Line: 471

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_base_id                           IN     NUMBER,
    x_item_code                         IN     VARCHAR2,
    x_amount                            IN     NUMBER,
    x_ld_cal_type                       IN     VARCHAR2,
    x_ld_sequence_number                IN     NUMBER,
    x_mode                              IN     VARCHAR2,
    x_lock_flag                          IN     VARCHAR2
  ) AS
  /*
  ||  Created By : sjadhav
  ||  Created On : 19-OCT-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: 492

    x_last_updated_by            NUMBER;
Line: 493

    x_last_update_login          NUMBER;
Line: 497

    x_program_update_date        DATE;
Line: 501

    x_last_update_date := SYSDATE;
Line: 503

      x_last_updated_by := 1;
Line: 504

      x_last_update_login := 0;
Line: 506

      x_last_updated_by := fnd_global.user_id;
Line: 507

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

      x_last_update_login := fnd_global.login_id;
Line: 511

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

        x_program_update_date    := NULL;
Line: 524

        x_program_update_date    := SYSDATE;
Line: 533

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_base_id                           => x_base_id,
      x_item_code                         => x_item_code,
      x_amount                            => x_amount,
      x_ld_cal_type                       => x_ld_cal_type,
      x_ld_sequence_number                => x_ld_sequence_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,
      x_lock_flag                          => x_lock_flag
    );
Line: 548

    INSERT INTO igf_aw_coa_itm_terms (
      base_id,
      item_code,
      amount,
      ld_cal_type,
      ld_sequence_number,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login,
      request_id,
      program_id,
      program_application_id,
      program_update_date,
      lock_flag
    ) VALUES (
      new_references.base_id,
      new_references.item_code,
      new_references.amount,
      new_references.ld_cal_type,
      new_references.ld_sequence_number,
      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,
      new_references.lock_flag
    ) RETURNING ROWID INTO x_rowid;
Line: 583

              p_action => 'INSERT',
              x_rowid  => x_rowid
             );
Line: 586

  END insert_row;
Line: 608

      SELECT
        amount,
        lock_flag
      FROM  igf_aw_coa_itm_terms
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 622

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_base_id                           IN     NUMBER,
    x_item_code                         IN     VARCHAR2,
    x_amount                            IN     NUMBER,
    x_ld_cal_type                       IN     VARCHAR2,
    x_ld_sequence_number                IN     NUMBER,
    x_mode                              IN     VARCHAR2,
    x_lock_flag                          IN     VARCHAR2
  ) AS
  /*
  ||  Created By : sjadhav
  ||  Created On : 19-OCT-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: 666

    x_last_updated_by            NUMBER;
Line: 667

    x_last_update_login          NUMBER;
Line: 671

    x_program_update_date        DATE;
Line: 675

    x_last_update_date := SYSDATE;
Line: 677

      x_last_updated_by := 1;
Line: 678

      x_last_update_login := 0;
Line: 680

      x_last_updated_by := fnd_global.user_id;
Line: 681

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

      x_last_update_login := fnd_global.login_id;
Line: 685

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_base_id                           => x_base_id,
      x_item_code                         => x_item_code,
      x_amount                            => x_amount,
      x_ld_cal_type                       => x_ld_cal_type,
      x_ld_sequence_number                => x_ld_sequence_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,
      x_lock_flag                          => x_lock_flag
    );
Line: 718

        x_program_update_date := old_references.program_update_date;
Line: 720

        x_program_update_date := SYSDATE;
Line: 724

    UPDATE igf_aw_coa_itm_terms
      SET
        amount                            = new_references.amount,
        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,
        lock_flag                          = new_references.lock_flag
      WHERE rowid = x_rowid;
Line: 742

              p_action => 'UPDATE',
              x_rowid  => x_rowid
             );
Line: 745

  END update_row;
Line: 761

  ||  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     igf_aw_coa_itm_terms
      WHERE    base_id                           = x_base_id
      AND      ld_cal_type                       = x_ld_cal_type
      AND      ld_sequence_number                = x_ld_sequence_number
      AND      item_code                         = x_item_code;
Line: 782

      insert_row (
        x_rowid,
        x_base_id,
        x_item_code,
        x_amount,
        x_ld_cal_type,
        x_ld_sequence_number,
        x_mode,
        x_lock_flag
      );
Line: 796

    update_row (
      x_rowid,
      x_base_id,
      x_item_code,
      x_amount,
      x_ld_cal_type,
      x_ld_sequence_number,
      x_mode,
      x_lock_flag
    );
Line: 810

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : sjadhav
  ||  Created On : 19-OCT-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: 829

    DELETE FROM igf_aw_coa_itm_terms
    WHERE rowid = x_rowid;
Line: 837

              p_action => 'DELETE',
              x_rowid  => x_rowid
             );
Line: 841

  END delete_row;