DBA Data[Home] [Help]

APPS.IGS_PS_FAC_TCFT_TMP_PKG SQL Statements

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

Line: 16

    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 : smaddali
  ||  Created On : 21-JAN-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     igs_ps_fac_tcft_tmp
      WHERE    rowid = x_rowid;
Line: 43

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 66

    new_references.last_updated_by                   := x_last_updated_by;
Line: 67

    new_references.last_update_login                 := x_last_update_login;
Line: 71

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_person_id                         IN     NUMBER,
    x_usec_occur_id1                    IN     NUMBER,
    x_usec_occur_id2                    IN     NUMBER,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : smaddali
  ||  Created On : 21-JAN-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     igs_ps_fac_tcft_tmp
      WHERE   person_id = new_references.person_id  AND
          usec_occur_id1 = new_references.usec_occur_id1  AND
          usec_occur_id2 = new_references.usec_occur_id2 ;
Line: 95

    x_last_update_date           DATE;
Line: 96

    x_last_updated_by            NUMBER;
Line: 97

    x_last_update_login          NUMBER;
Line: 101

    x_last_update_date := SYSDATE;
Line: 103

      x_last_updated_by := 1;
Line: 104

      x_last_update_login := 0;
Line: 106

      x_last_updated_by := fnd_global.user_id;
Line: 107

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

      x_last_update_login := fnd_global.login_id;
Line: 111

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

      'INSERT',
      x_rowid,
      x_person_id,
      x_usec_occur_id1,
      x_usec_occur_id2,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 133

    INSERT INTO igs_ps_fac_tcft_tmp (
      person_id,
      usec_occur_id1,
      usec_occur_id2,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      new_references.person_id,
      new_references.usec_occur_id1,
      new_references.usec_occur_id2,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 161

  END insert_row;
Line: 180

      SELECT
        person_id,
        usec_occur_id1,
        usec_occur_id2
      FROM  igs_ps_fac_tcft_tmp
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 195

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_person_id                         IN     NUMBER,
    x_usec_occur_id1                    IN     NUMBER,
    x_usec_occur_id2                    IN     NUMBER,
    x_mode                              IN     VARCHAR2 DEFAULT 'R'
  ) AS
  /*
  ||  Created By : smaddali
  ||  Created On : 21-JAN-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: 237

    x_last_updated_by            NUMBER;
Line: 238

    x_last_update_login          NUMBER;
Line: 242

    x_last_update_date := SYSDATE;
Line: 244

      x_last_updated_by := 1;
Line: 245

      x_last_update_login := 0;
Line: 247

      x_last_updated_by := fnd_global.user_id;
Line: 248

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

      x_last_update_login := fnd_global.login_id;
Line: 252

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

      'UPDATE',
      x_rowid,
      x_person_id,
      x_usec_occur_id1,
      x_usec_occur_id2,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login    );
Line: 273

    UPDATE igs_ps_fac_tcft_tmp
      SET         person_id                         = new_references.person_id,
        usec_occur_id1                    = new_references.usec_occur_id1,
        usec_occur_id2                    = new_references.usec_occur_id2,
        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: 286

  END update_row;
Line: 299

  ||  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     igs_ps_fac_tcft_tmp
      WHERE   person_id = x_person_id  AND
          usec_occur_id1 = x_usec_occur_id1  AND
          usec_occur_id2 = x_usec_occur_id2   ;
Line: 319

      insert_row (
        x_rowid,
        x_person_id,
        x_usec_occur_id1,
        x_usec_occur_id2,
        x_mode
      );
Line: 330

    update_row (
      x_rowid,
      x_person_id,
      x_usec_occur_id1,
      x_usec_occur_id2,
      x_mode
    );
Line: 341

  PROCEDURE delete_row (
    x_rowid IN VARCHAR2
  ) AS
  /*
  ||  Created By : smaddali
  ||  Created On : 21-JAN-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

    DELETE FROM igs_ps_fac_tcft_tmp
    WHERE rowid = x_rowid;
Line: 362

  END delete_row;