DBA Data[Home] [Help]

APPS.HXC_TIMECARD dependencies on HXC_MESSAGE_TABLE_TYPE

Line 11: g_audit_messages hxc_message_table_type;

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
15: ,p_attributes in out nocopy HXC_ATTRIBUTE_TABLE_TYPE

Line 16: ,p_messages in out nocopy 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;
20: l_old_style_blks HXC_SELF_SERVICE_TIME_DEPOSIT.timecard_info;

Line 39: ,p_messages in out nocopy HXC_MESSAGE_TABLE_TYPE

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
42: ,p_resubmit in varchar2
43: ) is

Line 244: ,p_messages in out nocopy HXC_MESSAGE_TABLE_TYPE

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
248: ,p_approval_prc in VARCHAR2

Line 942: ,p_messages out nocopy hxc_message_table_type

938: ,p_lock_rowid in rowid
939: ,p_cla_save in varchar2 default 'NO'
940: ,p_timecard_id out nocopy hxc_time_building_blocks.time_building_block_id%type
941: ,p_timecard_ovn out nocopy hxc_time_building_blocks.object_version_number%type
942: ,p_messages out nocopy hxc_message_table_type
943: ) is
944:
945: l_proc varchar2(30) := g_package||'.CREATE_TIMECARD';
946: l_index number;

Line 971: p_messages := hxc_message_table_type();

967: fnd_msg_pub.initialize;
968:
969: hxc_timecard_message_helper.initializeErrors;
970:
971: p_messages := hxc_message_table_type();
972:
973: if(p_template = hxc_timecard.c_no) then
974: if(hxc_lock_api.check_lock(p_lock_rowid)) then
975: l_valid_lock := true;

Line 1261: l_messages hxc_message_table_type := hxc_message_table_type();

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;
1265: l_detail_blocks hxc_timecard.block_list;