DBA Data[Home] [Help]

APPS.IGF_AW_AWD_LTR_TMP_PKG SQL Statements

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

Line: 22

    x_last_update_date                  IN     DATE        DEFAULT NULL,
    x_last_updated_by                   IN     NUMBER      DEFAULT NULL,
    x_last_update_login                 IN     NUMBER      DEFAULT NULL
  ) AS
  /*
  ||  Created By : svenkata
  ||  Created On : 07-FEB-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_AWD_LTR_TMP
      WHERE    ROWID = x_rowid;
Line: 49

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 78

    new_references.last_updated_by                   := x_last_updated_by;
Line: 79

    new_references.last_update_login                 := x_last_update_login;
Line: 98

    x_last_update_date                  IN     DATE        DEFAULT NULL,
    x_last_updated_by                   IN     NUMBER      DEFAULT NULL,
    x_last_update_login                 IN     NUMBER      DEFAULT NULL
  ) AS
  /*
  ||  Created By : svenkata
  ||  Created On : 07-FEB-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_line_id,
      x_person_id,
      x_fund_code,
      x_fund_description,
      x_award_name,
      x_ci_cal_type,
      x_ci_sequence_number,
      x_award_total ,
      x_term_amount_text ,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 133

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

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_line_id                           IN     NUMBER,
    x_person_id                         IN     NUMBER,
    x_fund_code                         IN     VARCHAR2,
    x_fund_description                  IN     VARCHAR2    DEFAULT NULL,
    x_award_name                        IN     VARCHAR2,
    x_ci_cal_type                       IN     VARCHAR2    DEFAULT NULL,
    x_ci_sequence_number                IN     NUMBER      DEFAULT NULL,
    x_award_total                       IN     NUMBER      DEFAULT NULL,
    x_term_amount_text                  IN     VARCHAR2    DEFAULT NULL,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : svenkata
  ||  Created On : 07-FEB-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     IGF_AW_AWD_LTR_TMP
      WHERE    line_id = new_references.line_id ;
Line: 193

    x_last_update_date           DATE;
Line: 194

    x_last_updated_by            NUMBER;
Line: 195

    x_last_update_login          NUMBER;
Line: 199

    x_last_update_date := SYSDATE;
Line: 201

      x_last_updated_by := 1;
Line: 202

      x_last_update_login := 0;
Line: 204

      x_last_updated_by := fnd_global.user_id;
Line: 205

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

      x_last_update_login := fnd_global.login_id;
Line: 209

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

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_line_id                           => x_line_id,
      x_person_id                         => x_person_id,
      x_fund_code                         => x_fund_code,
      x_fund_description                         => x_fund_description,
      x_award_name                        => x_award_name,
      x_ci_cal_type                       => x_ci_cal_type,
      x_ci_sequence_number                => x_ci_sequence_number,
      x_award_total                       => x_award_total ,
      x_term_amount_text                  => x_term_amount_text,
      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: 237

    INSERT INTO IGF_AW_AWD_LTR_TMP (
      line_id,
      person_id,
      fund_code,
      fund_description,
      award_name,
      ci_cal_type,
      ci_sequence_number,
      award_total ,
      term_amount_text ,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      new_references.line_id,
      new_references.person_id,
      new_references.fund_code,
      new_references.fund_description,
      new_references.award_name,
      new_references.ci_cal_type,
      new_references.ci_sequence_number,
      new_references.award_total ,
      new_references.term_amount_text ,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 277

  END insert_row;
Line: 302

      SELECT
        line_id,
        person_id,
        fund_code,
        fund_description,
        award_name,
        ci_cal_type,
        ci_sequence_number,
        award_total ,
        term_amount_text
      FROM  IGF_AW_AWD_LTR_TMP
      WHERE ROWID = x_rowid
      FOR UPDATE NOWAIT;
Line: 323

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

      SELECT rowid
        FROM igf_aw_awd_ltr_tmp
       WHERE person_id          = x_person_id
         AND line_id            = x_line_id
         AND ci_cal_type        = x_ci_cal_type
         AND ci_sequence_number = x_ci_sequence_number
         FOR UPDATE NOWAIT;
Line: 393

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_line_id                           IN     NUMBER,
    x_person_id                         IN     NUMBER,
    x_fund_code                         IN     VARCHAR2,
    x_fund_description                  IN     VARCHAR2    DEFAULT NULL,
    x_award_name                        IN     VARCHAR2,
    x_ci_cal_type                       IN     VARCHAR2    DEFAULT NULL,
    x_ci_sequence_number                IN     NUMBER      DEFAULT NULL,
    x_award_total                       IN     NUMBER      DEFAULT NULL,
    x_term_amount_text                  IN     VARCHAR2    DEFAULT NULL,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : svenkata
  ||  Created On : 07-FEB-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: 416

    x_last_updated_by            NUMBER;
Line: 417

    x_last_update_login          NUMBER;
Line: 421

    x_last_update_date := SYSDATE;
Line: 423

      x_last_updated_by := 1;
Line: 424

      x_last_update_login := 0;
Line: 426

      x_last_updated_by := fnd_global.user_id;
Line: 427

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

      x_last_update_login := fnd_global.login_id;
Line: 431

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_line_id                           => x_line_id,
      x_person_id                         => x_person_id,
      x_fund_code                         => x_fund_code,
      x_fund_description                  => x_fund_description,
      x_award_name                        => x_award_name,
      x_ci_cal_type                       => x_ci_cal_type,
      x_ci_sequence_number                => x_ci_sequence_number,
      x_award_total                       => x_award_total,
      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: 458

    UPDATE IGF_AW_AWD_LTR_TMP
      SET
        line_id                           = new_references.line_id,
        person_id                         = new_references.person_id,
        fund_code                         = new_references.fund_code,
        fund_description                  = new_references.fund_description,
        award_name                        = new_references.award_name,
        ci_cal_type                       = new_references.ci_cal_type,
        ci_sequence_number                = new_references.ci_sequence_number,
        award_total                       = new_references.award_total,
        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: 477

  END update_row;
Line: 496

  ||  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_AWD_LTR_TMP
      WHERE    line_id = x_line_id;
Line: 514

      insert_row (
        x_rowid,
        x_line_id,
        x_person_id,
        x_fund_code,
        x_fund_description,
        x_award_name,
        x_ci_cal_type,
        x_ci_sequence_number,
        x_award_total       ,
        x_term_amount_text   ,
        x_mode
      );
Line: 531

    update_row (
      x_rowid,
      x_line_id,
      x_person_id,
      x_fund_code,
      x_fund_description,
      x_award_name,
      x_ci_cal_type,
      x_ci_sequence_number,
      x_award_total       ,
      x_term_amount_text   ,
      x_mode
    );
Line: 548

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : svenkata
  ||  Created On : 07-FEB-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: 567

    DELETE FROM IGF_AW_AWD_LTR_TMP
    WHERE ROWID = x_rowid;
Line: 574

  END delete_row;