DBA Data[Home] [Help]

APPS.PO_ACTIONS dependencies on PO_DEBUG

Line 9: g_debug_stmt BOOLEAN := PO_DEBUG.is_debug_stmt_on;

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

Line 11: g_debug_unexp BOOLEAN := PO_DEBUG.is_debug_unexp_on;

7: g_log_head CONSTANT VARCHAR2(50) := 'po.plsql.' || g_pkg_name || '.';
8:
9: g_debug_stmt BOOLEAN := PO_DEBUG.is_debug_stmt_on;
10:
11: g_debug_unexp BOOLEAN := PO_DEBUG.is_debug_unexp_on;
12: --
13:
14: -- Constants :
15: -- This is used as a delimiter in the Debug Info String

Line 542: PO_DEBUG.debug_begin(l_log_head);

538: and nvl(AD.reversal_flag,'N') NOT IN ('Y')
539: );
540: l_progress := '010';
541: IF g_debug_stmt THEN
542: PO_DEBUG.debug_begin(l_log_head);
543: PO_DEBUG.debug_stmt(l_log_head,
544: l_progress,
545: 'End of CLOSE mode call');
546: END IF;

Line 543: PO_DEBUG.debug_stmt(l_log_head,

539: );
540: l_progress := '010';
541: IF g_debug_stmt THEN
542: PO_DEBUG.debug_begin(l_log_head);
543: PO_DEBUG.debug_stmt(l_log_head,
544: l_progress,
545: 'End of CLOSE mode call');
546: END IF;
547: elsif p_call_mode = 'INVOICE CLOSE' then

Line 560: PO_DEBUG.debug_stmt(l_log_head,

556: and nvl(AD.reversal_flag,'N') NOT IN ('Y');
557:
558: l_progress := '020';
559: IF g_debug_stmt THEN
560: PO_DEBUG.debug_stmt(l_log_head,
561: l_progress,
562: 'End of INVOICE CLOSE mode call');
563: END IF;
564: else -- call_mode = 'RECEIVE CLOSE'

Line 572: PO_DEBUG.debug_stmt(l_log_head,

568: where RT.TRANSACTION_TYPE IN ('RECEIVE','ACCEPT','CORRECT','MATCH')
569: and RT.po_line_location_id = p_line_location_id;
570: l_progress := '030';
571: IF g_debug_stmt THEN
572: PO_DEBUG.debug_stmt(l_log_head,
573: l_progress,
574: 'End of RECEIVE CLOSE mode call');
575: PO_DEBUG.debug_end(l_log_head);
576: END IF;

Line 575: PO_DEBUG.debug_end(l_log_head);

571: IF g_debug_stmt THEN
572: PO_DEBUG.debug_stmt(l_log_head,
573: l_progress,
574: 'End of RECEIVE CLOSE mode call');
575: PO_DEBUG.debug_end(l_log_head);
576: END IF;
577: end if;
578:
579: return(l_closed_date);

Line 584: PO_DEBUG.debug_exc(l_log_head, l_progress);

580:
581: EXCEPTION
582: WHEN OTHERS THEN
583: IF g_debug_unexp THEN
584: PO_DEBUG.debug_exc(l_log_head, l_progress);
585: END IF;
586: raise;
587:
588: