DBA Data[Home] [Help]

APPS.PQH_PRVCALC dependencies on PQH_TEMPLATE_ATTRIBUTES

Line 4: type t_task_templ is table of pqh_template_attributes.template_id%type

1: Package pqh_prvcalc AUTHID CURRENT_USER as
2: /* $Header: pqprvcal.pkh 115.13 2002/12/03 20:42:30 rpasapul ship $ */
3:
4: type t_task_templ is table of pqh_template_attributes.template_id%type
5: index by binary_integer ;
6:
7: type t_attid_priv_typ is record (
8: Attribute_id pqh_attributes.attribute_id%type,

Line 36: procedure domain_result_calc (p_domain in pqh_template_attributes.template_id%type,

32: -- |------------------------< domain_result_calc >------------------------|
33: -- ----------------------------------------------------------------------------
34: --
35:
36: procedure domain_result_calc (p_domain in pqh_template_attributes.template_id%type,
37: p_result out nocopy t_attid_priv);
38:
39: --
40: -- ----------------------------------------------------------------------------

Line 45: procedure task_references(p_task in pqh_template_attributes.template_id%type,

41: -- |------------------------< task_references >------------------------|
42: -- ----------------------------------------------------------------------------
43: --
44:
45: procedure task_references(p_task in pqh_template_attributes.template_id%type,
46: p_result_int in out nocopy t_attid_priv);
47:
48: --
49: -- ----------------------------------------------------------------------------

Line 54: procedure task_result_update(p_task in pqh_template_attributes.template_id%type,

50: -- |------------------------< task_result_update >------------------------|
51: -- ----------------------------------------------------------------------------
52: --
53:
54: procedure task_result_update(p_task in pqh_template_attributes.template_id%type,
55: p_task_type in varchar2,
56: p_result_int in out nocopy t_attid_priv);
57:
58: --

Line 94: procedure priviledge_calc (p_domain in pqh_template_attributes.template_id%type,

90: -- |------------------------< priviledge_calc >------------------------|
91: -- ----------------------------------------------------------------------------
92: --
93:
94: procedure priviledge_calc (p_domain in pqh_template_attributes.template_id%type,
95: p_tasks in t_task_templ,
96: p_transaction_category_id in number,
97: p_result out nocopy t_attname_priv );
98:

Line 135: procedure priviledge_calc_count (p_domain in pqh_template_attributes.template_id%type,

131: -- |------------------------< priviledge_calc_count >------------------------|
132: -- ----------------------------------------------------------------------------
133: --
134:
135: procedure priviledge_calc_count (p_domain in pqh_template_attributes.template_id%type,
136: p_tasks in t_task_templ,
137: p_transaction_category_id in number,
138: p_result_count out nocopy number ) ;
139: