DBA Data[Home] [Help]

APPS.IGS_UC_APP_STATS_PKG SQL Statements

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

Line: 29

    x_last_update_date                  IN     DATE        ,
    x_last_updated_by                   IN     NUMBER      ,
    x_last_update_login                 IN     NUMBER      ,
    -- Added following 3 Columns as part of UCCR002 Build. Bug NO: 2278817 by rbezawad
    x_starh_socio_economic              IN     NUMBER      ,
    x_starx_socio_economic              IN     NUMBER      ,
    x_starx_occ_background              IN     VARCHAR2    ,
     -- Added following  Columns as part of UCFD102Build. Bug NO: 2643048 by bayadav
    x_ivstarh_dependants	            	IN		 NUMBER		   ,
    x_ivstarh_married		                IN		 VARCHAR2	   ,
    x_ivstarx_religion		              IN		 NUMBER		   ,
    x_ivstarx_dependants		            IN		 NUMBER		   ,
    x_ivstarx_married		                IN		 VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 21-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
  ||  smaddali    10-jun-03    obsoleting timestamp columns for ucfd203 - multiple cycles build , bug#2669208 |
  ||  (reverse chronological order - newest change first)
  */

    CURSOR cur_old_ref_values IS
      SELECT   *
      FROM     IGS_UC_APP_STATS
      WHERE    rowid = x_rowid;
Line: 67

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 112

    new_references.last_updated_by                   := x_last_updated_by;
Line: 113

    new_references.last_update_login                 := x_last_update_login;
Line: 160

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

      SELECT   rowid
      FROM     igs_uc_app_stats
      WHERE    app_stat_id = x_app_stat_id ;
Line: 215

      SELECT   rowid
      FROM     igs_uc_app_stats
      WHERE    app_no = x_app_no
      AND      ((l_rowid IS NULL) OR (rowid <> l_rowid));
Line: 250

      SELECT   rowid
      FROM     igs_uc_app_stats
      WHERE   ((app_id = x_app_id));
Line: 293

    x_last_update_date                  IN     DATE        ,
    x_last_updated_by                   IN     NUMBER      ,
    x_last_update_login                 IN     NUMBER      ,
    -- Added following 3 Columns as part of UCCR002 Build. Bug NO: 2278817 by rbezawad
    x_starh_socio_economic              IN     NUMBER      ,
    x_starx_socio_economic              IN     NUMBER      ,
    x_starx_occ_background              IN     VARCHAR2    ,
     -- Added following  Columns as part of UCFD102Build. Bug NO: 2643048 by bayadav
    x_ivstarh_dependants	            	IN		 NUMBER		   ,
    x_ivstarh_married		                IN		 VARCHAR2	   ,
    x_ivstarx_religion		              IN		 NUMBER		   ,
    x_ivstarx_dependants		            IN		 NUMBER		   ,
    x_ivstarx_married		                IN		 VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 21-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
  ||  smaddali    10-jun-03    obsoleting timestamp columns for ucfd203 - multiple cycles build , bug#2669208 |
  ||  (reverse chronological order - newest change first)
  */
  BEGIN

    set_column_values (
      p_action,
      x_rowid,
      x_app_stat_id,
      x_app_id,
      x_app_no,
      x_starh_ethnic,
      x_starh_social_class,
      x_starh_pocc_edu_chg_dt,
      x_starh_pocc,
      x_starh_pocc_text,
      x_starh_last_edu_inst,
      x_starh_edu_leave_date,
      x_starh_lea,
      x_starx_ethnic,
      x_starx_pocc_edu_chg,
      x_starx_pocc,
      x_starx_pocc_text,
      x_sent_to_hesa,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login,
      x_starh_socio_economic,
      x_starx_socio_economic,
      x_starx_occ_background,
      x_ivstarh_dependants,
      x_ivstarh_married,
      x_ivstarx_religion,
      x_ivstarx_dependants,
      x_ivstarx_married
    );
