DBA Data[Home] [Help]

APPS.IGS_HE_ST_UNT_VS_ALL_PKG SQL Statements

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

Line: 22

    x_last_update_date                  IN     DATE        ,
    x_last_updated_by                   IN     NUMBER      ,
    x_last_update_login                 IN     NUMBER      ,
    x_exclude_flag                      IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 29-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
  || sbaliga       8-apr-2002     Added a parameter x_location_cd as part of #2278825
  ||  (reverse chronological order - newest change first)
  */

    CURSOR cur_old_ref_values IS
      SELECT   *
      FROM     IGS_HE_ST_UNT_VS_ALL
      WHERE    rowid = x_rowid;
Line: 51

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 81

    new_references.last_updated_by                   := x_last_updated_by;
Line: 82

    new_references.last_update_login                 := x_last_update_login;
Line: 133

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

      SELECT   rowid
      FROM     igs_he_st_unt_vs_all
      WHERE    hesa_st_unt_vs_id = x_hesa_st_unt_vs_id
      FOR UPDATE NOWAIT;
Line: 190

      SELECT   rowid
      FROM     igs_he_st_unt_vs_all
      WHERE    unit_cd = x_unit_cd
      AND      version_number = x_version_number
      AND      ((l_rowid IS NULL) OR (rowid <> l_rowid));
Line: 227

      SELECT   rowid
      FROM     igs_he_st_unt_vs_all
      WHERE   ((unit_cd = x_unit_cd) AND
               (version_number = x_version_number));
Line: 253

    SELECT 'X' FROM igs_en_su_attempt
    WHERE unit_cd      =   cp_unit_cd
      AND version_number = cp_version;
Line: 289

    x_last_update_date                  IN     DATE        ,
    x_last_updated_by                   IN     NUMBER      ,
    x_last_update_login                 IN     NUMBER      ,
    x_exclude_flag                      IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 29-JAN-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
  || sbaliga      8-Apr-2002    Added a parameter x_location_cd as aprt of #2278825
  ||  (reverse chronological order - newest change first)
  */
  BEGIN

    set_column_values (
      p_action,
      x_rowid,
      x_hesa_st_unt_vs_id,
      x_org_id,
      x_unit_cd,
      x_version_number,
      x_prop_of_teaching_in_welsh,
      x_credit_transfer_scheme,
      x_module_length,
      x_proportion_of_fte,
      x_location_cd,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login,
      x_exclude_flag
    );
Line: 327

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

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

    ELSIF (p_action = 'DELETE') THEN
      check_unit_attempt_exists;
Line: 345

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

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

    ELSIF (p_action = 'VALIDATE_DELETE') THEN
       check_unit_attempt_exists;
Line: 365

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_hesa_st_unt_vs_id                 IN OUT NOCOPY NUMBER,
    x_org_id                            IN     NUMBER,
    x_unit_cd                           IN     VARCHAR2,
    x_version_number                    IN     NUMBER,
    x_prop_of_teaching_in_welsh         IN     NUMBER,
    x_credit_transfer_scheme            IN     VARCHAR2,
    x_module_length                     IN     NUMBER,
    x_proportion_of_fte                 IN     NUMBER,
    x_location_cd                       IN     VARCHAR2,
    x_mode                              IN     VARCHAR2,
    x_exclude_flag                      IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 29-JAN-2002
  ||  Purpose : Handles the INSERT DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  || sbaliga         8-Apr-2002     Added a parameter x_location_cd as part of #2278825
  ||  smvk           13-Feb-2002     Call to igs_ge_gen_003.get_org_id
  ||                                 w.r.t. SWCR006
  ||  (reverse chronological order - newest change first)
  */
    CURSOR c IS
      SELECT   rowid
      FROM     igs_he_st_unt_vs_all
      WHERE    hesa_st_unt_vs_id                 = x_hesa_st_unt_vs_id;
Line: 396

    x_last_update_date           DATE;
Line: 397

    x_last_updated_by            NUMBER;
Line: 398

    x_last_update_login          NUMBER;
Line: 402

    x_last_update_date := SYSDATE;
Line: 404

      x_last_updated_by := 1;
Line: 405

      x_last_update_login := 0;
Line: 407

      x_last_updated_by := fnd_global.user_id;
Line: 408

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

      x_last_update_login := fnd_global.login_id;
Line: 412

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

    SELECT    igs_he_st_unt_vs_all_s.NEXTVAL
    INTO      x_hesa_st_unt_vs_id
    FROM      dual;
Line: 426

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_hesa_st_unt_vs_id                 => x_hesa_st_unt_vs_id,
      x_org_id                            => igs_ge_gen_003.get_org_id,
      x_unit_cd                           => x_unit_cd,
      x_version_number                    => x_version_number,
      x_prop_of_teaching_in_welsh         => x_prop_of_teaching_in_welsh,
      x_credit_transfer_scheme            => x_credit_transfer_scheme,
      x_module_length                     => x_module_length,
      x_proportion_of_fte                 => x_proportion_of_fte,
      x_location_cd                       => x_location_cd,
      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_exclude_flag                      => x_exclude_flag
    );
