DBA Data[Home] [Help]

APPS.IGF_AP_TD_ITEM_MST_PKG SQL Statements

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

Line: 19

 | that they were inserted by datamerge.                                 |
 |                                                                       |
 | The ADD_ROW routine will see whether a row exists by selecting        |
 | based on the primary key, and updates the row if it exists,           |
 | or inserts the row if it doesn't already exist.                       |
 |                                                                       |
 | This module is called by AutoInstall (afplss.drv) on install and      |
 | upgrade.  The WHENEVER SQLERROR and EXIT (at bottom) are required.    |
 |                                                                       |
 | HISTORY                                                               |
 | gvarapra         13-sep-2004     FA138 - ISIR Enhancements            |
 |                                 added new cloumn system_todo_type_code|
 *=======================================================================*/

  l_rowid VARCHAR2(25);
Line: 52

    x_last_update_date                  IN     DATE    ,
    x_last_updated_by                   IN     NUMBER  ,
    x_last_update_login                 IN     NUMBER  ,
    x_system_todo_type_code             IN     VARCHAR2,
    x_application_code                  IN     VARCHAR2,
    x_display_in_ss_flag                IN     VARCHAR2,
    x_ss_instruction_txt                IN     VARCHAR2,
    x_allow_attachment_flag             IN     VARCHAR2,
    x_document_url_txt                  IN     VARCHAR2
  ) AS
  /*
  ||  Created By : kkillams
  ||  Created On : 29-MAY-2001
  ||  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_AP_TD_ITEM_MST_ALL
      WHERE    rowid = x_rowid;
Line: 85

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 121

    new_references.last_updated_by                   := x_last_updated_by;
Line: 122

    new_references.last_update_login                 := x_last_update_login;
Line: 190

      SELECT   rowid
      FROM     igf_ap_td_item_mst_all
      WHERE   ((ci_cal_type = x_ci_cal_type) AND
               (ci_sequence_number = x_ci_sequence_number) AND
               (application_code = x_application_code));
Line: 226

      SELECT   rowid
      FROM     igf_ap_td_item_mst_all
      WHERE    todo_number = x_todo_number
      FOR UPDATE NOWAIT;
Line: 264

      SELECT   rowid
      FROM     igf_ap_td_item_mst
      WHERE    UPPER(item_code) =UPPER( x_item_code)
      AND      ci_cal_type = x_ci_cal_type
      AND      ci_sequence_number = x_ci_sequence_number
      AND      ((l_rowid IS NULL) OR (rowid <> l_rowid));
Line: 302

    x_last_update_date                  IN     DATE    ,
    x_last_updated_by                   IN     NUMBER  ,
    x_last_update_login                 IN     NUMBER  ,
    x_system_todo_type_code             IN     VARCHAR2,
    x_application_code                  IN     VARCHAR2,
    x_display_in_ss_flag                IN     VARCHAR2,
    x_ss_instruction_txt                IN     VARCHAR2,
    x_allow_attachment_flag             IN     VARCHAR2,
    x_document_url_txt                  IN     VARCHAR2

  ) AS
  /*
  ||  Created By : kkillams
  ||  Created On : 29-MAY-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
  ||  (reverse chronological order - newest change first)
  */
  BEGIN

    set_column_values (
      p_action,
      x_rowid,
      x_todo_number,
      x_item_code,
      x_ci_cal_type,
      x_ci_sequence_number,
      x_description,
      x_corsp_mesg,
      x_career_item,
      x_freq_attempt,
      x_max_attempt,
      x_required_for_application,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login,
      x_system_todo_type_code,
      x_application_code,
      x_display_in_ss_flag,
      x_ss_instruction_txt,
      x_allow_attachment_flag,
      x_document_url_txt
    );