Line: 354

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

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

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

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_app_stat_id                       IN OUT NOCOPY NUMBER,
    x_app_id                            IN     NUMBER,
    x_app_no                            IN     NUMBER,
    x_starh_ethnic                      IN     NUMBER,
    x_starh_social_class                IN     VARCHAR2,
    x_starh_pocc_edu_chg_dt             IN     DATE,
    x_starh_pocc                        IN     VARCHAR2,
    x_starh_pocc_text                   IN     VARCHAR2,
    x_starh_last_edu_inst               IN     NUMBER,
    x_starh_edu_leave_date              IN     NUMBER,
    x_starh_lea                         IN     NUMBER,
    x_starx_ethnic                      IN     NUMBER,
    x_starx_pocc_edu_chg                IN     DATE,
    x_starx_pocc                        IN     VARCHAR2,
    x_starx_pocc_text                   IN     VARCHAR2,
    x_sent_to_hesa                      IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 ,
    -- Added following 3 Columns as part of UCCR002 Build. Bug NO: 2278817 by rbezawad
    x_starh_socio_economic              IN     NUMBER      ,
    x_starx_socio_economic              IN     NUMBER      ,
    x_starx_occ_background              IN     VARCHAR2    ,
     -- Added following  Columns as part of UCFD102Build. Bug NO: 2643048 by bayadav
    x_ivstarh_dependants	            	IN		 NUMBER		   ,
    x_ivstarh_married		                IN		 VARCHAR2	   ,
    x_ivstarx_religion		              IN		 NUMBER		   ,
    x_ivstarx_dependants		            IN		 NUMBER		   ,
    x_ivstarx_married		                IN		 VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 21-FEB-2002
  ||  Purpose : Handles the INSERT DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  smaddali    10-jun-03    obsoleting timestamp columns for ucfd203 - multiple cycles build , bug#2669208 |
  ||  (reverse chronological order - newest change first)
  */
    CURSOR c IS
      SELECT   rowid
      FROM     igs_uc_app_stats
      WHERE    app_stat_id                       = x_app_stat_id;
Line: 433

    x_last_update_date           DATE;
Line: 434

    x_last_updated_by            NUMBER;
Line: 435

    x_last_update_login          NUMBER;
Line: 439

    x_last_update_date := SYSDATE;
Line: 441

      x_last_updated_by := 1;
Line: 442

      x_last_update_login := 0;
Line: 444

      x_last_updated_by := fnd_global.user_id;
Line: 445

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

      x_last_update_login := fnd_global.login_id;
Line: 449

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

    SELECT    igs_uc_app_stats_s.NEXTVAL
    INTO      x_app_stat_id
    FROM      dual;
Line: 463

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_app_stat_id                       => x_app_stat_id,
      x_app_id                            => x_app_id,
      x_app_no                            => x_app_no,
      x_starh_ethnic                      => x_starh_ethnic,
      x_starh_social_class                => x_starh_social_class,
      x_starh_pocc_edu_chg_dt             => x_starh_pocc_edu_chg_dt,
      x_starh_pocc                        => x_starh_pocc,
      x_starh_pocc_text                   => x_starh_pocc_text,
      x_starh_last_edu_inst               => x_starh_last_edu_inst,
      x_starh_edu_leave_date              => x_starh_edu_leave_date,
      x_starh_lea                         => x_starh_lea,
      x_starx_ethnic                      => x_starx_ethnic,
      x_starx_pocc_edu_chg                => x_starx_pocc_edu_chg,
      x_starx_pocc                        => x_starx_pocc,
      x_starx_pocc_text                   => x_starx_pocc_text,
      x_sent_to_hesa                      => x_sent_to_hesa,
      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_starh_socio_economic              => x_starh_socio_economic,
      x_starx_socio_economic              => x_starx_socio_economic,
      x_starx_occ_background              => x_starx_occ_background,
       x_ivstarh_dependants	            	=> x_ivstarh_dependants,
      x_ivstarh_married		                => x_ivstarh_married,
      x_ivstarx_religion		              => x_ivstarx_religion,
      x_ivstarx_dependants		            => x_ivstarx_dependants,
      x_ivstarx_married		                => x_ivstarx_married
    );
Line: 496

    INSERT INTO igs_uc_app_stats (
      app_stat_id,
      app_id,
      app_no,
      starh_ethnic,
      starh_social_class,
      starh_pocc_edu_chg_dt,
      starh_pocc,
      starh_pocc_text,
      starh_last_edu_inst,
      starh_edu_leave_date,
      starh_lea,
      starx_ethnic,
      starx_pocc_edu_chg,
      starx_pocc,
      starx_pocc_text,
      sent_to_hesa,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login,
      starh_socio_economic,
      starx_socio_economic,
      starx_occ_background,
      ivstarh_dependants,
      ivstarh_married,
      ivstarx_religion,
      ivstarx_dependants,
      ivstarx_married
    ) VALUES (
      new_references.app_stat_id,
      new_references.app_id,
      new_references.app_no,
      new_references.starh_ethnic,
      new_references.starh_social_class,
      new_references.starh_pocc_edu_chg_dt,
      new_references.starh_pocc,
      new_references.starh_pocc_text,
      new_references.starh_last_edu_inst,
      new_references.starh_edu_leave_date,
      new_references.starh_lea,
      new_references.starx_ethnic,
      new_references.starx_pocc_edu_chg,
      new_references.starx_pocc,
      new_references.starx_pocc_text,
      new_references.sent_to_hesa,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login,
      new_references.starh_socio_economic,
      new_references.starx_socio_economic,
      new_references.starx_occ_background,
      new_references.ivstarh_dependants,
      new_references.ivstarh_married,
      new_references.ivstarx_religion,
      new_references.ivstarx_dependants,
      new_references.ivstarx_married
    );
