DBA Data[Home] [Help]

APPS.PA_CC_UTILS dependencies on PA_DEBUG

Line 21: g1_debug_mode varchar2(1) := NVL(FND_PROFILE.value('PA_DEBUG_MODE'), 'N');

17: -- FUNCTION
18: -- is_receiver_control_setup
19: --
20: --
21: g1_debug_mode varchar2(1) := NVL(FND_PROFILE.value('PA_DEBUG_MODE'), 'N');
22:
23: Function is_receiver_control_setup (x_provider_org_id IN number,
24: x_receiver_org_id IN number) return number
25: is

Line 109: pa_debug.write_file('LOG',

105: IF g_function_stack.exists(g_function_counter) THEN
106: l_function := g_function_stack(g_function_counter);
107: END IF;
108: IF g1_debug_mode = 'Y' THEN
109: pa_debug.write_file('LOG',
110: to_char(sysdate,'HH:MI:SS:') || g_space ||
111: l_function || ': ' ||p_message, p_write_mode);
112: END IF;
113:

Line 141: pa_debug.init_err_stack(p_function);

137: g_space := ' ';
138: END IF;
139:
140: if g_function_counter = 1 then
141: pa_debug.init_err_stack(p_function);
142: else
143: pa_debug.set_err_stack(p_function);
144: end if;
145: END set_curr_function;

Line 143: pa_debug.set_err_stack(p_function);

139:
140: if g_function_counter = 1 then
141: pa_debug.init_err_stack(p_function);
142: else
143: pa_debug.set_err_stack(p_function);
144: end if;
145: END set_curr_function;
146:
147: -------------------------------------------------------------------------------

Line 160: pa_debug.Reset_err_stack;

156: */
157: g_function_stack.delete(g_function_counter);
158: g_function_counter := g_function_counter -1;
159: g_space := substr(g_space,1,length(g_space)-1);
160: pa_debug.Reset_err_stack;
161: END reset_curr_function;
162:
163: END PA_CC_UTILS ;