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 136: pa_debug.init_err_stack(p_function);

132: g_function_counter := g_function_counter + 1;
133: g_function_stack(g_function_counter) := p_function;
134: g_space := g_space || ' ';
135: if g_function_counter = 1 then
136: pa_debug.init_err_stack(p_function);
137: else
138: pa_debug.set_err_stack(p_function);
139: end if;
140: END set_curr_function;

Line 138: pa_debug.set_err_stack(p_function);

134: g_space := g_space || ' ';
135: if g_function_counter = 1 then
136: pa_debug.init_err_stack(p_function);
137: else
138: pa_debug.set_err_stack(p_function);
139: end if;
140: END set_curr_function;
141:
142: -------------------------------------------------------------------------------

Line 155: pa_debug.Reset_err_stack;

151: */
152: g_function_stack.delete(g_function_counter);
153: g_function_counter := g_function_counter -1;
154: g_space := substr(g_space,1,length(g_space)-1);
155: pa_debug.Reset_err_stack;
156: END reset_curr_function;
157:
158: END PA_CC_UTILS ;