Line: 566

  END insert_row;
Line: 609

      SELECT
        app_id,
        app_no,
        starh_ethnic,
        starh_social_class,
        starh_pocc_edu_chg_dt,
        starh_pocc,
        starh_pocc_text,
        starh_last_edu_inst,
        starh_edu_leave_date,
        starh_lea,
        starx_ethnic,
        starx_pocc_edu_chg,
        starx_pocc,
        starx_pocc_text,
        sent_to_hesa,
        starh_socio_economic,
        starx_socio_economic,
        starx_occ_background,
        ivstarh_dependants,
        ivstarh_married,
        ivstarx_religion,
        ivstarx_dependants,
        ivstarx_married
      FROM  igs_uc_app_stats
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 644

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_app_stat_id                       IN     NUMBER,
    x_app_id                            IN     NUMBER,
    x_app_no                            IN     NUMBER,
    x_starh_ethnic                      IN     NUMBER,
    x_starh_social_class                IN     VARCHAR2,
    x_starh_pocc_edu_chg_dt             IN     DATE,
    x_starh_pocc                        IN     VARCHAR2,
    x_starh_pocc_text                   IN     VARCHAR2,
    x_starh_last_edu_inst               IN     NUMBER,
    x_starh_edu_leave_date              IN     NUMBER,
    x_starh_lea                         IN     NUMBER,
    x_starx_ethnic                      IN     NUMBER,
    x_starx_pocc_edu_chg                IN     DATE,
    x_starx_pocc                        IN     VARCHAR2,
    x_starx_pocc_text                   IN     VARCHAR2,
    x_sent_to_hesa                      IN     VARCHAR2,
    x_mode                              IN     VARCHAR2 ,
    -- Added following 3 Columns as part of UCCR002 Build. Bug NO: 2278817 by rbezawad
    x_starh_socio_economic              IN     NUMBER      ,
    x_starx_socio_economic              IN     NUMBER      ,
    x_starx_occ_background              IN     VARCHAR2    ,
     -- Added following  Columns as part of UCFD102Build. Bug NO: 2643048 by bayadav
    x_ivstarh_dependants	            	IN		 NUMBER		   ,
    x_ivstarh_married		                IN		 VARCHAR2	   ,
    x_ivstarx_religion		              IN		 NUMBER		   ,
    x_ivstarx_dependants		            IN		 NUMBER		   ,
    x_ivstarx_married		                IN		 VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 21-FEB-2002
  ||  Purpose : Handles the UPDATE DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  smaddali    10-jun-03    obsoleting timestamp columns for ucfd203 - multiple cycles build , bug#2669208 |
  ||  (reverse chronological order - newest change first)
  */
    x_last_update_date           DATE ;
Line: 730

    x_last_updated_by            NUMBER;
Line: 731

    x_last_update_login          NUMBER;
Line: 735

    x_last_update_date := SYSDATE;
Line: 737

      x_last_updated_by := 1;
Line: 738

      x_last_update_login := 0;
Line: 740

      x_last_updated_by := fnd_global.user_id;
Line: 741

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

      x_last_update_login := fnd_global.login_id;
Line: 745

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_app_stat_id                       => x_app_stat_id,
      x_app_id                            => x_app_id,
      x_app_no                            => x_app_no,
      x_starh_ethnic                      => x_starh_ethnic,
      x_starh_social_class                => x_starh_social_class,
      x_starh_pocc_edu_chg_dt             => x_starh_pocc_edu_chg_dt,
      x_starh_pocc                        => x_starh_pocc,
      x_starh_pocc_text                   => x_starh_pocc_text,
      x_starh_last_edu_inst               => x_starh_last_edu_inst,
      x_starh_edu_leave_date              => x_starh_edu_leave_date,
      x_starh_lea                         => x_starh_lea,
      x_starx_ethnic                      => x_starx_ethnic,
      x_starx_pocc_edu_chg                => x_starx_pocc_edu_chg,
      x_starx_pocc                        => x_starx_pocc,
      x_starx_pocc_text                   => x_starx_pocc_text,
      x_sent_to_hesa                      => x_sent_to_hesa,
      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_starh_socio_economic              => x_starh_socio_economic,
      x_starx_socio_economic              => x_starx_socio_economic,
      x_starx_occ_background              => x_starx_occ_background,
      x_ivstarh_dependants	            	=> x_ivstarh_dependants,
      x_ivstarh_married		                => x_ivstarh_married,
      x_ivstarx_religion		              => x_ivstarx_religion,
      x_ivstarx_dependants		            => x_ivstarx_dependants,
      x_ivstarx_married		                => x_ivstarx_married
    );
