DBA Data[Home] [Help]

APPS.PO_LINES_SV5 dependencies on PO_DEBUG

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

9: PROCEDURE NAME: po_lines_post_query()
10:
11: ===========================================================================*/
12:
13: g_debug_stmt CONSTANT BOOLEAN := PO_DEBUG.is_debug_stmt_on;
14: g_pkg_name CONSTANT VARCHAR2(30) := 'PO_LINES_SV5';
15: g_log_head CONSTANT VARCHAR2(30) := 'po.plsql.PO_LINES_SV5.';
16:
17:

Line 160: PO_DEBUG.debug_begin(p_log_head => g_log_head||l_api_name);

156:
157: Begin
158: l_progress := '010';
159: IF g_debug_stmt THEN
160: PO_DEBUG.debug_begin(p_log_head => g_log_head||l_api_name);
161: END IF;
162:
163: /* Get Retrocative Profile Value */
164: l_progress := '020';

Line 168: PO_DEBUG.debug_stmt(p_log_head => g_log_head||l_api_name,

164: l_progress := '020';
165: x_retroactive_value := PO_RETROACTIVE_PRICING_PVT.Get_Retro_Mode;
166:
167: IF g_debug_stmt THEN
168: PO_DEBUG.debug_stmt(p_log_head => g_log_head||l_api_name,
169: p_token => l_progress,
170: p_message => 'Retroactive Value ::'|| x_retroactive_value);
171: END IF;
172:

Line 181: PO_DEBUG.debug_stmt(p_log_head => g_log_head||l_api_name,

177: p_po_line_id => p_po_line_id,
178: p_po_line_loc_id => NULL);
179:
180: IF g_debug_stmt THEN
181: PO_DEBUG.debug_stmt(p_log_head => g_log_head||l_api_name,
182: p_token => l_progress,
183: p_message => 'l_retro_prj_allowed Value ::'|| l_retro_prj_allowed);
184: END IF;
185:

Line 191: PO_DEBUG.debug_stmt(p_log_head => g_log_head||l_api_name,

187: l_archive_mode_po := PO_DOCUMENT_ARCHIVE_PVT.get_archive_mode(
188: p_doc_type => 'PO',
189: p_doc_subtype => 'STANDARD');
190: IF g_debug_stmt THEN
191: PO_DEBUG.debug_stmt(p_log_head => g_log_head||l_api_name,
192: p_token => l_progress,
193: p_message => 'l_archive_mode_po Value ::'|| l_archive_mode_po);
194: END IF;
195:

Line 219: PO_DEBUG.debug_stmt(p_log_head => g_log_head||l_api_name,

215: x_destination_code:='INVENTORY';
216: END;
217:
218: IF g_debug_stmt THEN
219: PO_DEBUG.debug_stmt(p_log_head => g_log_head||l_api_name,
220: p_token => l_progress,
221: p_message => 'x_destination_code Value ::'|| x_destination_code);
222: END IF;
223:

Line 239: PO_DEBUG.debug_stmt(p_log_head => g_log_head||l_api_name,

235: from po_line_locations
236: where po_line_id = p_po_line_id;
237:
238: IF g_debug_stmt THEN
239: PO_DEBUG.debug_stmt(p_log_head => g_log_head||l_api_name,
240: p_token => l_progress,
241: p_message => 'x_quantity_received Value ::'|| x_quantity_received);
242: PO_DEBUG.debug_stmt(p_log_head => g_log_head||l_api_name,
243: p_token => l_progress,

Line 242: PO_DEBUG.debug_stmt(p_log_head => g_log_head||l_api_name,

238: IF g_debug_stmt THEN
239: PO_DEBUG.debug_stmt(p_log_head => g_log_head||l_api_name,
240: p_token => l_progress,
241: p_message => 'x_quantity_received Value ::'|| x_quantity_received);
242: PO_DEBUG.debug_stmt(p_log_head => g_log_head||l_api_name,
243: p_token => l_progress,
244: p_message => 'x_quantity_billed Value ::'|| x_quantity_billed);
245: PO_DEBUG.debug_stmt(p_log_head => g_log_head||l_api_name,
246: p_token => l_progress,

Line 245: PO_DEBUG.debug_stmt(p_log_head => g_log_head||l_api_name,

241: p_message => 'x_quantity_received Value ::'|| x_quantity_received);
242: PO_DEBUG.debug_stmt(p_log_head => g_log_head||l_api_name,
243: p_token => l_progress,
244: p_message => 'x_quantity_billed Value ::'|| x_quantity_billed);
245: PO_DEBUG.debug_stmt(p_log_head => g_log_head||l_api_name,
246: p_token => l_progress,
247: p_message => 'x_accrual_option Value ::'|| x_accrual_option);
248: PO_DEBUG.debug_stmt(p_log_head => g_log_head||l_api_name,
249: p_token => l_progress,

Line 248: PO_DEBUG.debug_stmt(p_log_head => g_log_head||l_api_name,

244: p_message => 'x_quantity_billed Value ::'|| x_quantity_billed);
245: PO_DEBUG.debug_stmt(p_log_head => g_log_head||l_api_name,
246: p_token => l_progress,
247: p_message => 'x_accrual_option Value ::'|| x_accrual_option);
248: PO_DEBUG.debug_stmt(p_log_head => g_log_head||l_api_name,
249: p_token => l_progress,
250: p_message => 'x_encumbered_flag Value ::'|| x_encumbered_flag);
251: END IF;
252:

Line 275: PO_DEBUG.debug_stmt(p_log_head => g_log_head||l_api_name,

271: then
272:
273: l_progress := '070';
274: IF g_debug_stmt THEN
275: PO_DEBUG.debug_stmt(p_log_head => g_log_head||l_api_name,
276: p_token => l_progress,
277: p_message => 'Returning::FALSE');
278: END IF;
279:

Line 286: PO_DEBUG.debug_stmt(p_log_head => g_log_head||l_api_name,

282: else
283:
284: l_progress := '080';
285: IF g_debug_stmt THEN
286: PO_DEBUG.debug_stmt(p_log_head => g_log_head||l_api_name,
287: p_token => l_progress,
288: p_message => 'Returning::TRUE');
289: END IF;
290:

Line 296: PO_DEBUG.debug_end(p_log_head => g_log_head||l_api_name);

292:
293: end if;
294:
295: IF g_debug_stmt THEN
296: PO_DEBUG.debug_end(p_log_head => g_log_head||l_api_name);
297: END IF;
298:
299: Exception
300: When NO_DATA_FOUND then