DBA Data[Home] [Help]

APPS.PO_DELREC_PVT dependencies on PO_DEBUG

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

3: c_log_head CONSTANT VARCHAR2(30) := 'po.plsql.PO_DELREC_PVT.';
4: x_progress VARCHAR2(4) := NULL;
5:
6: g_fnd_debug VARCHAR2(1) := NVL(FND_PROFILE.VALUE('AFLOG_ENABLED'),'N');
7: g_debug_stmt CONSTANT BOOLEAN := PO_DEBUG.is_debug_stmt_on;
8: g_debug_unexp CONSTANT BOOLEAN := PO_DEBUG.is_debug_unexp_on;
9:
10: PROCEDURE get_approved_po
11: (

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

4: x_progress VARCHAR2(4) := NULL;
5:
6: g_fnd_debug VARCHAR2(1) := NVL(FND_PROFILE.VALUE('AFLOG_ENABLED'),'N');
7: g_debug_stmt CONSTANT BOOLEAN := PO_DEBUG.is_debug_stmt_on;
8: g_debug_unexp CONSTANT BOOLEAN := PO_DEBUG.is_debug_unexp_on;
9:
10: PROCEDURE get_approved_po
11: (
12: p_api_version IN NUMBER,

Line 432: PO_DEBUG.debug_stmt ( p_log_head => c_log_head||l_api_name,

428: );
429:
430: ELSE -- l_fte_rec.po_shipment_line_id.count = 0
431: IF (g_debug_stmt) THEN
432: PO_DEBUG.debug_stmt ( p_log_head => c_log_head||l_api_name,
433: p_token => NULL,
434: p_message =>
435: 'l_fte_rec has no records, so do not call the FTE API.' );
436: END IF;

Line 525: PO_DEBUG.debug_stmt ( p_log_head => c_log_head||l_api_name,

521: );
522:
523: ELSE -- l_fte_rec.po_shipment_line_id.count = 0
524: IF (g_debug_stmt) THEN
525: PO_DEBUG.debug_stmt ( p_log_head => c_log_head||l_api_name,
526: p_token => NULL,
527: p_message =>
528: 'l_fte_rec has no records, so do not call the FTE API.' );
529: END IF;

Line 3519: PO_DEBUG.debug_begin ( c_log_head||l_api_name );

3515: ) IS
3516: l_api_name CONSTANT VARCHAR2(30) := 'debug_fte_rec';
3517: BEGIN
3518: IF (g_debug_stmt) AND (p_fte_rec.po_shipment_line_id IS NOT NULL) THEN
3519: PO_DEBUG.debug_begin ( c_log_head||l_api_name );
3520:
3521: FOR i IN 1..p_fte_rec.po_shipment_line_id.COUNT LOOP
3522: PO_DEBUG.debug_var (
3523: p_log_head => c_log_head||l_api_name,

Line 3522: PO_DEBUG.debug_var (

3518: IF (g_debug_stmt) AND (p_fte_rec.po_shipment_line_id IS NOT NULL) THEN
3519: PO_DEBUG.debug_begin ( c_log_head||l_api_name );
3520:
3521: FOR i IN 1..p_fte_rec.po_shipment_line_id.COUNT LOOP
3522: PO_DEBUG.debug_var (
3523: p_log_head => c_log_head||l_api_name,
3524: p_progress => '000',
3525: p_name => 'p_fte_rec.po_shipment_line_id('||i||')',
3526: p_value => p_fte_rec.po_shipment_line_id(i)