Line: 788

    UPDATE igs_uc_app_stats
      SET
        app_id                            = new_references.app_id,
        app_no                            = new_references.app_no,
        starh_ethnic                      = new_references.starh_ethnic,
        starh_social_class                = new_references.starh_social_class,
        starh_pocc_edu_chg_dt             = new_references.starh_pocc_edu_chg_dt,
        starh_pocc                        = new_references.starh_pocc,
        starh_pocc_text                   = new_references.starh_pocc_text,
        starh_last_edu_inst               = new_references.starh_last_edu_inst,
        starh_edu_leave_date              = new_references.starh_edu_leave_date,
        starh_lea                         = new_references.starh_lea,
        starx_ethnic                      = new_references.starx_ethnic,
        starx_pocc_edu_chg                = new_references.starx_pocc_edu_chg,
        starx_pocc                        = new_references.starx_pocc,
        starx_pocc_text                   = new_references.starx_pocc_text,
        sent_to_hesa                      = new_references.sent_to_hesa,
        last_update_date                  = x_last_update_date,
        last_updated_by                   = x_last_updated_by,
        last_update_login                 = x_last_update_login,
        starh_socio_economic              = new_references.starh_socio_economic,
        starx_socio_economic              = new_references.starx_socio_economic,
        starx_occ_background              = new_references.starx_occ_background,
          -- Added following  Columns as part of UCFD102Build. Bug NO: 2643048 by bayadav
        ivstarh_dependants	            	= new_references.ivstarh_dependants,
        ivstarh_married		                = new_references.ivstarh_married,
        ivstarx_religion		              = new_references.ivstarx_religion,
        ivstarx_dependants		            = new_references.ivstarx_dependants,
        ivstarx_married		                = new_references.ivstarx_married
      WHERE rowid = x_rowid;
Line: 823

  END update_row;
Line: 859

  ||  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
  ||  smaddali    10-jun-03    obsoleting timestamp columns for ucfd203 - multiple cycles build , bug#2669208 |
  ||  (reverse chronological order - newest change first)
  */
    CURSOR c1 IS
      SELECT   rowid
      FROM     igs_uc_app_stats
      WHERE    app_stat_id  = x_app_stat_id;
Line: 878

      insert_row (
        x_rowid,
        x_app_stat_id,
        x_app_id,
        x_app_no,
        x_starh_ethnic,
        x_starh_social_class,
        x_starh_pocc_edu_chg_dt,
        x_starh_pocc,
        x_starh_pocc_text,
        x_starh_last_edu_inst,
        x_starh_edu_leave_date,
        x_starh_lea,
        x_starx_ethnic,
        x_starx_pocc_edu_chg,
        x_starx_pocc,
        x_starx_pocc_text,
        x_sent_to_hesa,
        x_mode,
        x_starh_socio_economic,
        x_starx_socio_economic,
        x_starx_occ_background,
        x_ivstarh_dependants,
        x_ivstarh_married,
        x_ivstarx_religion,
        x_ivstarx_dependants,
        x_ivstarx_married
      );
Line: 910

    update_row (
      x_rowid,
      x_app_stat_id,
      x_app_id,
      x_app_no,
      x_starh_ethnic,
      x_starh_social_class,
      x_starh_pocc_edu_chg_dt,
      x_starh_pocc,
      x_starh_pocc_text,
      x_starh_last_edu_inst,
      x_starh_edu_leave_date,
      x_starh_lea,
      x_starx_ethnic,
      x_starx_pocc_edu_chg,
      x_starx_pocc,
      x_starx_pocc_text,
      x_sent_to_hesa,
      x_mode,
      x_starh_socio_economic,
      x_starx_socio_economic,
      x_starx_occ_background ,
      x_ivstarh_dependants,
      x_ivstarh_married,
      x_ivstarx_religion,
      x_ivstarx_dependants,
      x_ivstarx_married
    );
Line: 942

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

    DELETE FROM igs_uc_app_stats
    WHERE rowid = x_rowid;
Line: 968

  END delete_row;