DBA Data[Home] [Help]

APPS.PO_SERVICES_PVT dependencies on PO_DEBUG

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

1: PACKAGE BODY PO_SERVICES_PVT AS
2: /* $Header: POXVSVCB.pls 115.15 2004/07/06 22:17:30 anhuang 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_SERVICES_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: POXVSVCB.pls 115.15 2004/07/06 22:17:30 anhuang 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_SERVICES_PVT';
9: g_module_prefix CONSTANT VARCHAR2(30) := 'po.plsql.' || g_pkg_name || '.';
10:

Line 106: l_progress := '000'; PO_DEBUG.debug_begin(l_log_head);

102: l_result VARCHAR2(1) := 'N';
103:
104: BEGIN
105:
106: l_progress := '000'; PO_DEBUG.debug_begin(l_log_head);
107:
108: l_install_status := PO_CORE_S.get_product_install_status('SQLAP');
109:
110: l_progress := '010'; PO_DEBUG.debug_var ( p_log_head => l_log_head

Line 110: l_progress := '010'; PO_DEBUG.debug_var ( p_log_head => l_log_head

106: l_progress := '000'; PO_DEBUG.debug_begin(l_log_head);
107:
108: l_install_status := PO_CORE_S.get_product_install_status('SQLAP');
109:
110: l_progress := '010'; PO_DEBUG.debug_var ( p_log_head => l_log_head
111: , p_progress => l_progress
112: , p_name => 'AP Install Status'
113: , p_value => l_install_status
114: );

Line 126: l_progress := '020'; PO_DEBUG.debug_var ( p_log_head => l_log_head

122: ( p_appl_id => 200 -- AP
123: , p_patch_level => l_ap_family_pack
124: );
125:
126: l_progress := '020'; PO_DEBUG.debug_var ( p_log_head => l_log_head
127: , p_progress => l_progress
128: , p_name => 'AP Family Pack'
129: , p_value => l_ap_family_pack
130: );

Line 139: l_progress := '030'; PO_DEBUG.debug_var ( p_log_head => l_log_head

135: ELSE
136: l_result := 'N';
137: END IF;
138:
139: l_progress := '030'; PO_DEBUG.debug_var ( p_log_head => l_log_head
140: , p_progress => l_progress
141: , p_name => 'l_result'
142: , p_value => l_result
143: );

Line 152: l_progress := '040'; PO_DEBUG.debug_end(l_log_head);

148: END IF; -- ( l_install_status )
149: --
150: --
151:
152: l_progress := '040'; PO_DEBUG.debug_end(l_log_head);
153:
154: return (l_result); --
155:
156: EXCEPTION

Line 159: PO_DEBUG.debug_exc ( p_log_head => l_log_head

155:
156: EXCEPTION
157:
158: WHEN OTHERS THEN
159: PO_DEBUG.debug_exc ( p_log_head => l_log_head
160: , p_progress => l_progress);
161: RAISE;
162:
163: END get_ap_compatibility_flag;

Line 584: PO_DEBUG.debug_stmt

580: l_progress := '000';
581: x_return_status := FND_API.g_ret_sts_success;
582:
583: IF g_debug_stmt THEN
584: PO_DEBUG.debug_stmt
585: (p_log_head => g_module_prefix||'validate_ship_to_org',
586: p_token => 'invoked',
587: p_message => 'job ID: '||p_job_id||' ship-to org ID: '||
588: p_ship_to_org_id);

Line 611: PO_DEBUG.debug_var

607:
608: x_is_valid := TRUE;
609:
610: IF g_debug_stmt THEN
611: PO_DEBUG.debug_var
612: (p_log_head => g_module_prefix||'validate_ship_to_org',
613: p_progress => l_progress,
614: p_name => 'x_is_valid',
615: p_value => x_is_valid);

Line 623: PO_DEBUG.debug_var

619: WHEN NO_DATA_FOUND THEN
620: -- x_return_status is still success here because this is not an error
621: x_is_valid := FALSE;
622: IF g_debug_stmt THEN
623: PO_DEBUG.debug_var
624: (p_log_head => g_module_prefix||'validate_ship_to_org',
625: p_progress => l_progress,
626: p_name => 'x_is_valid',
627: p_value => x_is_valid);

Line 636: PO_DEBUG.debug_exc

632: p_procedure_name => 'validate_ship_to_org',
633: p_error_text => 'Progress: '||l_progress||
634: ' Error: '||SUBSTRB(SQLERRM,1,215));
635: IF g_debug_unexp THEN
636: PO_DEBUG.debug_exc
637: (p_log_head => g_module_prefix||'validate_ship_to_org',
638: p_progress => l_progress);
639: END IF;
640: END validate_ship_to_org;