index

Package gb_pcol_concentration

This package provides the Common Business interface for the PRIOR COLLEGE CONCENTRATION API (gb_pcol_concentration).
 
The Prior College Concentration API creates information about the person's educational background, including institutions attended, degrees received at each institution and areas of concentration at each institution.
Before prior college concentration information can be created, identification information must exist for the person.
If the person is an employee then employee security applies as described in the PB_EMPLOYEE API, and the user must have appropriate "HR" security to the employee to query, create, update or delete honor and award records.
 
A person can have many prior college concentration records.  Prior college concentration records must have a corresponding prior college degree record in the prior college degree table (SORDEGR).  Internal identification number, source background institution code, degree code and degree sequence number must exist in the prior college degree table for a concentration record.  The prior college degree record has a unique key index made up by internal identification number, source background institution code, degree code, degree sequence number and concentration code.  The degree code is nullable in the table.
 
To create a prior college concentration record, the internal identification number, source background institution code, degree sequence number and concentration code are required.
 
The p_update procedure will not get called when updating a prior college concentration record.  Since concentration code is required and part of the unique key, the concentration code will be updated by calling the p_delete and then the p_create procedure.
 
This API is called from multiple product lines.  Some of its logic may be used by specific product lines only. For these cases, context variables are being used. The context variable CHECK_HR_SECURITY is used when the calling product line is Human Resources in order to perform person access checks.


Program units
f_api_version   Returns the API version number.
f_exists   Checks if a record exists.
f_isequal   Compares two records for equality.
f_query_all   Selects all records for the entity.
f_query_one   Selects one record using key.
f_query_by_rowid   Selects one record using ROWID.
f_query_one_lock   Selects one record and locks it.
p_create   Creates a record.
p_copy_all   Copies all child concentration records to a new degree code and degree sequence number, currently called from forms when a user is calling the duplicate record functionality for a new degree record.
p_delete   Deletes a record.
p_lock   Locks a record.
p_update   Updates a record.

Types
pcol_concentration_rec   Business Entity record type
pcol_concentration_ref   Entity cursor variable type
concentration_tab   Entity table type

Constants
M_ENTITY_NAME   Business Entity Name
M_BASE_TABLE_NAME   Base table name


M_ENTITY_NAME

M_ENTITY_NAME    CONSTANT VARCHAR2(18) := 'PCOL_CONCENTRATION';

Business Entity Name


M_BASE_TABLE_NAME

M_BASE_TABLE_NAME    CONSTANT VARCHAR2(7) := 'SORCONC';

Base table name


pcol_concentration_rec

TYPE pcol_concentration_rec IS RECORD (
  r_pidm                    sorconc.sorconc_pidm%TYPE,
  r_sbgi_code               sorconc.sorconc_sbgi_code%TYPE,
  r_degc_code               sorconc.sorconc_degc_code%TYPE,
  r_degr_seq_no             sorconc.sorconc_degr_seq_no%TYPE,
  r_majr_code_conc          sorconc.sorconc_majr_code_conc%TYPE,
  r_data_origin             sorconc.sorconc_data_origin%TYPE,
  r_user_id                 sorconc.sorconc_user_id%TYPE,
  r_internal_record_id      gb_common.internal_record_id_type);

Business Entity record type


pcol_concentration_ref

TYPE pcol_concentration_ref IS REF CURSOR RETURN pcol_concentration_rec;

Entity cursor variable type


concentration_tab

TYPE concentration_tab IS TABLE OF pcol_concentration_rec INDEX BY BINARY_INTEGER;

Entity table type


f_api_version

FUNCTION f_api_version RETURN PLS_INTEGER

Returns the API version number.

Returns
Version of the API signature. Changes only when the signature changes.


f_exists

