DBA Data[Home] [Help]

APPS.PAY_CORE_UTILS dependencies on HR_UTILITY

Line 7: g_traces BOOLEAN := hr_utility.debug_enabled;

3: --
4: -- Setup Globals
5: --
6: g_pkg varchar2(30) := 'pay_core_utils';
7: g_traces BOOLEAN := hr_utility.debug_enabled;
8:
9: type varchar_1_tbl is table of varchar2(1) index by binary_integer;
10: type varchar_50_tbl is table of varchar2(50) index by binary_integer;
11: type varchar_240_tbl is table of varchar2(240) index by binary_integer;

Line 208: hr_utility.trace('pay_core_utils.get_business_group_id '||business_group_id);

204: dbms_sql.close_cursor(sql_cur);
205: end if;
206: --
207: if (g_traces) then
208: hr_utility.trace('pay_core_utils.get_business_group_id '||business_group_id);
209: end if;
210: return business_group_id;
211: --
212: exception

Line 266: hr_utility.trace('pay_core_utils.get_dyt_business_group '||business_group_id);

262:
263: end if;
264: --
265: if (g_traces) then
266: hr_utility.trace('pay_core_utils.get_dyt_business_group '||business_group_id);
267: end if;
268: return g_business_group_id;
269: --
270: exception

Line 305: hr_utility.trace('pay_core_utils.get_legislation_code '||g_legislation_code);

301: end if;
302: end if;
303: --
304: if (g_traces) then
305: hr_utility.trace('pay_core_utils.get_legislation_code '||g_legislation_code);
306: end if;
307: return g_legislation_code;
308: --
309: end get_legislation_code;

Line 321: hr_utility.set_location('pay_core_utils.reset_cached_values', 10);

317: */
318: procedure reset_cached_values
319: is
320: begin
321: hr_utility.set_location('pay_core_utils.reset_cached_values', 10);
322: --
323: g_business_group_id := null;
324: g_legislation_code := null;
325: --

Line 326: hr_utility.set_location('pay_core_utils.reset_cached_values', 20);

322: --
323: g_business_group_id := null;
324: g_legislation_code := null;
325: --
326: hr_utility.set_location('pay_core_utils.reset_cached_values', 20);
327: --
328: end reset_cached_values;
329: --
330: -------------------------- get_time_definition ----------------------------

Line 703: hr_utility.set_location('pay_core_utils.push_message', 10);

699: p_level in varchar2
700: )
701: is
702: begin
703: hr_utility.set_location('pay_core_utils.push_message', 10);
704: --
705: g_message_stack.sz := g_message_stack.sz + 1;
706: g_message_stack.message_name(g_message_stack.sz) := p_msg_name;
707: g_message_stack.message_txt(g_message_stack.sz) := p_msg_txt;

Line 718: hr_utility.set_location('pay_core_utils.push_message', 20);

714: else
715: g_message_stack.message_level(g_message_stack.sz) := 'F';
716: end if;
717: --
718: hr_utility.set_location('pay_core_utils.push_message', 20);
719: --
720: end push_message;
721: --
722: --------------------------- push_token -------------------------------

Line 734: hr_utility.set_location('pay_core_utils.push_token', 10);

730: p_tok_value in varchar2
731: )
732: is
733: begin
734: hr_utility.set_location('pay_core_utils.push_token', 10);
735: --
736: g_message_tokens.sz := g_message_tokens.sz + 1;
737: g_message_tokens.token_name(g_message_tokens.sz) := p_tok_name;
738: g_message_tokens.token_value(g_message_tokens.sz) := p_tok_value;

Line 746: hr_utility.set_location('pay_core_utils.push_token', 20);

742: g_message_stack.token_str(g_message_stack.sz) := g_message_tokens.sz;
743: end if;
744: g_message_stack.token_end(g_message_stack.sz) := g_message_tokens.sz;
745: --
746: hr_utility.set_location('pay_core_utils.push_token', 20);
747: --
748: end push_token;
749: --
750: --------------------------- pop_message -------------------------------

Line 771: hr_utility.set_location('pay_core_utils.pop_message', 10);

