DBA Data[Home] [Help]

APPS.HXC_TIMECARD dependencies on HXC_ATTRIBUTE_TABLE_TYPE

Line 10: g_deposit_attributes hxc_attribute_table_type;

6: attribute_id_list attribute_list;
7:
8: g_package varchar2(12) := 'HXC_TIMECARD';
9: g_deposit_blocks hxc_block_table_type;
10: g_deposit_attributes hxc_attribute_table_type;
11: g_audit_messages hxc_message_table_type;
12:
13: Procedure alias_translation
14: (p_blocks in HXC_BLOCK_TABLE_TYPE

Line 15: ,p_attributes in out nocopy HXC_ATTRIBUTE_TABLE_TYPE

11: g_audit_messages hxc_message_table_type;
12:
13: Procedure alias_translation
14: (p_blocks in HXC_BLOCK_TABLE_TYPE
15: ,p_attributes in out nocopy HXC_ATTRIBUTE_TABLE_TYPE
16: ,p_messages in out nocopy HXC_MESSAGE_TABLE_TYPE
17: ) is
18:
19: l_old_style_attr HXC_SELF_SERVICE_TIME_DEPOSIT.building_block_attribute_info;

Line 37: ,p_attributes in out nocopy HXC_ATTRIBUTE_TABLE_TYPE

33: End alias_translation;
34:
35: Procedure save_timecard
36: (p_blocks in out nocopy HXC_BLOCK_TABLE_TYPE
37: ,p_attributes in out nocopy HXC_ATTRIBUTE_TABLE_TYPE
38: ,p_timecard_props in HXC_TIMECARD_PROP_TABLE_TYPE
39: ,p_messages in out nocopy HXC_MESSAGE_TABLE_TYPE
40: ,p_timecard_id out nocopy hxc_time_building_blocks.time_building_block_id%type
41: ,p_timecard_ovn out nocopy hxc_time_building_blocks.object_version_number%type

Line 243: ,p_attributes in HXC_ATTRIBUTE_TABLE_TYPE

239:
240: Procedure deposit_controller
241: (p_validate in varchar2
242: ,p_blocks in HXC_BLOCK_TABLE_TYPE
243: ,p_attributes in HXC_ATTRIBUTE_TABLE_TYPE
244: ,p_messages in out nocopy HXC_MESSAGE_TABLE_TYPE
245: ,p_deposit_mode in VARCHAR2
246: ,p_template in VARCHAR2
247: ,p_item_type in VARCHAR2

Line 257: l_attributes hxc_attribute_table_type;

253:
254: l_timecard_blocks hxc_timecard.block_list;
255: l_day_blocks hxc_timecard.block_list;
256: l_detail_blocks hxc_timecard.block_list;
257: l_attributes hxc_attribute_table_type;
258: l_blocks hxc_block_table_type;
259: l_transaction_info hxc_timecard.transaction_info;
260: l_timecard_props hxc_timecard_prop_table_type;
261: l_proc varchar2(33) := g_package||'.DEPOSIT_CONTROLLER';

Line 933: ,p_attributes in hxc_attribute_table_type

929:
930: Procedure create_timecard
931: (p_validate in varchar2
932: ,p_blocks in hxc_block_table_type
933: ,p_attributes in hxc_attribute_table_type
934: ,p_deposit_mode in varchar2
935: ,p_template in varchar2
936: ,p_item_type in wf_items.item_type%type
937: ,p_approval_prc in wf_process_activities.process_name%type

Line 1129: return hxc_attribute_table_type is

1125: End load_blocks;
1126:
1127: Function load_attributes
1128: (p_blocks in hxc_block_table_type)
1129: return hxc_attribute_table_type is
1130:
1131: cursor c_attributes
1132: (p_building_block_id in hxc_time_building_blocks.time_building_block_id%type
1133: ,p_building_block_ovn in hxc_time_building_blocks.object_version_number%type

Line 1176: l_attributes hxc_attribute_table_type := hxc_attribute_table_type();

1172: and tau.time_building_block_ovn = p_building_block_ovn
1173: and ta.time_attribute_id = tau.time_attribute_id
1174: and ta.bld_blk_info_type_id = bbit.bld_blk_info_type_id;
1175:
1176: l_attributes hxc_attribute_table_type := hxc_attribute_table_type();
1177:
1178: l_block_index number;
1179: l_attribute_index number := 1;
1180:

Line 1260: l_attributes hxc_attribute_table_type := hxc_attribute_table_type();

1256: where tbb.time_building_block_id = p_timecard_id
1257: and tbb.date_to = hr_general.end_of_time;
1258:
1259: l_blocks hxc_block_table_type := hxc_block_table_type();
1260: l_attributes hxc_attribute_table_type := hxc_attribute_table_type();
1261: l_messages hxc_message_table_type := hxc_message_table_type();
1262:
1263: l_timecard_blocks hxc_timecard.block_list;
1264: l_day_blocks hxc_timecard.block_list;