FUNCTION f_exists(p_pidm           sorconc.sorconc_pidm%TYPE,
                  p_sbgi_code      sorconc.sorconc_sbgi_code%TYPE,
                  p_degc_code      sorconc.sorconc_degc_code%TYPE,
                  p_degr_seq_no    sorconc.sorconc_degr_seq_no%TYPE,
                  p_majr_code_conc sorconc.sorconc_majr_code_conc%TYPE,
                  p_rowid          gb_common.internal_record_id_type DEFAULT NULL)
  RETURN VARCHAR2

Checks if a record exists.

Parameters
p_pidm   Internal identification number. NUMBER(8) Required Key
p_sbgi_code   Prior college code.  The SBGI code must be previously defined on the source/background institution code validation table. VARCHAR2(6) Required Key
p_degc_code   Prior college degree code.  The degree code must be previously defined on the degree code validation table. VARCHAR2(6) Key
p_degr_seq_no   Prior college degree sequence number. NUMBER(2) Required Key
p_majr_code_conc   Concentration area code.  The concentration code must be previously defined as a concentration on the Major, Minor, Concentration validation table. VARCHAR2(4) Required Key
p_rowid   Database ROWID of the record to be selected. VARCHAR2(18)

Returns
Y if found, otherwise N.


f_isequal

FUNCTION f_isequal(rec_one pcol_concentration_rec,
                   rec_two pcol_concentration_rec) RETURN VARCHAR2

Compares two records for equality.
Tests each field of rec_one against the corresponding field of rec_two. Two null values are considered equal.

Parameters
rec_one   The first record to compare. Type pcol_concentration_rec Required
rec_two   The second record to compare. Type pcol_concentration_rec Required

Returns
Y if all values in records are equal, otherwise N. Nulls match Nulls.


f_query_all

FUNCTION f_query_all(p_pidm           sorconc.sorconc_pidm%TYPE,
                     p_sbgi_code      sorconc.sorconc_sbgi_code%TYPE DEFAULT NULL,
                     p_degc_code      sorconc.sorconc_degc_code%TYPE DEFAULT NULL,
                     p_degr_seq_no    sorconc.sorconc_degr_seq_no%TYPE DEFAULT NULL,
                     p_majr_code_conc sorconc.sorconc_majr_code_conc%TYPE DEFAULT NULL)
  RETURN pcol_concentration_ref

Selects all records for the entity.

Parameters
p_pidm   Internal identification number. NUMBER(8) Required Key
p_sbgi_code   Prior college code.  The SBGI code must be previously defined on the source/background institution code validation table. VARCHAR2(6) Required Key
p_degc_code   Prior college degree code.  The degree code must be previously defined on the degree code validation table. VARCHAR2(6) Key
p_degr_seq_no   Prior college degree sequence number. NUMBER(2) Required Key
p_majr_code_conc   Concentration area code.  The concentration code must be previously defined as a concentration on the Major, Minor, Concentration validation table. VARCHAR2(4) Required Key

Returns
A cursor variable that will fetch the set of records.


f_query_one

FUNCTION f_query_one(p_pidm           sorconc.sorconc_pidm%TYPE,
                     p_sbgi_code      sorconc.sorconc_sbgi_code%TYPE,
                     p_degc_code      sorconc.sorconc_degc_code%TYPE,
                     p_degr_seq_no    sorconc.sorconc_degr_seq_no%TYPE,
                     p_majr_code_conc sorconc.sorconc_majr_code_conc%TYPE)
  RETURN pcol_concentration_ref

Selects one record using key.

Parameters
p_pidm   Internal identification number. NUMBER(8) Required Key
p_sbgi_code   Prior college code.  The SBGI code must be previously defined on the source/background institution code validation table. VARCHAR2(6) Required Key
p_degc_code   Prior college degree code.  The degree code must be previously defined on the degree code validation table. VARCHAR2(6) Key
p_degr_seq_no   Prior college degree sequence number. NUMBER(2) Required Key
p_majr_code_conc   Concentration area code.  The concentration code must be previously defined as a concentration on the Major, Minor, Concentration validation table. VARCHAR2(4) Required Key

Returns
A cursor variable that will fetch exactly one record.


f_query_by_rowid

