DBA Data[Home] [Help]

APPS.PA_CI_SUPPLIER_PKG dependencies on PA_DEBUG

Line 7: PA_DEBUG.g_err_stage := p_msg;

3: PROCEDURE print_msg(p_msg varchar2) IS
4: BEGIN
5: --dbms_output.put_line('Log:'||p_msg);
6: --r_debug.r_msg('Log:'||p_msg);
7: PA_DEBUG.g_err_stage := p_msg;
8: PA_DEBUG.write_file('LOG',pa_debug.g_err_stage);
9: null;
10: END print_msg;
11:

Line 8: PA_DEBUG.write_file('LOG',pa_debug.g_err_stage);

4: BEGIN
5: --dbms_output.put_line('Log:'||p_msg);
6: --r_debug.r_msg('Log:'||p_msg);
7: PA_DEBUG.g_err_stage := p_msg;
8: PA_DEBUG.write_file('LOG',pa_debug.g_err_stage);
9: null;
10: END print_msg;
11:
12: PROCEDURE insert_row (

Line 277: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);

273:
274:
275:
276: BEGIN
277: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);
278: l_debug_mode := NVL(l_debug_mode, 'N');
279: pa_debug.set_process('PLSQL','LOG',l_debug_mode);
280:
281: IF l_debug_mode = 'Y' THEN

Line 279: pa_debug.set_process('PLSQL','LOG',l_debug_mode);

275:
276: BEGIN
277: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);
278: l_debug_mode := NVL(l_debug_mode, 'N');
279: pa_debug.set_process('PLSQL','LOG',l_debug_mode);
280:
281: IF l_debug_mode = 'Y' THEN
282: print_msg('Inside pa_ci_supplier_pkg table handler..');
283: End IF;

Line 1082: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);

1078: l_original_ci_trans_id number;
1079:
1080: BEGIN
1081:
1082: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);
1083: l_debug_mode := NVL(l_debug_mode, 'N');
1084:
1085: pa_debug.set_process('PLSQL','LOG',l_debug_mode);
1086:

Line 1085: pa_debug.set_process('PLSQL','LOG',l_debug_mode);

1081:
1082: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);
1083: l_debug_mode := NVL(l_debug_mode, 'N');
1084:
1085: pa_debug.set_process('PLSQL','LOG',l_debug_mode);
1086:
1087: /** set the return status to success **/
1088: x_return_status := 'S';
1089: x_error_msg_code := NULL;

Line 1464: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);

1460: l_ci_id number;
1461:
1462: BEGIN
1463:
1464: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);
1465: l_debug_mode := NVL(l_debug_mode, 'N');
1466:
1467: pa_debug.set_process('PLSQL','LOG',l_debug_mode);
1468: open fetch_details;

Line 1467: pa_debug.set_process('PLSQL','LOG',l_debug_mode);

1463:
1464: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);
1465: l_debug_mode := NVL(l_debug_mode, 'N');
1466:
1467: pa_debug.set_process('PLSQL','LOG',l_debug_mode);
1468: open fetch_details;
1469: fetch fetch_details into l_task_id, l_res_id, l_ci_id;
1470: close fetch_details;
1471: