DBA Data[Home] [Help]

APPS.HR_MULTI_MESSAGE dependencies on HR_MULTI_MESSAGE

Line 1: PACKAGE BODY HR_MULTI_MESSAGE AS

1: PACKAGE BODY HR_MULTI_MESSAGE AS
2: /* $Header: hrmulmes.pkb 120.0 2005/05/31 01:28:27 appldev noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- |---------------------< Package Private Definitions >----------------------|

Line 76: if hr_multi_message.g_multi_list_disabled then

72: ,p_associated_column4 in varchar2 default null
73: ,p_associated_column5 in varchar2 default null
74: ) return boolean is
75: begin
76: if hr_multi_message.g_multi_list_disabled then
77: return true;
78: else
79: return ('T'= fnd_msg_pub.no_all_inclusive_error
80: (p_check_column1 => p_check_column1

Line 111: if hr_multi_message.g_multi_list_disabled then

107: ,p_associated_column4 in varchar2 default null
108: ,p_associated_column5 in varchar2 default null
109: ) return boolean is
110: begin
111: if hr_multi_message.g_multi_list_disabled then
112: return true;
113: else
114: return ('T'= fnd_msg_pub.no_exclusive_error
115: (p_check_column1 => p_check_column1

Line 146: if hr_multi_message.g_multi_list_disabled then

142: ,p_associated_column4 in varchar2 default null
143: ,p_associated_column5 in varchar2 default null
144: ) return boolean is
145: begin
146: if hr_multi_message.g_multi_list_disabled then
147: return true;
148: else
149: return ('T'= fnd_msg_pub.no_error_message
150: (p_check_message_name1 => p_check_message_name1

Line 178: if hr_multi_message.g_multi_list_disabled then

174: ,p_same_associated_columns in varchar2 default 'N'
175: ) return boolean is
176: l_same_associated_columns varchar2(1);
177: begin
178: if hr_multi_message.g_multi_list_disabled then
179: return true;
180: else
181: -- convert p_same_associated_columns values of
182: -- 'Y' and 'N' to 'T' and 'F' values.

Line 195: ,p_message_type => HR_MULTI_MESSAGE.G_ERROR_MSG

191: ,p_associated_column3 => p_associated_column3
192: ,p_associated_column4 => p_associated_column4
193: ,p_associated_column5 => p_associated_column5
194: ,p_same_associated_columns => l_same_associated_columns
195: ,p_message_type => HR_MULTI_MESSAGE.G_ERROR_MSG
196: );
197: return false;
198: end if;
199: end exception_add;

Line 213: hr_multi_message.g_error_msg

209: ,p_associated_column4 in varchar2 default null
210: ,p_associated_column5 in varchar2 default null
211: ,p_same_associated_columns in varchar2 default 'N'
212: ,p_message_type in varchar2 default
213: hr_multi_message.g_error_msg
214: ) is
215: l_same_associated_columns varchar2(1);
216: l_hr_msg_name varchar2(30);
217: l_hr_msg_appl fnd_application.application_short_name%type;

Line 222: if hr_multi_message.g_multi_list_disabled then

218: l_fnd_msg_encoded varchar2(2000);
219: l_fnd_msg_appl fnd_application.application_short_name%type;
220: l_fnd_msg_name varchar2(30);
221: begin
222: if hr_multi_message.g_multi_list_disabled then
223: --
224: -- Provide stop at first error found behaviour
225: --
226: if p_message_type = hr_multi_message.g_error_msg then

Line 226: if p_message_type = hr_multi_message.g_error_msg then

222: if hr_multi_message.g_multi_list_disabled then
223: --
224: -- Provide stop at first error found behaviour
225: --
226: if p_message_type = hr_multi_message.g_error_msg then
227: --
228: -- For error messages raise a PL/SQL exception
229: --
230: -- Fix for 4309248:

Line 355: if hr_multi_message.g_multi_list_disabled then

351: l_pkg_name varchar2(2000);
352: l_procedure_name varchar2(2000);
353: l_position number;
354: begin
355: if hr_multi_message.g_multi_list_disabled then
356: return true;
357: else
358: --
359: if sqlcode = -20001 then

Line 403: if hr_multi_message.is_message_list_enabled then

399: procedure end_validation_set is
400: l_encoded varchar2(2000);
401: l_message_type varchar2(1);
402: begin
403: if hr_multi_message.is_message_list_enabled then
404: --
405: -- loop through messages to find the first message of type ERROR
406: FOR I IN 1..fnd_msg_pub.count_msg LOOP
407: l_encoded := fnd_msg_pub.get_detail(p_msg_index => I);

Line 411: if l_message_type = hr_multi_message.g_error_msg then

407: l_encoded := fnd_msg_pub.get_detail(p_msg_index => I);
408: fnd_message.set_encoded(l_encoded);
409: l_message_type := fnd_message.get_token
410: (token => fnd_msg_pub.g_message_type_token_name);
411: if l_message_type = hr_multi_message.g_error_msg then
412: raise hr_multi_message.Error_Message_Exist;
413: end if;
414: end loop;
415: end if;

Line 412: raise hr_multi_message.Error_Message_Exist;

408: fnd_message.set_encoded(l_encoded);
409: l_message_type := fnd_message.get_token
410: (token => fnd_msg_pub.g_message_type_token_name);
411: if l_message_type = hr_multi_message.g_error_msg then
412: raise hr_multi_message.Error_Message_Exist;
413: end if;
414: end loop;
415: end if;
416: end end_validation_set;

Line 445: return hr_multi_message.get_return_status;

441: --
442: -- disable the message list if enabled and return status
443: g_multi_list_disabled := true;
444: --
445: return hr_multi_message.get_return_status;
446: end get_return_status_disable;
447: --
448: END HR_MULTI_MESSAGE;

Line 448: END HR_MULTI_MESSAGE;

444: --
445: return hr_multi_message.get_return_status;
446: end get_return_status_disable;
447: --
448: END HR_MULTI_MESSAGE;