DBA Data[Home] [Help]

APPS.IGS_HE_POOUS_OU_ALL_PKG SQL Statements

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

Line: 25

    x_last_update_date                  IN     DATE        ,
    x_last_updated_by                   IN     NUMBER      ,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 26-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_HE_POOUS_OU_ALL
      WHERE    rowid = x_rowid;
Line: 52

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

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

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

    new_references.last_update_date                  := x_last_update_date;
Line: 84

    new_references.last_updated_by                   := x_last_updated_by;
Line: 85

    new_references.last_update_login                 := x_last_update_login;
Line: 144

    SELECT 'X'
    FROM   IGS_PS_OFR_OPT_UNIT_SET_V
    WHERE  COURSE_CD = cp_course_cd
    AND    CRV_VERSION_NUMBER = cp_crv_version_number
    AND    CAL_TYPE = cp_cal_type
    AND    LOCATION_CD = cp_location_cd
    AND    ATTENDANCE_MODE = cp_attendance_mode
    AND    ATTENDANCE_TYPE = cp_attendance_type
    AND    UNIT_SET_CD = cp_unit_set_cd
    AND    US_VERSION_NUMBER = cp_us_version_number;
Line: 182

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

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

        Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
Line: 255

      SELECT   rowid
      FROM     igs_he_poous_ou_all
      WHERE    hesa_poous_ou_id = x_hesa_poous_ou_id
      FOR UPDATE NOWAIT;
Line: 298

      SELECT   rowid
      FROM     igs_he_poous_ou_all
      WHERE    course_cd = x_course_cd
      AND      crv_version_number = x_crv_version_number
      AND      cal_type = x_cal_type
      AND      location_cd = x_location_cd
      AND      attendance_mode = x_attendance_mode
      AND      attendance_type = x_attendance_type
      AND      unit_set_cd = x_unit_set_cd
      AND      us_version_number = x_us_version_number
      AND      organization_unit = x_organization_unit
      AND      ((l_rowid IS NULL) OR (rowid <> l_rowid));
Line: 346

      SELECT   rowid
      FROM     igs_he_poous_ou_all
      WHERE   (attendance_mode = x_attendance_type) AND
               (attendance_type = x_attendance_mode) AND
               (cal_type = x_cal_type) AND
               (course_cd = x_course_cd) AND
               (crv_version_number = x_crv_version_number) AND
               (location_cd = x_location_cd);
Line: 386

      SELECT   rowid
      FROM     igs_he_poous_ou_all
      WHERE  (unit_set_cd = x_unit_set_cd) AND
             (us_version_number = x_us_version_number);
Line: 425

      SELECT   rowid
      FROM     IGS_HE_POOUS_OU_ALL
      WHERE    COURSE_CD = x_course_cd
      AND      CRV_VERSION_NUMBER = x_version_number
      AND      CAL_TYPE = x_cal_type
      AND      UNIT_SET_CD = x_unit_set_cd
      AND      US_VERSION_NUMBER = x_us_version_number ;
