DBA Data[Home] [Help]

APPS.HXC_TIMECARD_DEPOSIT_COMMON dependencies on HXC_ATTRIBUTE_TABLE_TYPE

Line 12: ,p_attributes in out nocopy HXC_ATTRIBUTE_TABLE_TYPE

8: This procedure....
9: ***************************************************************************/
10: Procedure alias_translation
11: (p_blocks in out nocopy HXC_BLOCK_TABLE_TYPE
12: ,p_attributes in out nocopy HXC_ATTRIBUTE_TABLE_TYPE
13: ,p_messages in out nocopy HXC_MESSAGE_TABLE_TYPE
14: ) is
15:
16: l_old_style_attr HXC_SELF_SERVICE_TIME_DEPOSIT.building_block_attribute_info;

Line 40: ,p_attributes in out nocopy hxc_attribute_table_type

36: /*
37: Procedure validate_setup
38: (p_deposit_mode in varchar2
39: ,p_blocks in out nocopy hxc_block_table_type
40: ,p_attributes in out nocopy hxc_attribute_table_type
41: ,p_messages in out nocopy hxc_message_table_type
42: ) is
43:
44: cursor c_deposit_process is

Line 151: return hxc_attribute_table_type is

147: This procedure....
148: ***************************************************************************/
149: Function load_attributes
150: (p_blocks in out nocopy hxc_block_table_type)
151: return hxc_attribute_table_type is
152:
153: cursor c_attributes
154: (p_building_block_id in hxc_time_building_blocks.time_building_block_id%type
155: ,p_building_block_ovn in hxc_time_building_blocks.object_version_number%type

Line 162: l_attributes hxc_attribute_table_type := hxc_attribute_table_type();

158: from hxc_time_attribute_usages tau
159: where tau.time_building_block_id = p_building_block_id
160: and tau.time_building_block_ovn = p_building_block_ovn;
161:
162: l_attributes hxc_attribute_table_type := hxc_attribute_table_type();
163:
164: l_block_index number;
165: l_attribute_index number := 1;
166:

Line 208: l_attributes hxc_attribute_table_type := hxc_attribute_table_type();

204: where tbb.time_building_block_id = p_timecard_id
205: and tbb.date_to = hr_general.end_of_time;
206:
207: l_blocks hxc_block_table_type := hxc_block_table_type();
208: l_attributes hxc_attribute_table_type := hxc_attribute_table_type();
209: l_messages hxc_message_table_type := hxc_message_table_type();
210:
211: l_timecard_blocks hxc_timecard.block_list;
212: l_day_blocks hxc_timecard.block_list;