FUNCTION f_query_by_rowid(p_rowid gb_common.internal_record_id_type)
  RETURN pcol_concentration_ref

Selects one record using ROWID.

Parameters
p_rowid   Database ROWID of the record to be selected. VARCHAR2(18) Required

Returns
A cursor variable that will fetch exactly one record.


f_query_one_lock

FUNCTION f_query_one_lock(p_pidm           sorconc.sorconc_pidm%TYPE,
                          p_sbgi_code      sorconc.sorconc_sbgi_code%TYPE,
                          p_degc_code      sorconc.sorconc_degc_code%TYPE,
                          p_degr_seq_no    sorconc.sorconc_degr_seq_no%TYPE,
                          p_majr_code_conc sorconc.sorconc_majr_code_conc%TYPE,
                          p_rowid          gb_common.internal_record_id_type DEFAULT NULL)
  RETURN pcol_concentration_ref

Selects one record and locks it.

Parameters
p_pidm   Internal identification number. NUMBER(8) Required Key
p_sbgi_code   Prior college code.  The SBGI code must be previously defined on the source/background institution code validation table. VARCHAR2(6) Required Key
p_degc_code   Prior college degree code.  The degree code must be previously defined on the degree code validation table. VARCHAR2(6) Key
p_degr_seq_no   Prior college degree sequence number. NUMBER(2) Required Key
p_majr_code_conc   Concentration area code.  The concentration code must be previously defined as a concentration on the Major, Minor, Concentration validation table. VARCHAR2(4) Required Key
p_rowid   Database ROWID of the record to be selected. VARCHAR2(18)

Returns
A cursor variable for one record, locking the record.


p_create

PROCEDURE p_create(p_pidm           sorconc.sorconc_pidm%TYPE,
                   p_sbgi_code      sorconc.sorconc_sbgi_code%TYPE,
                   p_degc_code      sorconc.sorconc_degc_code%TYPE,
                   p_degr_seq_no    sorconc.sorconc_degr_seq_no%TYPE,
                   p_majr_code_conc sorconc.sorconc_majr_code_conc%TYPE,
                   p_data_origin    sorconc.sorconc_data_origin%TYPE DEFAULT NULL,
                   p_user_id        sorconc.sorconc_user_id%TYPE DEFAULT gb_common.f_sct_user,
                   p_rowid_out      OUT gb_common.internal_record_id_type)

Creates a record.

Parameters
p_pidm   Internal identification number. NUMBER(8) Required Key
p_sbgi_code   Prior college code.  The SBGI code must be previously defined on the source/background institution code validation table. VARCHAR2(6) Required Key
p_degc_code   Prior college degree code.  The degree code must be previously defined on the degree code validation table. VARCHAR2(6) Key
p_degr_seq_no   Prior college degree sequence number. NUMBER(2) Required Key
p_majr_code_conc   Concentration area code.  The concentration code must be previously defined as a concentration on the Major, Minor, Concentration validation table. VARCHAR2(4) Required Key
p_data_origin   Source system that created or updated the row. VARCHAR2(30)
p_user_id   The Oracle user ID of the user who changed the record. VARCHAR2(30)
p_rowid_out   Database ROWID of the record to be created. VARCHAR2(18) Required


p_copy_all

PROCEDURE p_copy_all(p_pidm            sorconc.sorconc_pidm%TYPE,
                     p_sbgi_code       sorconc.sorconc_sbgi_code%TYPE,
                     p_degc_code       sorconc.sorconc_degc_code%TYPE,
                     p_degc_code_new   sorconc.sorconc_degc_code%TYPE,
                     p_degr_seq_no     sorconc.sorconc_degr_seq_no%TYPE,
                     p_degr_seq_no_new sorconc.sorconc_degr_seq_no%TYPE)

Copies all child concentration records to a new degree code and degree sequence number, currently called from forms when a user is calling the duplicate record functionality for a new degree record.

