Package gp_gprauth
Common Business interface for the GPRAUTH API (gp_gprauth).
|
M_ENTITY_NAME
M_ENTITY_NAME CONSTANT VARCHAR2(7) := 'GPRAUTH';
Business Entity Name
M_BASE_TABLE_NAME
M_BASE_TABLE_NAME CONSTANT VARCHAR2(7) := 'GPRAUTH';
Base table name
gprauth_rec
TYPE gprauth_rec IS RECORD (
r_proxy_idm gprauth.gprauth_proxy_idm%TYPE,
r_person_pidm gprauth.gprauth_person_pidm%TYPE,
r_page_name gprauth.gprauth_page_name%TYPE,
r_auth_ind gprauth.gprauth_auth_ind%TYPE,
r_create_user gprauth.gprauth_create_user%TYPE,
r_create_date gprauth.gprauth_create_date%TYPE,
r_user_id gprauth.gprauth_user_id%TYPE,
r_internal_record_id gb_common.internal_record_id_type);
Business Entity record type
gprauth_ref
TYPE gprauth_ref IS REF CURSOR RETURN gprauth_rec;
Entity cursor variable type
gprauth_tab
TYPE gprauth_tab IS TABLE OF gprauth_rec INDEX BY BINARY_INTEGER;
Entity table type
f_api_version
FUNCTION f_api_version RETURN PLS_INTEGER
Returns the API version number.
|
Version of the API signature. Changes only when the signature changes.
|
f_exists
FUNCTION f_exists(p_proxy_idm gprauth.gprauth_proxy_idm%TYPE,
p_person_pidm gprauth.gprauth_person_pidm%TYPE,
p_page_name gprauth.gprauth_page_name%TYPE,
p_rowid gb_common.internal_record_id_type DEFAULT NULL)
RETURN VARCHAR2
Checks if a record exists.
|
p_proxy_idm
|
See GPBPRXY. There is one GPRAUTH record per proxy/person/page combination. NUMBER(8) Required Key
|
|
p_person_pidm
|
General Person PIDM of person who has inserted or updated this proxy authorization record. NUMBER(8) Required Key
|
|
p_page_name
|
This is the Banner Self-Service page name in package.procedure format. VARCHAR2(120) Required Key
|
|
p_rowid
|
Database ROWID of the record to be selected. VARCHAR2(18)
|
f_isequal
FUNCTION f_isequal(rec_one gprauth_rec,
rec_two gprauth_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.
|
rec_one
|
The first record to compare. Type gprauth_rec Required
|
|
rec_two
|
The second record to compare. Type gprauth_rec Required
|
|
Y if all values in records are equal, otherwise N. Nulls match Nulls.
|
f_query_all
FUNCTION f_query_all(p_proxy_idm gprauth.gprauth_proxy_idm%TYPE,
p_person_pidm gprauth.gprauth_person_pidm%TYPE,
p_page_name gprauth.gprauth_page_name%TYPE)
RETURN gprauth_ref
Selects all records for the entity.
|
p_proxy_idm
|
See GPBPRXY. There is one GPRAUTH record per proxy/person/page combination. NUMBER(8) Required Key
|
|
p_person_pidm
|
General Person PIDM of person who has inserted or updated this proxy authorization record. NUMBER(8) Required Key
|
|
p_page_name
|
This is the Banner Self-Service page name in package.procedure format. VARCHAR2(120) Required Key
|
|
A cursor variable that will fetch a set of records.
|
f_query_one
FUNCTION f_query_one(p_proxy_idm gprauth.gprauth_proxy_idm%TYPE,
p_person_pidm gprauth.gprauth_person_pidm%TYPE,
p_page_name gprauth.gprauth_page_name%TYPE)
RETURN gprauth_ref
Selects one record using key.
|
p_proxy_idm
|
See GPBPRXY. There is one GPRAUTH record per proxy/person/page combination. NUMBER(8) Required Key
|
|
p_person_pidm
|
General Person PIDM of person who has inserted or updated this proxy authorization record. NUMBER(8) Required Key
|
|
p_page_name
|
This is the Banner Self-Service page name in package.procedure format. VARCHAR2(120) Required Key
|
|
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 gprauth_ref
Selects one record using ROWID.
|
p_rowid
|
Database ROWID of the record to be selected. VARCHAR2(18) Required
|
|
A cursor variable that will fetch exactly one record.
|
f_query_one_lock
FUNCTION f_query_one_lock(p_proxy_idm gprauth.gprauth_proxy_idm%TYPE,
p_person_pidm gprauth.gprauth_person_pidm%TYPE,
p_page_name gprauth.gprauth_page_name%TYPE,
p_rowid gb_common.internal_record_id_type DEFAULT NULL)
RETURN gprauth_ref
Selects one record and locks it.
|
p_proxy_idm
|
See GPBPRXY. There is one GPRAUTH record per proxy/person/page combination. NUMBER(8) Required Key
|
|
p_person_pidm
|
General Person PIDM of person who has inserted or updated this proxy authorization record. NUMBER(8) Required Key
|
|
p_page_name
|
This is the Banner Self-Service page name in package.procedure format. VARCHAR2(120) Required Key
|
|
p_rowid
|
Database ROWID of the record to be selected. VARCHAR2(18)
|
|
A cursor variable for one record, locking the record.
|
p_create
PROCEDURE p_create(p_proxy_idm gprauth.gprauth_proxy_idm%TYPE,
p_person_pidm gprauth.gprauth_person_pidm%TYPE,
p_page_name gprauth.gprauth_page_name%TYPE,
p_auth_ind gprauth.gprauth_auth_ind%TYPE,
p_create_user gprauth.gprauth_create_user%TYPE DEFAULT gb_common.f_sct_user,
p_create_date gprauth.gprauth_create_date%TYPE DEFAULT NULL,
p_user_id gprauth.gprauth_user_id%TYPE DEFAULT gb_common.f_sct_user,
p_rowid_out OUT gb_common.internal_record_id_type)
Creates a record.
|
p_proxy_idm
|
See GPBPRXY. There is one GPRAUTH record per proxy/person/page combination. NUMBER(8) Required Key
|
|
p_person_pidm
|
General Person PIDM of person who has inserted or updated this proxy authorization record. NUMBER(8) Required Key
|
|
p_page_name
|
This is the Banner Self-Service page name in package.procedure format. VARCHAR2(120) Required Key
|
|
p_auth_ind
|
The value "Y" means the person has authorized the proxy to see the page on their behalf. Default value is "N". VARCHAR2(1) Required
|
|
p_create_user
|
Username responsible for initial creation. VARCHAR2(30)
|
|
p_create_date
|
Date when the record was initially created. DATE
|
|
p_user_id
|
The ID for the user that most recently updated the record. VARCHAR2(30)
|
|
p_rowid_out
|
Database ROWID of the record to be created. VARCHAR2(18) Required
|
p_delete
PROCEDURE p_delete(p_proxy_idm gprauth.gprauth_proxy_idm%TYPE,
p_person_pidm gprauth.gprauth_person_pidm%TYPE,
p_page_name gprauth.gprauth_page_name%TYPE,
p_rowid gb_common.internal_record_id_type DEFAULT NULL)
Deletes a record.
|
p_proxy_idm
|
See GPBPRXY. There is one GPRAUTH record per proxy/person/page combination. NUMBER(8) Required Key
|
|
p_person_pidm
|
General Person PIDM of person who has inserted or updated this proxy authorization record. NUMBER(8) Required Key
|
|
p_page_name
|
This is the Banner Self-Service page name in package.procedure format. VARCHAR2(120) Required Key
|
|
p_rowid
|
Database ROWID of the record to be deleted. VARCHAR2(18)
|
p_lock
PROCEDURE p_lock(p_proxy_idm gprauth.gprauth_proxy_idm%TYPE,
p_person_pidm gprauth.gprauth_person_pidm%TYPE,
p_page_name gprauth.gprauth_page_name%TYPE,
p_rowid_inout IN OUT NOCOPY 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
|
p_proxy_idm
|
See GPBPRXY. There is one GPRAUTH record per proxy/person/page combination. NUMBER(8) Required Key
|
|
p_person_pidm
|
General Person PIDM of person who has inserted or updated this proxy authorization record. NUMBER(8) Required Key
|
|
p_page_name
|
This is the Banner Self-Service page name in package.procedure format. VARCHAR2(120) Required Key
|
|
p_rowid_inout
|
Database ROWID of the record to be locked. VARCHAR2(18) Required
|
p_update
PROCEDURE p_update(p_proxy_idm gprauth.gprauth_proxy_idm%TYPE,
p_person_pidm gprauth.gprauth_person_pidm%TYPE,
p_page_name gprauth.gprauth_page_name%TYPE,
p_auth_ind gprauth.gprauth_auth_ind%TYPE DEFAULT dml_common.f_unspecified_string,
p_create_user gprauth.gprauth_create_user%TYPE DEFAULT dml_common.f_unspecified_string,
p_create_date gprauth.gprauth_create_date%TYPE DEFAULT dml_common.f_unspecified_date,
p_user_id gprauth.gprauth_user_id%TYPE DEFAULT gb_common.f_sct_user,
p_rowid gb_common.internal_record_id_type DEFAULT NULL)
Updates a record.
|
p_proxy_idm
|
See GPBPRXY. There is one GPRAUTH record per proxy/person/page combination. NUMBER(8) Required Key
|
|
p_person_pidm
|
General Person PIDM of person who has inserted or updated this proxy authorization record. NUMBER(8) Required Key
|
|
p_page_name
|
This is the Banner Self-Service page name in package.procedure format. VARCHAR2(120) Required Key
|
|
p_auth_ind
|
The value "Y" means the person has authorized the proxy to see the page on their behalf. Default value is "N". VARCHAR2(1) Required
|
|
p_create_user
|
Username responsible for initial creation. VARCHAR2(30)
|
|
p_create_date
|
Date when the record was initially created. DATE
|
|
p_user_id
|
The ID for the user that most recently updated the record. VARCHAR2(30)
|
|
p_rowid
|
Database ROWID of the record to be updated. VARCHAR2(18)
|