DBA Data[Home] [Help]

APPS.HXC_TIMECARD_MESSAGE_HELPER dependencies on HXC_DEPOSIT_WRAPPER_UTILITIES

Line 141: l_token_table hxc_deposit_wrapper_utilities.t_simple_table;

137: l_message_count NUMBER;
138: l_error_message VARCHAR2(4000);
139: l_fnd_separator VARCHAR2(5) := FND_GLOBAL.LOCAL_CHR(0);
140:
141: l_token_table hxc_deposit_wrapper_utilities.t_simple_table;
142:
143: BEGIN
144: --
145: -- loop over the error msgs. return immediately if the message_table is blank

Line 174: hxc_deposit_wrapper_utilities.string_to_table('&',

170: IF p_messages(l_message_count).message_tokens IS NOT NULL THEN
171: --
172: -- parse string into a more accessible form
173: --
174: hxc_deposit_wrapper_utilities.string_to_table('&',
175: '&'||p_messages(l_message_count).message_tokens,
176: l_token_table);
177:
178: -- table should be full of TOKEN, VALUE pairs. The number of TOKEN, VALUE pairs is l_token_table/2

Line 322: l_token_table hxc_deposit_wrapper_utilities.t_simple_table;

318: Procedure prepareErrors Is
319:
320: l_index number;
321:
322: l_token_table hxc_deposit_wrapper_utilities.t_simple_table;
323:
324: l_token number;
325: l_proc varchar2(70) := g_package||'prepareErrors';
326:

Line 360: hxc_deposit_wrapper_utilities.string_to_table('&',

356: IF g_messages(l_index).message_tokens IS NOT NULL THEN
357: --
358: -- parse string into a more accessible form
359: --
360: hxc_deposit_wrapper_utilities.string_to_table('&',
361: '&'||g_messages(l_index).message_tokens,
362: l_token_table);
363:
364: -- table should be full of TOKEN, VALUE pairs. The number of TOKEN, VALUE pairs is l_token_table/2