DBA Data[Home] [Help]

PACKAGE: APPS.HXC_CREATE_FLEX_MAPPINGS

Source


1 PACKAGE hxc_create_flex_mappings AUTHID CURRENT_USER AS
2 /* $Header: hxcflxdn.pkh 120.1.12020000.1 2012/06/28 05:12:40 appldev ship $ */
3 
4 /* Added for 8645021 HR OTL ABSENCE INTEGRATION
5 */
6 --change start
7 Type hxc_abs_rec is record (
8  			ABSENCE_ATTENDANCE_TYPE_ID  	number(9),
9  		  	ELEMENT_TYPE_ID  		number(9),
10                         EDIT_FLAG   			VARCHAR2(1),
11      			UOM    				VARCHAR2(10),
12      			ABSENCE_CATEGORY		VARCHAR2(30)
13      			 );
14 
15 Type hxc_abs_tab_type is  table of hxc_abs_rec
16 		index by binary_integer;
17 
18 Type abs_elem_exists_type is  table of NUMBER
19     index by BINARY_INTEGER;
20 
21 
22  g_abs_incl_flag VARCHAR2(1):= 'N';
23 --change end
24 
25 procedure run_process(
26            p_errmsg OUT NOCOPY VARCHAR2
27           ,p_errcode OUT NOCOPY NUMBER
28           ,p_undo in VARCHAR2 default 'N'
29           ,p_element_set_id in NUMBER default null
30           ,p_effective_date in VARCHAR2
31           ,p_generate_cost in VARCHAR2 default 'Y'
32           ,p_generate_group in VARCHAR2 default 'Y'
33           ,p_generate_job in VARCHAR2 default 'Y'
34           ,p_generate_pos in VARCHAR2 default 'Y'
35           ,p_generate_prj in VARCHAR2 default 'Y'
36           ,p_business_group_id in VARCHAR2
37           ,p_incl_abs_flg  in  VARCHAR2 default 'N'); -- Added for 8645021 HR OTL ABSENCE INTEGRATION
38 
39 END hxc_create_flex_mappings;