DBA Data[Home] [Help]

APPS.PO_JL_INTERFACE_PVT dependencies on PO_DEBUG

Line 5: g_debug_stmt CONSTANT BOOLEAN := PO_DEBUG.is_debug_stmt_on;

1: PACKAGE BODY PO_JL_INTERFACE_PVT AS
2: /* $Header: POXVJLIB.pls 120.1 2005/06/21 02:52:56 vsanjay noship $ */
3:
4: -- Debugging booleans used to bypass logging when turned off
5: g_debug_stmt CONSTANT BOOLEAN := PO_DEBUG.is_debug_stmt_on;
6: g_debug_unexp CONSTANT BOOLEAN := PO_DEBUG.is_debug_unexp_on;
7:
8: g_pkg_name CONSTANT VARCHAR2(20) := 'PO_JL_INTERFACE_PVT';
9: g_module_prefix CONSTANT VARCHAR2(30) := 'po.plsql.' || g_pkg_name || '.';

Line 6: g_debug_unexp CONSTANT BOOLEAN := PO_DEBUG.is_debug_unexp_on;

2: /* $Header: POXVJLIB.pls 120.1 2005/06/21 02:52:56 vsanjay noship $ */
3:
4: -- Debugging booleans used to bypass logging when turned off
5: g_debug_stmt CONSTANT BOOLEAN := PO_DEBUG.is_debug_stmt_on;
6: g_debug_unexp CONSTANT BOOLEAN := PO_DEBUG.is_debug_unexp_on;
7:
8: g_pkg_name CONSTANT VARCHAR2(20) := 'PO_JL_INTERFACE_PVT';
9: g_module_prefix CONSTANT VARCHAR2(30) := 'po.plsql.' || g_pkg_name || '.';
10:

Line 77: PO_DEBUG.debug_unexp(g_module_prefix||l_api_name,l_progress,

73: EXCEPTION
74: WHEN FND_API.g_exc_unexpected_error THEN
75: x_return_status := FND_API.g_ret_sts_unexp_error;
76: IF g_debug_unexp THEN
77: PO_DEBUG.debug_unexp(g_module_prefix||l_api_name,l_progress,
78: 'Unexpected error from API call');
79: END IF;
80: WHEN OTHERS THEN
81: x_return_status := FND_API.g_ret_sts_unexp_error;

Line 85: PO_DEBUG.debug_exc(g_module_prefix||l_api_name,l_progress);

81: x_return_status := FND_API.g_ret_sts_unexp_error;
82: FND_MSG_PUB.add_exc_msg(p_pkg_name => g_pkg_name,
83: p_procedure_name => l_api_name||'-'||l_progress);
84: IF g_debug_unexp THEN
85: PO_DEBUG.debug_exc(g_module_prefix||l_api_name,l_progress);
86: END IF;
87: END get_trx_reason_code;
88:
89:

Line 151: PO_DEBUG.debug_stmt(g_module_prefix||l_api_name,l_progress,

147: EXCEPTION
148: WHEN FND_API.g_exc_error THEN
149: x_return_status := FND_API.g_ret_sts_error;
150: IF g_debug_stmt THEN
151: PO_DEBUG.debug_stmt(g_module_prefix||l_api_name,l_progress,
152: 'Expected error from API call');
153: END IF;
154: WHEN FND_API.g_exc_unexpected_error THEN
155: x_return_status := FND_API.g_ret_sts_unexp_error;

Line 157: PO_DEBUG.debug_unexp(g_module_prefix||l_api_name,l_progress,

153: END IF;
154: WHEN FND_API.g_exc_unexpected_error THEN
155: x_return_status := FND_API.g_ret_sts_unexp_error;
156: IF g_debug_unexp THEN
157: PO_DEBUG.debug_unexp(g_module_prefix||l_api_name,l_progress,
158: 'Unexpected error from API call');
159: END IF;
160: WHEN OTHERS THEN
161: x_return_status := FND_API.g_ret_sts_unexp_error;

Line 165: PO_DEBUG.debug_exc(g_module_prefix||l_api_name,l_progress);

161: x_return_status := FND_API.g_ret_sts_unexp_error;
162: FND_MSG_PUB.add_exc_msg(p_pkg_name => g_pkg_name,
163: p_procedure_name => l_api_name||'-'||l_progress);
164: IF g_debug_unexp THEN
165: PO_DEBUG.debug_exc(g_module_prefix||l_api_name,l_progress);
166: END IF;
167: END get_trx_reason_code;
168:
169:

Line 210: PO_DEBUG.debug_unexp(g_module_prefix||l_api_name,l_progress,

206: EXCEPTION
207: WHEN FND_API.g_exc_unexpected_error THEN
208: x_return_status := FND_API.g_ret_sts_unexp_error;
209: IF g_debug_unexp THEN
210: PO_DEBUG.debug_unexp(g_module_prefix||l_api_name,l_progress,
211: 'Unexpected error from API call');
212: END IF;
213: WHEN OTHERS THEN
214: x_return_status := FND_API.g_ret_sts_unexp_error;

Line 218: PO_DEBUG.debug_exc(g_module_prefix||l_api_name,l_progress);

214: x_return_status := FND_API.g_ret_sts_unexp_error;
215: FND_MSG_PUB.add_exc_msg(p_pkg_name => g_pkg_name,
216: p_procedure_name => l_api_name||'-'||l_progress);
217: IF g_debug_unexp THEN
218: PO_DEBUG.debug_exc(g_module_prefix||l_api_name,l_progress);
219: END IF;
220: END chk_def_trx_reason_flag;
221:
222: END PO_JL_INTERFACE_PVT;