DBA Data[Home] [Help]

APPS.PAY_GB_PAYROLL_ACTIONS_PKG dependencies on HR_UTILITY

Line 473: hr_utility.trace('TEST pay_result_value : NULL ');

469: --
470: EXCEPTION
471: WHEN NO_DATA_FOUND THEN
472: pay_result_value := NULL;
473: hr_utility.trace('TEST pay_result_value : NULL ');
474: return pay_result_value;
475: --
476: END get_tax_details;
477: --

Line 682: hr_utility.trace(' Index :' || TO_CHAR(l_table_index));

678: -- g_table_dim this variable holds the table dimension
679:
680: l_table_index := 1;
681: --
682: hr_utility.trace(' Index :' || TO_CHAR(l_table_index));
683: hr_utility.trace(' Dim :' || TO_CHAR(g_table_dim));
684: --
685: LOOP
686: IF l_table_index > g_table_dim THEN

Line 683: hr_utility.trace(' Dim :' || TO_CHAR(g_table_dim));

679:
680: l_table_index := 1;
681: --
682: hr_utility.trace(' Index :' || TO_CHAR(l_table_index));
683: hr_utility.trace(' Dim :' || TO_CHAR(g_table_dim));
684: --
685: LOOP
686: IF l_table_index > g_table_dim THEN
687: EXIT;

Line 695: hr_utility.trace(' FOUND !!!!! ');

691:
692: IF l_balance_name = p_balance_type AND l_balance_suffix = p_dimension_suffix THEN
693: l_result := g_balance_id(l_table_index);
694: l_found := TRUE;
695: hr_utility.trace(' FOUND !!!!! ');
696: EXIT;
697: END IF;
698: l_table_index := l_table_index + 1;
699: END LOOP;

Line 701: hr_utility.trace(' Index :' || TO_CHAR(l_table_index));

697: END IF;
698: l_table_index := l_table_index + 1;
699: END LOOP;
700: --
701: hr_utility.trace(' Index :' || TO_CHAR(l_table_index));
702: --
703: IF l_found = FALSE THEN -- calculate and insert the new value in the table.
704: --
705: hr_utility.trace(' NOT FOUND, inserted IN position : ' || TO_CHAR(l_table_index));

Line 705: hr_utility.trace(' NOT FOUND, inserted IN position : ' || TO_CHAR(l_table_index));

701: hr_utility.trace(' Index :' || TO_CHAR(l_table_index));
702: --
703: IF l_found = FALSE THEN -- calculate and insert the new value in the table.
704: --
705: hr_utility.trace(' NOT FOUND, inserted IN position : ' || TO_CHAR(l_table_index));
706: --
707: open c_defined_balance;
708: fetch c_defined_balance into l_result;
709: close c_defined_balance;