Line: 351

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

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

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

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

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

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_todo_number                       IN OUT NOCOPY NUMBER,
    x_item_code                         IN     VARCHAR2,
    x_ci_cal_type                       IN     VARCHAR2,
    x_ci_sequence_number                IN     NUMBER,
    x_description                       IN     VARCHAR2,
    x_corsp_mesg                        IN     VARCHAR2,
    x_career_item                       IN     VARCHAR2,
    x_freq_attempt                      IN     NUMBER  ,
    x_max_attempt                       IN     NUMBER  ,
    x_required_for_application          IN     VARCHAR2,
    x_mode                              IN     VARCHAR2,
    x_system_todo_type_code             IN     VARCHAR2,
    x_application_code                  IN     VARCHAR2,
    x_display_in_ss_flag                IN     VARCHAR2,
    x_ss_instruction_txt                IN     VARCHAR2,
    x_allow_attachment_flag             IN     VARCHAR2,
    x_document_url_txt                  IN     VARCHAR2
  ) AS
  /*
  ||  Created By : kkillams
  ||  Created On : 29-MAY-2001
  ||  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     igf_ap_td_item_mst_all
      WHERE    todo_number                       = x_todo_number;
Line: 421

    x_last_update_date           DATE;
Line: 422

    x_last_updated_by            NUMBER;
Line: 423

    x_last_update_login          NUMBER;
Line: 427

    x_last_update_date := SYSDATE;
Line: 429

      x_last_updated_by := 1;
Line: 430

      x_last_update_login := 0;
Line: 432

      x_last_updated_by := fnd_global.user_id;
Line: 433

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

      x_last_update_login := fnd_global.login_id;
Line: 437

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

    SELECT    igf_ap_td_item_mst_all_s.NEXTVAL
    INTO      x_todo_number
    FROM      dual;
Line: 453

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_todo_number                       => x_todo_number,
      x_item_code                         => x_item_code,
      x_ci_cal_type                       => x_ci_cal_type,
      x_ci_sequence_number                => x_ci_sequence_number,
      x_description                       => x_description,
      x_corsp_mesg                        => x_corsp_mesg,
      x_career_item                       => x_career_item,
      x_freq_attempt                      => x_freq_attempt,
      x_max_attempt                       => x_max_attempt,
      x_required_for_application          => x_required_for_application,
      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_system_todo_type_code             => x_system_todo_type_code,
      x_application_code                  => x_application_code,
      x_display_in_ss_flag                => x_display_in_ss_flag,
      x_ss_instruction_txt                => x_ss_instruction_txt,
      x_allow_attachment_flag             => x_allow_attachment_flag,
      x_document_url_txt                  => x_document_url_txt
    );
Line: 478

    INSERT INTO igf_ap_td_item_mst_all (
      todo_number,
      item_code,
      ci_cal_type,
      ci_sequence_number,
      description,
      corsp_mesg,
      career_item,
      freq_attempt,
      max_attempt,
      required_for_application,
      org_id,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login,
      system_todo_type_code,
      application_code,
      display_in_ss_flag,
      ss_instruction_txt,
      allow_attachment_flag,
      document_url_txt
    ) VALUES (
      new_references.todo_number,
      new_references.item_code,
      new_references.ci_cal_type,
      new_references.ci_sequence_number,
      new_references.description,
      new_references.corsp_mesg,
      new_references.career_item,
      new_references.freq_attempt,
      new_references.max_attempt,
      new_references.required_for_application,
      new_references.org_id,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login,
      new_references.system_todo_type_code,
      new_references.application_code,
      new_references.display_in_ss_flag,
      new_references.ss_instruction_txt,
      new_references.allow_attachment_flag,
      new_references.document_url_txt
    );
Line: 534

  END insert_row;
Line: 566

      SELECT
        item_code,
        ci_cal_type,
        ci_sequence_number,
        description,
        corsp_mesg,
        career_item,
        freq_attempt,
        max_attempt,
        required_for_application,
        system_todo_type_code,
        application_code,
        display_in_ss_flag,
        ss_instruction_txt,
        allow_attachment_flag,
        document_url_txt
      FROM  igf_ap_td_item_mst_all
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 593

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_todo_number                       IN     NUMBER,
    x_item_code                         IN     VARCHAR2,
    x_ci_cal_type                       IN     VARCHAR2,
    x_ci_sequence_number                IN     NUMBER,
    x_description                       IN     VARCHAR2,
    x_corsp_mesg                        IN     VARCHAR2,
    x_career_item                       IN     VARCHAR2,
    x_freq_attempt                      IN     NUMBER  ,
    x_max_attempt                       IN     NUMBER  ,
    x_required_for_application          IN     VARCHAR2,
    x_mode                              IN     VARCHAR2,
    x_system_todo_type_code             IN     VARCHAR2,
    x_application_code                  IN     VARCHAR2,
    x_display_in_ss_flag                IN     VARCHAR2,
    x_ss_instruction_txt                IN     VARCHAR2,
    x_allow_attachment_flag             IN     VARCHAR2,
    x_document_url_txt                  IN     VARCHAR2
  ) AS
  /*
  ||  Created By : kkillams
  ||  Created On : 29-MAY-2001
  ||  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: 660

    x_last_updated_by            NUMBER;
Line: 661

    x_last_update_login          NUMBER;
Line: 665

    x_last_update_date := SYSDATE;
Line: 667

      x_last_updated_by := 1;
Line: 668

      x_last_update_login := 0;
Line: 670

      x_last_updated_by := fnd_global.user_id;
Line: 671

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

      x_last_update_login := fnd_global.login_id;
Line: 675

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_todo_number                       => x_todo_number,
      x_item_code                         => x_item_code,
      x_ci_cal_type                       => x_ci_cal_type,
      x_ci_sequence_number                => x_ci_sequence_number,
      x_description                       => x_description,
      x_corsp_mesg                        => x_corsp_mesg,
      x_career_item                       => x_career_item,
      x_freq_attempt                      => x_freq_attempt,
      x_max_attempt                       => x_max_attempt,
      x_required_for_application          => x_required_for_application,
      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_system_todo_type_code             => x_system_todo_type_code,
      x_application_code                  => x_application_code,
      x_display_in_ss_flag                => x_display_in_ss_flag,
      x_ss_instruction_txt                => x_ss_instruction_txt,
      x_allow_attachment_flag             => x_allow_attachment_flag,
      x_document_url_txt                  => x_document_url_txt

    );
Line: 711

    UPDATE igf_ap_td_item_mst_all
      SET
        item_code                         = new_references.item_code,
        ci_cal_type                       = new_references.ci_cal_type,
        ci_sequence_number                = new_references.ci_sequence_number,
        description                       = new_references.description,
        corsp_mesg                        = new_references.corsp_mesg,
        career_item                       = new_references.career_item,
        freq_attempt                      = new_references.freq_attempt,
        max_attempt                       = new_references.max_attempt,
        required_for_application          = new_references.required_for_application,
        last_update_date                  = x_last_update_date,
        last_updated_by                   = x_last_updated_by,
        last_update_login                 = x_last_update_login,
        system_todo_type_code             = new_references.system_todo_type_code,
        application_code                  = new_references.application_code,
        display_in_ss_flag                = new_references.display_in_ss_flag,
        ss_instruction_txt                = new_references.ss_instruction_txt,
        allow_attachment_flag             = new_references.allow_attachment_flag,
        document_url_txt                  = new_references.document_url_txt
      WHERE rowid = x_rowid;
Line: 737

  END update_row;
Line: 763

  ||  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_ap_td_item_mst_all
      WHERE    todo_number                       = x_todo_number;
Line: 781

      insert_row (
        x_rowid,
        x_todo_number,
        x_item_code,
        x_ci_cal_type,
        x_ci_sequence_number,
        x_description,
        x_corsp_mesg,
        x_career_item,
        x_freq_attempt,
        x_max_attempt,
        x_required_for_application,
        x_mode,
        x_system_todo_type_code,
        x_application_code,
        x_display_in_ss_flag,
        x_ss_instruction_txt,
        x_allow_attachment_flag,
        x_document_url_txt
      );
Line: 805

    update_row (
      x_rowid,
      x_todo_number,
      x_item_code,
      x_ci_cal_type,
      x_ci_sequence_number,
      x_description,
      x_corsp_mesg,
      x_career_item,
      x_freq_attempt,
      x_max_attempt,
      x_required_for_application,
      x_mode,
      x_system_todo_type_code,
      x_application_code,
      x_display_in_ss_flag,
      x_ss_instruction_txt,
      x_allow_attachment_flag,
      x_document_url_txt
    );
Line: 829

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : kkillams
  ||  Created On : 29-MAY-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: 848

    DELETE FROM igf_ap_td_item_mst_all
    WHERE rowid = x_rowid;
Line: 855

  END delete_row;