DBA Data[Home] [Help]

APPS.HR_WORKFLOW_SERVICE dependencies on WF_ITEM_ATTRIBUTE_VALUES

Line 76: ,p_date_value out nocopy wf_item_attribute_values.date_value%type

72: ,p_exists out nocopy boolean
73: ,p_subtype out nocopy wf_item_attributes.subtype%type
74: ,p_type out nocopy wf_item_attributes.type%type
75: ,p_format out nocopy wf_item_attributes.format%type
76: ,p_date_value out nocopy wf_item_attribute_values.date_value%type
77: ,p_number_value out nocopy wf_item_attribute_values.number_value%type
78: ,p_text_value out nocopy wf_item_attribute_values.text_value%type);
79: -- ----------------------------------------------------------------------------
80: -- |-------------------------< get_act_attr_expanded_info >------------------|

Line 77: ,p_number_value out nocopy wf_item_attribute_values.number_value%type

73: ,p_subtype out nocopy wf_item_attributes.subtype%type
74: ,p_type out nocopy wf_item_attributes.type%type
75: ,p_format out nocopy wf_item_attributes.format%type
76: ,p_date_value out nocopy wf_item_attribute_values.date_value%type
77: ,p_number_value out nocopy wf_item_attribute_values.number_value%type
78: ,p_text_value out nocopy wf_item_attribute_values.text_value%type);
79: -- ----------------------------------------------------------------------------
80: -- |-------------------------< get_act_attr_expanded_info >------------------|
81: -- ----------------------------------------------------------------------------

Line 78: ,p_text_value out nocopy wf_item_attribute_values.text_value%type);

74: ,p_type out nocopy wf_item_attributes.type%type
75: ,p_format out nocopy wf_item_attributes.format%type
76: ,p_date_value out nocopy wf_item_attribute_values.date_value%type
77: ,p_number_value out nocopy wf_item_attribute_values.number_value%type
78: ,p_text_value out nocopy wf_item_attribute_values.text_value%type);
79: -- ----------------------------------------------------------------------------
80: -- |-------------------------< get_act_attr_expanded_info >------------------|
81: -- ----------------------------------------------------------------------------
82: procedure get_act_attr_expanded_info

Line 258: ,p_transaction_age in wf_item_attribute_values.number_value%type

254: */
255:
256: procedure start_cleanup_process(
257: p_item_type in wf_items.item_type%type
258: ,p_transaction_age in wf_item_attribute_values.number_value%type
259: ,p_process_name in wf_process_activities.process_name%type default 'HR_BACKGROUND_CLEANUP_PRC',
260: p_transaction_status in varchar2 default 'ALL'
261: ) ;
262: --

Line 308: ,p_name in wf_item_attribute_values.name%type)

304:
305: function item_attribute_exists
306: (p_item_type in wf_items.item_type%type
307: ,p_item_key in wf_items.item_key%type
308: ,p_name in wf_item_attribute_values.name%type)
309: return boolean;
310:
311: END hr_workflow_service;