Package gb_streams_rules
Common Business interface for the STREAMS_RULES API (gb_streams_rules ).
|
M_ENTITY_NAME
M_ENTITY_NAME CONSTANT VARCHAR2(14) := 'STREAMS_RULES ';
Business Entity Name
M_BASE_TABLE_NAME
M_BASE_TABLE_NAME CONSTANT VARCHAR2(7) := 'GORCRUL';
Base table name
streams_rules_rec
TYPE streams_rules_rec IS RECORD (
r_ctab_seq_no gorcrul.gorcrul_ctab_seq_no%TYPE,
r_column_name gorcrul.gorcrul_column_name%TYPE,
r_column_rule gorcrul.gorcrul_column_rule%TYPE,
r_user_id gorcrul.gorcrul_user_id%TYPE,
r_data_origin gorcrul.gorcrul_data_origin%TYPE,
r_internal_record_id gb_common.internal_record_id_type);
Business Entity record type
streams_rules_ref
TYPE streams_rules_ref IS REF CURSOR RETURN streams_rules_rec;
Entity cursor variable type
streams_rules_tab
TYPE streams_rules_tab IS TABLE OF streams_rules_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_ctab_seq_no gorcrul.gorcrul_ctab_seq_no%TYPE,
p_column_name gorcrul.gorcrul_column_name%TYPE,
p_column_rule gorcrul.gorcrul_column_rule%TYPE,
p_rowid gb_common.internal_record_id_type DEFAULT NULL)
RETURN VARCHAR2
Checks if a record exists.
|
p_ctab_seq_no
|
References GORCTAB_SEQ_NO in GORCTAB. Repeats itself for every row in GORCTAB. NUMBER(,) Required Key
|
|
p_column_name
|
Column name of a table that is part of the where clause. VARCHAR2(30) Required Key
|
|
p_column_rule
|
Where clause for this column. VARCHAR2(200) Required Key
|
|
p_rowid
|
Database ROWID of the record to be selected. VARCHAR2(18)
|
f_isequal
FUNCTION f_isequal(rec_one streams_rules_rec,
rec_two streams_rules_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.
|
Y if all values in records are equal, otherwise N. Nulls match Nulls.
|
f_query_all
FUNCTION f_query_all(p_ctab_seq_no gorcrul.gorcrul_ctab_seq_no%TYPE,
p_column_name gorcrul.gorcrul_column_name%TYPE,
p_column_rule gorcrul.gorcrul_column_rule%TYPE)
RETURN streams_rules_ref
Selects all records for the entity.
|
p_ctab_seq_no
|
References GORCTAB_SEQ_NO in GORCTAB. Repeats itself for every row in GORCTAB. NUMBER(,) Required Key
|
|
p_column_name
|
Column name of a table that is part of the where clause. VARCHAR2(30) Required Key
|
|
p_column_rule
|
Where clause for this column. VARCHAR2(200) Required Key
|
|
A cursor variable that will fetch a set of records.
|
f_query_one
FUNCTION f_query_one(p_ctab_seq_no gorcrul.gorcrul_ctab_seq_no%TYPE,
p_column_name gorcrul.gorcrul_column_name%TYPE,
p_column_rule gorcrul.gorcrul_column_rule%TYPE)
RETURN streams_rules_ref
Selects one record using key.
|
p_ctab_seq_no
|
References GORCTAB_SEQ_NO in GORCTAB. Repeats itself for every row in GORCTAB. NUMBER(,) Required Key
|
|
p_column_name
|
Column name of a table that is part of the where clause. VARCHAR2(30) Required Key
|
|
p_column_rule
|
Where clause for this column. VARCHAR2(200) 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 streams_rules_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_ctab_seq_no gorcrul.gorcrul_ctab_seq_no%TYPE,
p_column_name gorcrul.gorcrul_column_name%TYPE,
p_column_rule gorcrul.gorcrul_column_rule%TYPE,
p_rowid gb_common.internal_record_id_type DEFAULT NULL)
RETURN streams_rules_ref
Selects one record and locks it.
|
p_ctab_seq_no
|
References GORCTAB_SEQ_NO in GORCTAB. Repeats itself for every row in GORCTAB. NUMBER(,) Required Key
|
|
p_column_name
|
Column name of a table that is part of the where clause. VARCHAR2(30) Required Key
|
|
p_column_rule
|
Where clause for this column. VARCHAR2(200) 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_ctab_seq_no gorcrul.gorcrul_ctab_seq_no%TYPE,
p_column_name gorcrul.gorcrul_column_name%TYPE,
p_column_rule gorcrul.gorcrul_column_rule%TYPE,
p_user_id gorcrul.gorcrul_user_id%TYPE DEFAULT gb_common.f_sct_user,
p_data_origin gorcrul.gorcrul_data_origin%TYPE DEFAULT NULL,
p_rowid_out OUT gb_common.internal_record_id_type)
Creates a record.
|
p_ctab_seq_no
|
References GORCTAB_SEQ_NO in GORCTAB. Repeats itself for every row in GORCTAB. NUMBER(,) Required Key
|
|
p_column_name
|
Column name of a table that is part of the where clause. VARCHAR2(30) Required Key
|
|
p_column_rule
|
Where clause for this column. VARCHAR2(200) Required Key
|
|
p_user_id
|
User ID of the user who created or last updated the row. VARCHAR2(30) Required
|
|
p_data_origin
|
Source system that created or updated the row. VARCHAR2(30)
|
|
p_rowid_out
|
Database ROWID of the record to be created. VARCHAR2(18) Required
|
p_delete
PROCEDURE p_delete(p_ctab_seq_no gorcrul.gorcrul_ctab_seq_no%TYPE,
p_column_name gorcrul.gorcrul_column_name%TYPE,
p_column_rule gorcrul.gorcrul_column_rule%TYPE,
p_rowid gb_common.internal_record_id_type DEFAULT NULL)
Deletes a record.
|
p_ctab_seq_no
|
References GORCTAB_SEQ_NO in GORCTAB. Repeats itself for every row in GORCTAB. NUMBER(,) Required Key
|
|
p_column_name
|
Column name of a table that is part of the where clause. VARCHAR2(30) Required Key
|
|
p_column_rule
|
Where clause for this column. VARCHAR2(200) Required Key
|
|
p_rowid
|
Database ROWID of the record to be deleted. VARCHAR2(18)
|
p_lock
PROCEDURE p_lock(p_ctab_seq_no gorcrul.gorcrul_ctab_seq_no%TYPE,
p_column_name gorcrul.gorcrul_column_name%TYPE,
p_column_rule gorcrul.gorcrul_column_rule%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_ctab_seq_no
|
References GORCTAB_SEQ_NO in GORCTAB. Repeats itself for every row in GORCTAB. NUMBER(,) Required Key
|
|
p_column_name
|
Column name of a table that is part of the where clause. VARCHAR2(30) Required Key
|
|
p_column_rule
|
Where clause for this column. VARCHAR2(200) Required Key
|
|
p_rowid_inout
|
Database ROWID of the record to be locked. VARCHAR2(18) Required
|
p_update
PROCEDURE p_update(p_ctab_seq_no gorcrul.gorcrul_ctab_seq_no%TYPE,
p_column_name gorcrul.gorcrul_column_name%TYPE,
p_column_rule gorcrul.gorcrul_column_rule%TYPE,
p_user_id gorcrul.gorcrul_user_id%TYPE DEFAULT gb_common.f_sct_user,
p_data_origin gorcrul.gorcrul_data_origin%TYPE DEFAULT dml_common.f_unspecified_string,
p_rowid gb_common.internal_record_id_type DEFAULT NULL)
Updates a record.
|
p_ctab_seq_no
|
References GORCTAB_SEQ_NO in GORCTAB. Repeats itself for every row in GORCTAB. NUMBER(,) Required Key
|
|
p_column_name
|
Column name of a table that is part of the where clause. VARCHAR2(30) Required Key
|
|
p_column_rule
|
Where clause for this column. VARCHAR2(200) Required Key
|
|
p_user_id
|
User ID of the user who created or last updated the row. VARCHAR2(30) Required
|
|
p_data_origin
|
Source system that created or updated the row. VARCHAR2(30)
|
|
p_rowid
|
Database ROWID of the record to be updated. VARCHAR2(18)
|