DBA Data[Home] [Help]

PACKAGE: APPS.HXC_TIMECARD_MESSAGE_HELPER

Source


1 PACKAGE hxc_timecard_message_helper AUTHID CURRENT_USER AS
2 /* $Header: hxctcdmsg.pkh 115.3 2003/06/02 17:21:02 tjain noship $ */
3 
4 
5 Procedure initializeErrors;
6 
7 Procedure addErrorToCollection
8            (p_messages IN OUT NOCOPY HXC_MESSAGE_TABLE_TYPE
9            ,p_message_name IN fnd_new_messages.message_name%type
10            ,p_message_level IN VARCHAR2
11            ,p_message_field in VARCHAR2
12            ,p_message_tokens in VARCHAR2
13            ,p_application_short_name in fnd_application.application_short_name%type
14            ,p_time_building_block_id in hxc_time_building_blocks.time_building_block_id%type
15            ,p_time_building_block_ovn in hxc_time_building_blocks.object_version_number%type
16            ,p_time_attribute_id in hxc_time_attributes.time_attribute_id%type
17            ,p_time_attribute_ovn in hxc_time_attributes.object_version_number%type
18            ,p_message_extent in VARCHAR2 DEFAULT null            --Bug#2873563
19            );
20 
21 PROCEDURE processErrors(p_messages IN OUT nocopy hxc_self_service_time_deposit.message_table);
22 
23 Procedure processErrors(p_messages in out nocopy hxc_message_table_type);
24 
25 Function noErrors return BOOLEAN;
26 
27 Procedure prepareErrors;
28 
29 Function prepareMessages return hxc_message_table_type;
30 
31 Function getMessages return hxc_message_table_type;
32 
33 END hxc_timecard_message_helper;