767: p_sev_level out nocopy varchar2
768: )
769: is
770: begin
771: hr_utility.set_location('pay_core_utils.pop_message', 10);
772: --
773: if (g_message_stack.sz = 0) then
774: p_msg_text := null;
775: p_sev_level := null;

Line 783: hr_utility.set_message(g_message_stack.applid(g_message_stack.sz),

779: if (g_message_stack.message_name(g_message_stack.sz) is NULL)
780: then
781: p_msg_text := g_message_stack.message_txt(g_message_stack.sz);
782: else
783: hr_utility.set_message(g_message_stack.applid(g_message_stack.sz),
784: g_message_stack.message_name(g_message_stack.sz));
785: --
786: if (g_message_stack.token_str(g_message_stack.sz) is not null) then
787: --

Line 791: hr_utility.set_message_token(g_message_tokens.token_name(tok_cnt),

787: --
788: for tok_cnt in g_message_stack.token_str(g_message_stack.sz) ..
789: g_message_stack.token_end(g_message_stack.sz) loop
790: --
791: hr_utility.set_message_token(g_message_tokens.token_name(tok_cnt),
792: g_message_tokens.token_value(tok_cnt));
793: --
794: end loop;
795: --

Line 798: p_msg_text := hr_utility.get_message;

794: end loop;
795: --
796: end if;
797: --
798: p_msg_text := hr_utility.get_message;
799: end if;
800: p_sev_level := g_message_stack.message_level(g_message_stack.sz);
801: g_message_tokens.sz := g_message_stack.token_str(g_message_stack.sz) - 1;
802: g_message_stack.sz := g_message_stack.sz - 1;

Line 804: hr_utility.set_locatIon('pay_core_utils.pop_message', 20);

800: p_sev_level := g_message_stack.message_level(g_message_stack.sz);
801: g_message_tokens.sz := g_message_stack.token_str(g_message_stack.sz) - 1;
802: g_message_stack.sz := g_message_stack.sz - 1;
803: --
804: hr_utility.set_locatIon('pay_core_utils.pop_message', 20);
805: --
806: end pop_message;
807:
808: procedure mesg_stack_error_hdlr(p_pactid in number)

Line 1026: hr_utility.set_location('pay_core_utils.set_pap_group_id', 10);

1022: p_pap_group_id in number
1023: )
1024: is
1025: begin
1026: hr_utility.set_location('pay_core_utils.set_pap_group_id', 10);
1027: --
1028: pay_core_utils.pay_action_parameter_group_id := p_pap_group_id;
1029: --
1030: hr_utility.set_location('pay_core_utils.set_pap_group_id', 20);

Line 1030: hr_utility.set_location('pay_core_utils.set_pap_group_id', 20);

1026: hr_utility.set_location('pay_core_utils.set_pap_group_id', 10);
1027: --
1028: pay_core_utils.pay_action_parameter_group_id := p_pap_group_id;
1029: --
1030: hr_utility.set_location('pay_core_utils.set_pap_group_id', 20);
1031: --
1032: end set_pap_group_id;
1033: --
1034: --------------------------- get_pap_group_id -------------------------------

Line 1655: hr_utility.set_message(801, 'HR_6882_HRPROC_ASSERT') ;

1651: begin
1652: --
1653: if not p_condition
1654: then
1655: hr_utility.set_message(801, 'HR_6882_HRPROC_ASSERT') ;
1656: hr_utility.set_message_token('LOCATION', p_location);
1657: hr_utility.raise_error ;
1658: end if;
1659: --

Line 1656: hr_utility.set_message_token('LOCATION', p_location);

1652: --
1653: if not p_condition
1654: then
1655: hr_utility.set_message(801, 'HR_6882_HRPROC_ASSERT') ;
1656: hr_utility.set_message_token('LOCATION', p_location);
1657: hr_utility.raise_error ;
1658: end if;
1659: --
1660: end assert_condition;

Line 1657: hr_utility.raise_error ;

1653: if not p_condition
1654: then
1655: hr_utility.set_message(801, 'HR_6882_HRPROC_ASSERT') ;
1656: hr_utility.set_message_token('LOCATION', p_location);
1657: hr_utility.raise_error ;
1658: end if;
1659: --
1660: end assert_condition;
1661: --