Parameters
p_pidm   Internal identification number. NUMBER(8) Required Key
p_sbgi_code   Prior college code.  The SBGI code must be previously defined on the source/background institution code validation table. VARCHAR2(6) Required Key
p_degc_code   Prior college degree code.  The degree code must be previously defined on the degree code validation table. VARCHAR2(6) Key
p_degc_code_new   Prior college new degree code.  The degree code must be previously defined on the degree code validation table. VARCHAR2(6)
p_degr_seq_no   Prior college degree sequence number. NUMBER(2) Required Key
p_degr_seq_no_new   Prior college new degree sequence number. NUMBER(2)


p_delete

PROCEDURE p_delete(p_pidm           sorconc.sorconc_pidm%TYPE,
                   p_sbgi_code      sorconc.sorconc_sbgi_code%TYPE,
                   p_degc_code      sorconc.sorconc_degc_code%TYPE,
                   p_degr_seq_no    sorconc.sorconc_degr_seq_no%TYPE,
                   p_majr_code_conc sorconc.sorconc_majr_code_conc%TYPE,
                   p_rowid          gb_common.internal_record_id_type DEFAULT NULL)

Deletes a record.

Parameters
p_pidm   Internal identification number. NUMBER(8) Required Key
p_sbgi_code   Prior college code.  The SBGI code must be previously defined on the source/background institution code validation table. VARCHAR2(6) Required Key
p_degc_code   Prior college degree code.  The degree code must be previously defined on the degree code validation table. VARCHAR2(6) Key
p_degr_seq_no   Prior college degree sequence number. NUMBER(2) Required Key
p_majr_code_conc   Concentration area code.  The concentration code must be previously defined as a concentration on the Major, Minor, Concentration validation table. VARCHAR2(4) Required Key
p_rowid   Database ROWID of the record to be deleted. VARCHAR2(18)


p_lock

PROCEDURE p_lock(p_pidm           sorconc.sorconc_pidm%TYPE,
                 p_sbgi_code      sorconc.sorconc_sbgi_code%TYPE,
                 p_degc_code      sorconc.sorconc_degc_code%TYPE,
                 p_degr_seq_no    sorconc.sorconc_degr_seq_no%TYPE,
                 p_majr_code_conc sorconc.sorconc_majr_code_conc%TYPE,
                 p_rowid_inout    IN OUT gb_common.internal_record_id_type)

Locks a record.
If ROWID is not passed in, the record is located using the key values and the ROWID of the locked row is passed in p_rowid_inout

Parameters
p_pidm   Internal identification number. NUMBER(8) Required Key
p_sbgi_code   Prior college code.  The SBGI code must be previously defined on the source/background institution code validation table. VARCHAR2(6) Required Key
p_degc_code   Prior college degree code.  The degree code must be previously defined on the degree code validation table. VARCHAR2(6) Key
p_degr_seq_no   Prior college degree sequence number. NUMBER(2) Required Key
p_majr_code_conc   Concentration area code.  The concentration code must be previously defined as a concentration on the Major, Minor, Concentration validation table. VARCHAR2(4) Required Key
p_rowid_inout   Database ROWID of the record to be locked. VARCHAR2(18) Required


p_update

PROCEDURE p_update(p_pidm           sorconc.sorconc_pidm%TYPE,
                   p_sbgi_code      sorconc.sorconc_sbgi_code%TYPE,
                   p_degc_code      sorconc.sorconc_degc_code%TYPE,
                   p_degr_seq_no    sorconc.sorconc_degr_seq_no%TYPE,
                   p_majr_code_conc sorconc.sorconc_majr_code_conc%TYPE,
                   p_data_origin    sorconc.sorconc_data_origin%TYPE DEFAULT dml_common.f_unspecified_string,
                   p_user_id        sorconc.sorconc_user_id%TYPE DEFAULT gb_common.f_sct_user,
                   p_rowid          gb_common.internal_record_id_type DEFAULT NULL)

Updates a record.
The prior college concentration entity (SORCONC) has a unique key index whose value cannot be updated so the p_update procedure is not supported.
Use p_delete and p_create instead.