DBA Data[Home] [Help]

APPS.PO_CUSTOM_PRICE_PUB dependencies on PO_DEBUG

Line 9: g_debug_stmt BOOLEAN := PO_DEBUG.is_debug_stmt_on;

5:
6: g_log_head CONSTANT VARCHAR2(50) := 'po.plsql.'|| G_PKG_NAME || '.';
7:
8: -- Debugging
9: g_debug_stmt BOOLEAN := PO_DEBUG.is_debug_stmt_on;
10: g_debug_unexp BOOLEAN := PO_DEBUG.is_debug_unexp_on;
11:
12: --------------------------------------------------------------------------------
13: --Start of Comments

Line 10: g_debug_unexp BOOLEAN := PO_DEBUG.is_debug_unexp_on;

6: g_log_head CONSTANT VARCHAR2(50) := 'po.plsql.'|| G_PKG_NAME || '.';
7:
8: -- Debugging
9: g_debug_stmt BOOLEAN := PO_DEBUG.is_debug_stmt_on;
10: g_debug_unexp BOOLEAN := PO_DEBUG.is_debug_unexp_on;
11:
12: --------------------------------------------------------------------------------
13: --Start of Comments
14: --Name: get_custom_price_date

Line 303: PO_DEBUG.debug_begin(l_log_head);

299: l_log_head CONSTANT varchar2(100) := g_log_head || l_api_name;
300: l_progress VARCHAR2(3) := '000';
301: BEGIN
302: IF g_debug_stmt THEN
303: PO_DEBUG.debug_begin(l_log_head);
304: PO_DEBUG.debug_var(l_log_head,l_progress,'p_order_type', p_order_type);
305: PO_DEBUG.debug_var(l_log_head,l_progress,'p_order_line_id',p_order_line_id);
306: PO_DEBUG.debug_var(l_log_head,l_progress,'p_line_index',p_line_index);
307: END IF;

Line 304: PO_DEBUG.debug_var(l_log_head,l_progress,'p_order_type', p_order_type);

300: l_progress VARCHAR2(3) := '000';
301: BEGIN
302: IF g_debug_stmt THEN
303: PO_DEBUG.debug_begin(l_log_head);
304: PO_DEBUG.debug_var(l_log_head,l_progress,'p_order_type', p_order_type);
305: PO_DEBUG.debug_var(l_log_head,l_progress,'p_order_line_id',p_order_line_id);
306: PO_DEBUG.debug_var(l_log_head,l_progress,'p_line_index',p_line_index);
307: END IF;
308:

Line 305: PO_DEBUG.debug_var(l_log_head,l_progress,'p_order_line_id',p_order_line_id);

301: BEGIN
302: IF g_debug_stmt THEN
303: PO_DEBUG.debug_begin(l_log_head);
304: PO_DEBUG.debug_var(l_log_head,l_progress,'p_order_type', p_order_type);
305: PO_DEBUG.debug_var(l_log_head,l_progress,'p_order_line_id',p_order_line_id);
306: PO_DEBUG.debug_var(l_log_head,l_progress,'p_line_index',p_line_index);
307: END IF;
308:
309: -- Check for the API version

Line 306: PO_DEBUG.debug_var(l_log_head,l_progress,'p_line_index',p_line_index);

302: IF g_debug_stmt THEN
303: PO_DEBUG.debug_begin(l_log_head);
304: PO_DEBUG.debug_var(l_log_head,l_progress,'p_order_type', p_order_type);
305: PO_DEBUG.debug_var(l_log_head,l_progress,'p_order_line_id',p_order_line_id);
306: PO_DEBUG.debug_var(l_log_head,l_progress,'p_line_index',p_line_index);
307: END IF;
308:
309: -- Check for the API version
310: IF ( NOT FND_API.compatible_api_call(l_api_version,p_api_version,l_api_name,G_PKG_NAME) )

Line 323: PO_DEBUG.debug_end(l_log_head);

319: x_msg_count := 0;
320: x_msg_data := NULL;
321:
322: IF g_debug_stmt THEN
323: PO_DEBUG.debug_end(l_log_head);
324: END IF;
325:
326: END audit_qp_price_adjustment;
327: --