Line: 468

    x_last_update_date                  IN     DATE        ,
    x_last_updated_by                   IN     NUMBER      ,
    x_last_update_login                 IN     NUMBER
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 26-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
  ||  (reverse chronological order - newest change first)
  ||  jbaber       17-Jan-2005        Added check_child_existence for
  ||                                  HE355 - Org Unit Cost Center Link
  */
  BEGIN

    set_column_values (
      p_action,
      x_rowid,
      x_hesa_poous_ou_id,
      x_org_id,
      x_course_cd,
      x_crv_version_number,
      x_cal_type,
      x_location_cd,
      x_attendance_mode,
      x_attendance_type,
      x_unit_set_cd,
      x_us_version_number,
      x_organization_unit,
      x_proportion,
      x_creation_date,
      x_created_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 508

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

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

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

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

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

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

  PROCEDURE insert_row (
    x_rowid                             IN OUT NOCOPY VARCHAR2,
    x_hesa_poous_ou_id                  IN OUT NOCOPY NUMBER,
    x_org_id                            IN     NUMBER,
    x_course_cd                         IN     VARCHAR2,
    x_crv_version_number                IN     NUMBER,
    x_cal_type                          IN     VARCHAR2,
    x_location_cd                       IN     VARCHAR2,
    x_attendance_mode                   IN     VARCHAR2,
    x_attendance_type                   IN     VARCHAR2,
    x_unit_set_cd                       IN     VARCHAR2,
    x_us_version_number                 IN     NUMBER,
    x_organization_unit                 IN     VARCHAR2,
    x_proportion                        IN     NUMBER,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 26-JAN-2002
  ||  Purpose : Handles the INSERT DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  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_poous_ou_all
      WHERE    hesa_poous_ou_id                  = x_hesa_poous_ou_id;
Line: 579

    x_last_update_date           DATE;
Line: 580

    x_last_updated_by            NUMBER;
Line: 581

    x_last_update_login          NUMBER;
Line: 585

    x_last_update_date := SYSDATE;
Line: 587

      x_last_updated_by := 1;
Line: 588

      x_last_update_login := 0;
Line: 590

      x_last_updated_by := fnd_global.user_id;
Line: 591

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

      x_last_update_login := fnd_global.login_id;
Line: 595

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

    SELECT    igs_he_poous_ou_all_s.NEXTVAL
    INTO      x_hesa_poous_ou_id
    FROM      dual;
Line: 609

      p_action                            => 'INSERT',
      x_rowid                             => x_rowid,
      x_hesa_poous_ou_id                  => x_hesa_poous_ou_id,
      x_org_id                            => igs_ge_gen_003.get_org_id,
      x_course_cd                         => x_course_cd,
      x_crv_version_number                => x_crv_version_number,
      x_cal_type                          => x_cal_type,
      x_location_cd                       => x_location_cd,
      x_attendance_mode                   => x_attendance_mode,
      x_attendance_type                   => x_attendance_type,
      x_unit_set_cd                       => x_unit_set_cd,
      x_us_version_number                 => x_us_version_number,
      x_organization_unit                 => x_organization_unit,
      x_proportion                        => x_proportion,
      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: 630

    INSERT INTO igs_he_poous_ou_all (
      hesa_poous_ou_id,
      org_id,
      course_cd,
      crv_version_number,
      cal_type,
      location_cd,
      attendance_mode,
      attendance_type,
      unit_set_cd,
      us_version_number,
      organization_unit,
      proportion,
      creation_date,
      created_by,
      last_update_date,
      last_updated_by,
      last_update_login
    ) VALUES (
      new_references.hesa_poous_ou_id,
      new_references.org_id,
      new_references.course_cd,
      new_references.crv_version_number,
      new_references.cal_type,
      new_references.location_cd,
      new_references.attendance_mode,
      new_references.attendance_type,
      new_references.unit_set_cd,
      new_references.us_version_number,
      new_references.organization_unit,
      new_references.proportion,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_date,
      x_last_updated_by,
      x_last_update_login
    );
Line: 676

  END insert_row;
Line: 706

      SELECT
        course_cd,
        crv_version_number,
        cal_type,
        location_cd,
        attendance_mode,
        attendance_type,
        unit_set_cd,
        us_version_number,
        organization_unit,
        proportion
      FROM  igs_he_poous_ou_all
      WHERE rowid = x_rowid
      FOR UPDATE NOWAIT;
Line: 728

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

  PROCEDURE update_row (
    x_rowid                             IN     VARCHAR2,
    x_hesa_poous_ou_id                  IN     NUMBER,
    x_org_id                            IN     NUMBER,
    x_course_cd                         IN     VARCHAR2,
    x_crv_version_number                IN     NUMBER,
    x_cal_type                          IN     VARCHAR2,
    x_location_cd                       IN     VARCHAR2,
    x_attendance_mode                   IN     VARCHAR2,
    x_attendance_type                   IN     VARCHAR2,
    x_unit_set_cd                       IN     VARCHAR2,
    x_us_version_number                 IN     NUMBER,
    x_organization_unit                 IN     VARCHAR2,
    x_proportion                        IN     NUMBER,
    x_mode                              IN     VARCHAR2
  ) AS
  /*
  ||  Created By : [email protected]
  ||  Created On : 26-JAN-2002
  ||  Purpose : Handles the UPDATE DML logic for the table.
  ||  Known limitations, enhancements or remarks :
  ||  Change History :
  ||  Who             When            What
  ||  smvk            13-Feb-2002     Call to igs_ge_gen_003.get_org_id
  ||                                  w.r.t. SWCR 006
  ||  (reverse chronological order - newest change first)
  */
    x_last_update_date           DATE ;
Line: 788

    x_last_updated_by            NUMBER;
Line: 789

    x_last_update_login          NUMBER;
Line: 793

    x_last_update_date := SYSDATE;
Line: 795

      x_last_updated_by := 1;
Line: 796

      x_last_update_login := 0;
Line: 798

      x_last_updated_by := fnd_global.user_id;
Line: 799

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

      x_last_update_login := fnd_global.login_id;
Line: 803

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

      p_action                            => 'UPDATE',
      x_rowid                             => x_rowid,
      x_hesa_poous_ou_id                  => x_hesa_poous_ou_id,
      x_org_id                            => igs_ge_gen_003.get_org_id,
      x_course_cd                         => x_course_cd,
      x_crv_version_number                => x_crv_version_number,
      x_cal_type                          => x_cal_type,
      x_location_cd                       => x_location_cd,
      x_attendance_mode                   => x_attendance_mode,
      x_attendance_type                   => x_attendance_type,
      x_unit_set_cd                       => x_unit_set_cd,
      x_us_version_number                 => x_us_version_number,
      x_organization_unit                 => x_organization_unit,
      x_proportion                        => x_proportion,
      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: 834

    UPDATE igs_he_poous_ou_all
      SET
        course_cd                         = new_references.course_cd,
        crv_version_number                = new_references.crv_version_number,
        cal_type                          = new_references.cal_type,
        location_cd                       = new_references.location_cd,
        attendance_mode                   = new_references.attendance_mode,
        attendance_type                   = new_references.attendance_type,
        unit_set_cd                       = new_references.unit_set_cd,
        us_version_number                 = new_references.us_version_number,
        organization_unit                 = new_references.organization_unit,
        proportion                        = new_references.proportion,
        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: 855

  END update_row;
Line: 877

  ||  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_he_poous_ou_all
      WHERE    hesa_poous_ou_id                  = x_hesa_poous_ou_id;
Line: 895

      insert_row (
        x_rowid,
        x_hesa_poous_ou_id,
        x_org_id,
        x_course_cd,
        x_crv_version_number,
        x_cal_type,
        x_location_cd,
        x_attendance_mode,
        x_attendance_type,
        x_unit_set_cd,
        x_us_version_number,
        x_organization_unit,
        x_proportion,
        x_mode
      );
Line: 915

    update_row (
      x_rowid,
      x_hesa_poous_ou_id,
      x_org_id,
      x_course_cd,
      x_crv_version_number,
      x_cal_type,
      x_location_cd,
      x_attendance_mode,
      x_attendance_type,
      x_unit_set_cd,
      x_us_version_number,
      x_organization_unit,
      x_proportion,
      x_mode
    );
Line: 935

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

    DELETE FROM igs_he_poous_ou_all
    WHERE rowid = x_rowid;
Line: 961

  END delete_row;