Package gb_sde_table
Common Business interface for the SDE_TABLE API (gb_sde_table).
|
M_ENTITY_NAME
M_ENTITY_NAME CONSTANT VARCHAR2(9) := 'SDE_TABLE';
Business Entity Name
M_BASE_TABLE_NAME
M_BASE_TABLE_NAME CONSTANT VARCHAR2(7) := 'GOBSDTB';
Base table name
sde_table_rec
TYPE sde_table_rec IS RECORD (
r_table_name gobsdtb.gobsdtb_table_name%TYPE,
r_owner gobsdtb.gobsdtb_owner%TYPE,
r_user_id gobsdtb.gobsdtb_user_id%TYPE,
r_pk_dynsql gobsdtb.gobsdtb_pk_dynsql%TYPE,
r_data_origin gobsdtb.gobsdtb_data_origin%TYPE,
r_internal_record_id gb_common.internal_record_id_type);
Business Entity record type
sde_table_ref
TYPE sde_table_ref IS REF CURSOR RETURN sde_table_rec;
Entity cursor variable type
sde_table_tab
TYPE sde_table_tab IS TABLE OF sde_table_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_table_name gobsdtb.gobsdtb_table_name%TYPE,
p_rowid gb_common.internal_record_id_type DEFAULT NULL)
RETURN VARCHAR2
Checks if a record exists.
|
p_table_name
|
Banner Table Name. VARCHAR2(90) Required Key
|
|
p_rowid
|
Database ROWID of the record to be selected. VARCHAR2(18)
|
f_isequal
FUNCTION f_isequal(rec_one sde_table_rec,
rec_two sde_table_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 sde_table_rec Required
|
|
rec_two
|
The second record to compare. Type sde_table_rec Required
|
|
Y if all values in records are equal, otherwise N. Nulls match Nulls.
|
f_query_all
FUNCTION f_query_all(p_table_name gobsdtb.gobsdtb_table_name%TYPE)
RETURN sde_table_ref
Selects all records for the entity.
|
p_table_name
|
Banner Table Name. VARCHAR2(90) Required Key
|
|
A cursor variable that will fetch a set of records.
|
f_query_one
FUNCTION f_query_one(p_table_name gobsdtb.gobsdtb_table_name%TYPE)
RETURN sde_table_ref
Selects one record using key.
|
p_table_name
|
Banner Table Name. VARCHAR2(90) 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 sde_table_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_table_name gobsdtb.gobsdtb_table_name%TYPE,
p_rowid gb_common.internal_record_id_type DEFAULT NULL)
RETURN sde_table_ref
Selects one record and locks it.
|
p_table_name
|
Banner Table Name. VARCHAR2(90) 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_table_name gobsdtb.gobsdtb_table_name%TYPE,
p_owner gobsdtb.gobsdtb_owner%TYPE,
p_user_id gobsdtb.gobsdtb_user_id%TYPE DEFAULT gb_common.f_sct_user,
p_pk_dynsql gobsdtb.gobsdtb_pk_dynsql%TYPE DEFAULT NULL,
p_data_origin gobsdtb.gobsdtb_data_origin%TYPE DEFAULT NULL,
/* 80-2 p_create_source gobsdtb.gobsdtb_create_source%TYPE DEFAULT NULL, */
p_rowid_out OUT gb_common.internal_record_id_type)
Creates a record.
|
p_table_name
|
Banner Table Name. VARCHAR2(90) Required Key
|
|
p_owner
|
Banner Table Owner. VARCHAR2(90) Required
|
|
p_user_id
|
The unique identification of the user. VARCHAR2(90) Required
|
|
p_pk_dynsql
|
SQL to generate the record ID from ROWID in Banner Table Name. VARCHAR2(4000)
|
|
p_data_origin
|
Source system that created or updated the row. VARCHAR2(90)
|
|
p_rowid_out
|
Database ROWID of the record to be created. VARCHAR2(18) Required
|
p_delete
PROCEDURE p_delete(p_table_name gobsdtb.gobsdtb_table_name%TYPE,
p_rowid gb_common.internal_record_id_type DEFAULT NULL)
Deletes a record.
|
p_table_name
|
Banner Table Name. VARCHAR2(90) Required Key
|
|
p_rowid
|
Database ROWID of the record to be deleted. VARCHAR2(18)
|
p_lock
PROCEDURE p_lock(p_table_name gobsdtb.gobsdtb_table_name%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
|
p_table_name
|
Banner Table Name. VARCHAR2(90) Required Key
|
|
p_rowid_inout
|
Database ROWID of the record to be locked. VARCHAR2(18) Required
|
p_update
PROCEDURE p_update(p_table_name gobsdtb.gobsdtb_table_name%TYPE,
p_owner gobsdtb.gobsdtb_owner%TYPE DEFAULT dml_common.f_unspecified_string,
p_user_id gobsdtb.gobsdtb_user_id%TYPE DEFAULT gb_common.f_sct_user,
p_pk_dynsql gobsdtb.gobsdtb_pk_dynsql%TYPE DEFAULT dml_common.f_unspecified_string,
p_data_origin gobsdtb.gobsdtb_data_origin%TYPE DEFAULT dml_common.f_unspecified_string,
/* 80-2 p_create_source gobsdtb.gobsdtb_create_source%TYPE DEFAULT dml_common.f_unspecified_string, */
p_rowid gb_common.internal_record_id_type DEFAULT NULL)
Updates a record.
|
p_table_name
|
Banner Table Name. VARCHAR2(90) Required Key
|
|
p_owner
|
Banner Table Owner. VARCHAR2(90) Required
|
|
p_user_id
|
The unique identification of the user. VARCHAR2(90) Required
|
|
p_pk_dynsql
|
SQL to generate the record ID from ROWID in Banner Table Name. VARCHAR2(4000)
|
|
p_data_origin
|
Source system that created or updated the row. VARCHAR2(90)
|
|
p_rowid
|
Database ROWID of the record to be updated. VARCHAR2(18)
|