Line: 445

    INSERT INTO igs_he_st_unt_vs_all (
      hesa_st_unt_vs_id,
      org_id,
      unit_cd,
      version_number,
      prop_of_teaching_in_welsh,
      credit_transfer_scheme,
      module_length,
      proportion_of_fte,
      location_cd,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login,
      exclude_flag
    ) VALUES (
      new_references.hesa_st_unt_vs_id,
      new_references.org_id,
      new_references.unit_cd,
      new_references.version_number,
      new_references.prop_of_teaching_in_welsh,
      new_references.credit_transfer_scheme,
      new_references.module_length,
      new_references.proportion_of_fte,
      new_references.location_cd,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login,
      new_references.exclude_flag
    );
Line: 487

  END insert_row;
Line: 516

      SELECT
        unit_cd,
        version_number,
        prop_of_teaching_in_welsh,
        credit_transfer_scheme,
        module_length,
        proportion_of_fte,
        location_cd,
        exclude_flag
      FROM  igs_he_st_unt_vs_all
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 536

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_hesa_st_unt_vs_id                 IN     NUMBER,
    x_org_id                            IN     NUMBER,
    x_unit_cd                           IN     VARCHAR2,
    x_version_number                    IN     NUMBER,
    x_prop_of_teaching_in_welsh         IN     NUMBER,
    x_credit_transfer_scheme            IN     VARCHAR2,
    x_module_length                     IN     NUMBER,
    x_proportion_of_fte                 IN     NUMBER,
    x_location_cd                       IN     VARCHAR2,
    x_mode                              IN     VARCHAR2,
    x_exclude_flag                      IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 29-JAN-2002
  ||  Purpose : Handles the UPDATE DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  || sbaliga         8-Apr-2002         Added parameter x_location_cd as part of #2278825
  ||  smvk            13-Feb-2002     Call to igs_ge_gen_003.get_org_id
  ||                                  w.r.t  SWCR006
  ||  (reverse chronological order - newest change first)
  */
    x_last_update_date           DATE ;
Line: 593

    x_last_updated_by            NUMBER;
Line: 594

    x_last_update_login          NUMBER;
Line: 598

    x_last_update_date := SYSDATE;
Line: 600

      x_last_updated_by := 1;
Line: 601

      x_last_update_login := 0;
Line: 603

      x_last_updated_by := fnd_global.user_id;
Line: 604

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

      x_last_update_login := fnd_global.login_id;
Line: 608

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_hesa_st_unt_vs_id                 => x_hesa_st_unt_vs_id,
      x_org_id                            => igs_ge_gen_003.get_org_id,
      x_unit_cd                           => x_unit_cd,
      x_version_number                    => x_version_number,
      x_prop_of_teaching_in_welsh         => x_prop_of_teaching_in_welsh,
      x_credit_transfer_scheme            => x_credit_transfer_scheme,
      x_module_length                     => x_module_length,
      x_proportion_of_fte                 => x_proportion_of_fte,
      x_location_cd                       => x_location_cd,
      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_exclude_flag                      => x_exclude_flag
    );
Line: 637

    UPDATE igs_he_st_unt_vs_all
      SET
        unit_cd                           = new_references.unit_cd,
        version_number                    = new_references.version_number,
        prop_of_teaching_in_welsh         = new_references.prop_of_teaching_in_welsh,
        credit_transfer_scheme            = new_references.credit_transfer_scheme,
        module_length                     = new_references.module_length,
        proportion_of_fte                 = new_references.proportion_of_fte,
        location_cd                       = new_references.location_cd,
        last_update_date                  = x_last_update_date,
        last_updated_by                   = x_last_updated_by,
        last_update_login                 = x_last_update_login,
        exclude_flag                      = new_references.exclude_flag
      WHERE rowid = x_rowid;
Line: 656

  END update_row;
Line: 676

  ||  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
  ||sbaliga       8-Apr-2002    Added a parameter x_location_cd as part of #2278825
  ||  (reverse chronological order - newest change first)
  */
    CURSOR c1 IS
      SELECT   rowid
      FROM     igs_he_st_unt_vs_all
      WHERE    hesa_st_unt_vs_id                 = x_hesa_st_unt_vs_id;
Line: 695

      insert_row (
        x_rowid,
        x_hesa_st_unt_vs_id,
        x_org_id,
        x_unit_cd,
        x_version_number,
        x_prop_of_teaching_in_welsh,
        x_credit_transfer_scheme,
        x_module_length,
        x_proportion_of_fte,
        x_location_cd,
        x_mode,
        x_exclude_flag
      );
Line: 713

    update_row (
      x_rowid,
      x_hesa_st_unt_vs_id,
      x_org_id,
      x_unit_cd,
      x_version_number,
      x_prop_of_teaching_in_welsh,
      x_credit_transfer_scheme,
      x_module_length,
      x_proportion_of_fte,
      x_location_cd,
      x_mode,
      x_exclude_flag
    );
Line: 731

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

    before_dml (
      p_action => 'DELETE',
      x_rowid => x_rowid
    );
Line: 750

    DELETE FROM igs_he_st_unt_vs_all
    WHERE rowid = x_rowid;
Line: 757

  END delete_row;