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 300: PO_DEBUG.debug_begin(l_log_head);

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

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

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

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

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

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

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

Line 320: PO_DEBUG.debug_end(l_log_head);

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