DBA Data[Home] [Help]

APPS.RCV_HXT_GRP dependencies on PO_DEBUG

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

172: G_LOG_MODULE CONSTANT VARCHAR2(40) := 'po.plsql.' || G_PKG_NAME;
173: G_CONC_LOG VARCHAR2(32767);
174: -- bug 5976883 : Have changed the fnd logging logic according to PO standards
175: -- Now at all places we are using the module.package.procedure convention.
176: g_debug_stmt CONSTANT BOOLEAN := PO_DEBUG.is_debug_stmt_on;
177: g_debug_unexp CONSTANT BOOLEAN := PO_DEBUG.is_debug_unexp_on;
178: -- global counters for summary reporting
179: g_retrieved_details NUMBER := 0;
180: g_successful_details NUMBER := 0;

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

173: G_CONC_LOG VARCHAR2(32767);
174: -- bug 5976883 : Have changed the fnd logging logic according to PO standards
175: -- Now at all places we are using the module.package.procedure convention.
176: g_debug_stmt CONSTANT BOOLEAN := PO_DEBUG.is_debug_stmt_on;
177: g_debug_unexp CONSTANT BOOLEAN := PO_DEBUG.is_debug_unexp_on;
178: -- global counters for summary reporting
179: g_retrieved_details NUMBER := 0;
180: g_successful_details NUMBER := 0;
181: g_failed_details NUMBER := 0;

Line 277: po_debug.debug_stmt(module,l_progress,message);

273: END IF;
274: -- add to fnd_log_messages
275: -- asn_debug.put_line(module||': '||message,log_level);
276: if (log_level = FND_LOG.LEVEL_STATEMENT and g_debug_stmt ) then
277: po_debug.debug_stmt(module,l_progress,message);
278:
279: elsif (log_level = FND_LOG.LEVEL_UNEXPECTED and g_debug_unexp ) then
280: po_debug.debug_unexp(module,l_progress,message);
281:

Line 280: po_debug.debug_unexp(module,l_progress,message);

276: if (log_level = FND_LOG.LEVEL_STATEMENT and g_debug_stmt ) then
277: po_debug.debug_stmt(module,l_progress,message);
278:
279: elsif (log_level = FND_LOG.LEVEL_UNEXPECTED and g_debug_unexp ) then
280: po_debug.debug_unexp(module,l_progress,message);
281:
282: elsif (l_debug_on and log_level >= FND_LOG.G_CURRENT_RUNTIME_LEVEL ) then
283: FND_LOG.string(
284: log_level

Line 308: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_bb_id ' , p_attributes.timecard_bb_id);

304: l_api_name CONSTANT varchar2(30) := 'debug_TimecardAttributesRec';
305: l_log_head CONSTANT VARCHAR2(100) := G_LOG_MODULE || l_api_name;
306: BEGIN
307: if g_debug_stmt then
308: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_bb_id ' , p_attributes.timecard_bb_id);
309: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_bb_ovn ' , p_attributes.timecard_bb_ovn);
310: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_start_time ' , p_attributes.timecard_start_time);
311: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_stop_time ' , p_attributes.timecard_stop_time);
312: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_approval_status ', p_attributes.timecard_approval_status);

Line 309: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_bb_ovn ' , p_attributes.timecard_bb_ovn);

305: l_log_head CONSTANT VARCHAR2(100) := G_LOG_MODULE || l_api_name;
306: BEGIN
307: if g_debug_stmt then
308: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_bb_id ' , p_attributes.timecard_bb_id);
309: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_bb_ovn ' , p_attributes.timecard_bb_ovn);
310: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_start_time ' , p_attributes.timecard_start_time);
311: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_stop_time ' , p_attributes.timecard_stop_time);
312: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_approval_status ', p_attributes.timecard_approval_status);
313: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_approval_date ' , p_attributes.timecard_approval_date);

Line 310: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_start_time ' , p_attributes.timecard_start_time);

306: BEGIN
307: if g_debug_stmt then
308: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_bb_id ' , p_attributes.timecard_bb_id);
309: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_bb_ovn ' , p_attributes.timecard_bb_ovn);
310: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_start_time ' , p_attributes.timecard_start_time);
311: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_stop_time ' , p_attributes.timecard_stop_time);
312: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_approval_status ', p_attributes.timecard_approval_status);
313: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_approval_date ' , p_attributes.timecard_approval_date);
314: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_submission_date ', p_attributes.timecard_submission_date);

Line 311: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_stop_time ' , p_attributes.timecard_stop_time);

307: if g_debug_stmt then
308: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_bb_id ' , p_attributes.timecard_bb_id);
309: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_bb_ovn ' , p_attributes.timecard_bb_ovn);
310: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_start_time ' , p_attributes.timecard_start_time);
311: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_stop_time ' , p_attributes.timecard_stop_time);
312: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_approval_status ', p_attributes.timecard_approval_status);
313: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_approval_date ' , p_attributes.timecard_approval_date);
314: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_submission_date ', p_attributes.timecard_submission_date);
315: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_comment ' , p_attributes.timecard_comment);

Line 312: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_approval_status ', p_attributes.timecard_approval_status);

308: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_bb_id ' , p_attributes.timecard_bb_id);
309: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_bb_ovn ' , p_attributes.timecard_bb_ovn);
310: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_start_time ' , p_attributes.timecard_start_time);
311: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_stop_time ' , p_attributes.timecard_stop_time);
312: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_approval_status ', p_attributes.timecard_approval_status);
313: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_approval_date ' , p_attributes.timecard_approval_date);
314: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_submission_date ', p_attributes.timecard_submission_date);
315: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_comment ' , p_attributes.timecard_comment);
316: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-day_bb_id ' , p_attributes.day_bb_id);

Line 313: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_approval_date ' , p_attributes.timecard_approval_date);

309: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_bb_ovn ' , p_attributes.timecard_bb_ovn);
310: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_start_time ' , p_attributes.timecard_start_time);
311: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_stop_time ' , p_attributes.timecard_stop_time);
312: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_approval_status ', p_attributes.timecard_approval_status);
313: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_approval_date ' , p_attributes.timecard_approval_date);
314: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_submission_date ', p_attributes.timecard_submission_date);
315: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_comment ' , p_attributes.timecard_comment);
316: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-day_bb_id ' , p_attributes.day_bb_id);
317: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-day_start_time ' , p_attributes.day_start_time);

Line 314: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_submission_date ', p_attributes.timecard_submission_date);

310: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_start_time ' , p_attributes.timecard_start_time);
311: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_stop_time ' , p_attributes.timecard_stop_time);
312: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_approval_status ', p_attributes.timecard_approval_status);
313: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_approval_date ' , p_attributes.timecard_approval_date);
314: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_submission_date ', p_attributes.timecard_submission_date);
315: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_comment ' , p_attributes.timecard_comment);
316: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-day_bb_id ' , p_attributes.day_bb_id);
317: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-day_start_time ' , p_attributes.day_start_time);
318: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_bb_id ' , p_attributes.detail_bb_id);

Line 315: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_comment ' , p_attributes.timecard_comment);

311: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_stop_time ' , p_attributes.timecard_stop_time);
312: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_approval_status ', p_attributes.timecard_approval_status);
313: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_approval_date ' , p_attributes.timecard_approval_date);
314: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_submission_date ', p_attributes.timecard_submission_date);
315: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_comment ' , p_attributes.timecard_comment);
316: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-day_bb_id ' , p_attributes.day_bb_id);
317: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-day_start_time ' , p_attributes.day_start_time);
318: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_bb_id ' , p_attributes.detail_bb_id);
319: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_bb_ovn ' , p_attributes.detail_bb_ovn);

Line 316: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-day_bb_id ' , p_attributes.day_bb_id);

312: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_approval_status ', p_attributes.timecard_approval_status);
313: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_approval_date ' , p_attributes.timecard_approval_date);
314: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_submission_date ', p_attributes.timecard_submission_date);
315: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_comment ' , p_attributes.timecard_comment);
316: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-day_bb_id ' , p_attributes.day_bb_id);
317: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-day_start_time ' , p_attributes.day_start_time);
318: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_bb_id ' , p_attributes.detail_bb_id);
319: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_bb_ovn ' , p_attributes.detail_bb_ovn);
320: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_type ' , p_attributes.detail_type);

Line 317: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-day_start_time ' , p_attributes.day_start_time);

313: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_approval_date ' , p_attributes.timecard_approval_date);
314: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_submission_date ', p_attributes.timecard_submission_date);
315: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_comment ' , p_attributes.timecard_comment);
316: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-day_bb_id ' , p_attributes.day_bb_id);
317: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-day_start_time ' , p_attributes.day_start_time);
318: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_bb_id ' , p_attributes.detail_bb_id);
319: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_bb_ovn ' , p_attributes.detail_bb_ovn);
320: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_type ' , p_attributes.detail_type);
321: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_measure ' , p_attributes.detail_measure);

Line 318: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_bb_id ' , p_attributes.detail_bb_id);

314: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_submission_date ', p_attributes.timecard_submission_date);
315: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_comment ' , p_attributes.timecard_comment);
316: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-day_bb_id ' , p_attributes.day_bb_id);
317: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-day_start_time ' , p_attributes.day_start_time);
318: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_bb_id ' , p_attributes.detail_bb_id);
319: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_bb_ovn ' , p_attributes.detail_bb_ovn);
320: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_type ' , p_attributes.detail_type);
321: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_measure ' , p_attributes.detail_measure);
322: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_start_time ' , p_attributes.detail_start_time);

Line 319: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_bb_ovn ' , p_attributes.detail_bb_ovn);

315: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-timecard_comment ' , p_attributes.timecard_comment);
316: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-day_bb_id ' , p_attributes.day_bb_id);
317: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-day_start_time ' , p_attributes.day_start_time);
318: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_bb_id ' , p_attributes.detail_bb_id);
319: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_bb_ovn ' , p_attributes.detail_bb_ovn);
320: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_type ' , p_attributes.detail_type);
321: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_measure ' , p_attributes.detail_measure);
322: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_start_time ' , p_attributes.detail_start_time);
323: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_stop_time ' , p_attributes.detail_stop_time);

Line 320: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_type ' , p_attributes.detail_type);

316: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-day_bb_id ' , p_attributes.day_bb_id);
317: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-day_start_time ' , p_attributes.day_start_time);
318: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_bb_id ' , p_attributes.detail_bb_id);
319: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_bb_ovn ' , p_attributes.detail_bb_ovn);
320: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_type ' , p_attributes.detail_type);
321: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_measure ' , p_attributes.detail_measure);
322: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_start_time ' , p_attributes.detail_start_time);
323: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_stop_time ' , p_attributes.detail_stop_time);
324: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_uom ' , p_attributes.detail_uom);

Line 321: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_measure ' , p_attributes.detail_measure);

317: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-day_start_time ' , p_attributes.day_start_time);
318: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_bb_id ' , p_attributes.detail_bb_id);
319: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_bb_ovn ' , p_attributes.detail_bb_ovn);
320: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_type ' , p_attributes.detail_type);
321: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_measure ' , p_attributes.detail_measure);
322: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_start_time ' , p_attributes.detail_start_time);
323: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_stop_time ' , p_attributes.detail_stop_time);
324: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_uom ' , p_attributes.detail_uom);
325: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_changed ' , p_attributes.detail_changed);

Line 322: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_start_time ' , p_attributes.detail_start_time);

318: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_bb_id ' , p_attributes.detail_bb_id);
319: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_bb_ovn ' , p_attributes.detail_bb_ovn);
320: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_type ' , p_attributes.detail_type);
321: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_measure ' , p_attributes.detail_measure);
322: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_start_time ' , p_attributes.detail_start_time);
323: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_stop_time ' , p_attributes.detail_stop_time);
324: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_uom ' , p_attributes.detail_uom);
325: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_changed ' , p_attributes.detail_changed);
326: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_new ' , p_attributes.detail_new);

Line 323: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_stop_time ' , p_attributes.detail_stop_time);

319: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_bb_ovn ' , p_attributes.detail_bb_ovn);
320: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_type ' , p_attributes.detail_type);
321: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_measure ' , p_attributes.detail_measure);
322: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_start_time ' , p_attributes.detail_start_time);
323: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_stop_time ' , p_attributes.detail_stop_time);
324: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_uom ' , p_attributes.detail_uom);
325: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_changed ' , p_attributes.detail_changed);
326: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_new ' , p_attributes.detail_new);
327: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_deleted ' , p_attributes.detail_deleted);

Line 324: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_uom ' , p_attributes.detail_uom);

320: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_type ' , p_attributes.detail_type);
321: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_measure ' , p_attributes.detail_measure);
322: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_start_time ' , p_attributes.detail_start_time);
323: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_stop_time ' , p_attributes.detail_stop_time);
324: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_uom ' , p_attributes.detail_uom);
325: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_changed ' , p_attributes.detail_changed);
326: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_new ' , p_attributes.detail_new);
327: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_deleted ' , p_attributes.detail_deleted);
328: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_date_from ' , p_attributes.detail_date_from);

Line 325: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_changed ' , p_attributes.detail_changed);

321: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_measure ' , p_attributes.detail_measure);
322: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_start_time ' , p_attributes.detail_start_time);
323: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_stop_time ' , p_attributes.detail_stop_time);
324: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_uom ' , p_attributes.detail_uom);
325: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_changed ' , p_attributes.detail_changed);
326: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_new ' , p_attributes.detail_new);
327: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_deleted ' , p_attributes.detail_deleted);
328: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_date_from ' , p_attributes.detail_date_from);
329: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_date_to ' , p_attributes.detail_date_to);

Line 326: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_new ' , p_attributes.detail_new);

322: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_start_time ' , p_attributes.detail_start_time);
323: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_stop_time ' , p_attributes.detail_stop_time);
324: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_uom ' , p_attributes.detail_uom);
325: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_changed ' , p_attributes.detail_changed);
326: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_new ' , p_attributes.detail_new);
327: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_deleted ' , p_attributes.detail_deleted);
328: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_date_from ' , p_attributes.detail_date_from);
329: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_date_to ' , p_attributes.detail_date_to);
330: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-resource_id ' , p_attributes.resource_id);

Line 327: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_deleted ' , p_attributes.detail_deleted);

323: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_stop_time ' , p_attributes.detail_stop_time);
324: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_uom ' , p_attributes.detail_uom);
325: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_changed ' , p_attributes.detail_changed);
326: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_new ' , p_attributes.detail_new);
327: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_deleted ' , p_attributes.detail_deleted);
328: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_date_from ' , p_attributes.detail_date_from);
329: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_date_to ' , p_attributes.detail_date_to);
330: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-resource_id ' , p_attributes.resource_id);
331: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_number ' , p_attributes.po_number);

Line 328: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_date_from ' , p_attributes.detail_date_from);

324: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_uom ' , p_attributes.detail_uom);
325: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_changed ' , p_attributes.detail_changed);
326: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_new ' , p_attributes.detail_new);
327: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_deleted ' , p_attributes.detail_deleted);
328: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_date_from ' , p_attributes.detail_date_from);
329: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_date_to ' , p_attributes.detail_date_to);
330: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-resource_id ' , p_attributes.resource_id);
331: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_number ' , p_attributes.po_number);
332: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_header_id ' , p_attributes.po_header_id);

Line 329: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_date_to ' , p_attributes.detail_date_to);

325: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_changed ' , p_attributes.detail_changed);
326: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_new ' , p_attributes.detail_new);
327: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_deleted ' , p_attributes.detail_deleted);
328: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_date_from ' , p_attributes.detail_date_from);
329: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_date_to ' , p_attributes.detail_date_to);
330: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-resource_id ' , p_attributes.resource_id);
331: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_number ' , p_attributes.po_number);
332: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_header_id ' , p_attributes.po_header_id);
333: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_line ' , p_attributes.po_line);

Line 330: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-resource_id ' , p_attributes.resource_id);

326: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_new ' , p_attributes.detail_new);
327: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_deleted ' , p_attributes.detail_deleted);
328: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_date_from ' , p_attributes.detail_date_from);
329: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_date_to ' , p_attributes.detail_date_to);
330: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-resource_id ' , p_attributes.resource_id);
331: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_number ' , p_attributes.po_number);
332: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_header_id ' , p_attributes.po_header_id);
333: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_line ' , p_attributes.po_line);
334: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_line_id ' , p_attributes.po_line_id);

Line 331: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_number ' , p_attributes.po_number);

327: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_deleted ' , p_attributes.detail_deleted);
328: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_date_from ' , p_attributes.detail_date_from);
329: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_date_to ' , p_attributes.detail_date_to);
330: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-resource_id ' , p_attributes.resource_id);
331: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_number ' , p_attributes.po_number);
332: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_header_id ' , p_attributes.po_header_id);
333: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_line ' , p_attributes.po_line);
334: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_line_id ' , p_attributes.po_line_id);
335: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_line_location_id ' , p_attributes.po_line_location_id);

Line 332: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_header_id ' , p_attributes.po_header_id);

328: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_date_from ' , p_attributes.detail_date_from);
329: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_date_to ' , p_attributes.detail_date_to);
330: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-resource_id ' , p_attributes.resource_id);
331: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_number ' , p_attributes.po_number);
332: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_header_id ' , p_attributes.po_header_id);
333: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_line ' , p_attributes.po_line);
334: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_line_id ' , p_attributes.po_line_id);
335: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_line_location_id ' , p_attributes.po_line_location_id);
336: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_distribution_id ' , p_attributes.po_distribution_id);

Line 333: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_line ' , p_attributes.po_line);

329: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-detail_date_to ' , p_attributes.detail_date_to);
330: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-resource_id ' , p_attributes.resource_id);
331: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_number ' , p_attributes.po_number);
332: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_header_id ' , p_attributes.po_header_id);
333: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_line ' , p_attributes.po_line);
334: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_line_id ' , p_attributes.po_line_id);
335: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_line_location_id ' , p_attributes.po_line_location_id);
336: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_distribution_id ' , p_attributes.po_distribution_id);
337: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-project_id ' , p_attributes.project_id);

Line 334: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_line_id ' , p_attributes.po_line_id);

330: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-resource_id ' , p_attributes.resource_id);
331: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_number ' , p_attributes.po_number);
332: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_header_id ' , p_attributes.po_header_id);
333: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_line ' , p_attributes.po_line);
334: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_line_id ' , p_attributes.po_line_id);
335: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_line_location_id ' , p_attributes.po_line_location_id);
336: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_distribution_id ' , p_attributes.po_distribution_id);
337: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-project_id ' , p_attributes.project_id);
338: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-task_id ' , p_attributes.task_id);

Line 335: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_line_location_id ' , p_attributes.po_line_location_id);

331: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_number ' , p_attributes.po_number);
332: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_header_id ' , p_attributes.po_header_id);
333: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_line ' , p_attributes.po_line);
334: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_line_id ' , p_attributes.po_line_id);
335: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_line_location_id ' , p_attributes.po_line_location_id);
336: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_distribution_id ' , p_attributes.po_distribution_id);
337: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-project_id ' , p_attributes.project_id);
338: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-task_id ' , p_attributes.task_id);
339: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_price_type ' , p_attributes.po_price_type);

Line 336: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_distribution_id ' , p_attributes.po_distribution_id);

332: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_header_id ' , p_attributes.po_header_id);
333: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_line ' , p_attributes.po_line);
334: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_line_id ' , p_attributes.po_line_id);
335: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_line_location_id ' , p_attributes.po_line_location_id);
336: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_distribution_id ' , p_attributes.po_distribution_id);
337: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-project_id ' , p_attributes.project_id);
338: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-task_id ' , p_attributes.task_id);
339: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_price_type ' , p_attributes.po_price_type);
340: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_price_type_display ' , p_attributes.po_price_type_display);

Line 337: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-project_id ' , p_attributes.project_id);

333: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_line ' , p_attributes.po_line);
334: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_line_id ' , p_attributes.po_line_id);
335: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_line_location_id ' , p_attributes.po_line_location_id);
336: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_distribution_id ' , p_attributes.po_distribution_id);
337: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-project_id ' , p_attributes.project_id);
338: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-task_id ' , p_attributes.task_id);
339: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_price_type ' , p_attributes.po_price_type);
340: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_price_type_display ' , p_attributes.po_price_type_display);
341: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_billable_amount ' , p_attributes.po_billable_amount);

Line 338: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-task_id ' , p_attributes.task_id);

334: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_line_id ' , p_attributes.po_line_id);
335: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_line_location_id ' , p_attributes.po_line_location_id);
336: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_distribution_id ' , p_attributes.po_distribution_id);
337: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-project_id ' , p_attributes.project_id);
338: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-task_id ' , p_attributes.task_id);
339: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_price_type ' , p_attributes.po_price_type);
340: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_price_type_display ' , p_attributes.po_price_type_display);
341: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_billable_amount ' , p_attributes.po_billable_amount);
342: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_receipt_date ' , p_attributes.po_receipt_date);

Line 339: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_price_type ' , p_attributes.po_price_type);

335: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_line_location_id ' , p_attributes.po_line_location_id);
336: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_distribution_id ' , p_attributes.po_distribution_id);
337: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-project_id ' , p_attributes.project_id);
338: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-task_id ' , p_attributes.task_id);
339: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_price_type ' , p_attributes.po_price_type);
340: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_price_type_display ' , p_attributes.po_price_type_display);
341: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_billable_amount ' , p_attributes.po_billable_amount);
342: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_receipt_date ' , p_attributes.po_receipt_date);
343: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-lpn_group_id ' , p_attributes.lpn_group_id);

Line 340: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_price_type_display ' , p_attributes.po_price_type_display);

336: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_distribution_id ' , p_attributes.po_distribution_id);
337: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-project_id ' , p_attributes.project_id);
338: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-task_id ' , p_attributes.task_id);
339: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_price_type ' , p_attributes.po_price_type);
340: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_price_type_display ' , p_attributes.po_price_type_display);
341: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_billable_amount ' , p_attributes.po_billable_amount);
342: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_receipt_date ' , p_attributes.po_receipt_date);
343: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-lpn_group_id ' , p_attributes.lpn_group_id);
344: end if;

Line 341: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_billable_amount ' , p_attributes.po_billable_amount);

337: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-project_id ' , p_attributes.project_id);
338: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-task_id ' , p_attributes.task_id);
339: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_price_type ' , p_attributes.po_price_type);
340: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_price_type_display ' , p_attributes.po_price_type_display);
341: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_billable_amount ' , p_attributes.po_billable_amount);
342: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_receipt_date ' , p_attributes.po_receipt_date);
343: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-lpn_group_id ' , p_attributes.lpn_group_id);
344: end if;
345:

Line 342: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_receipt_date ' , p_attributes.po_receipt_date);

338: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-task_id ' , p_attributes.task_id);
339: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_price_type ' , p_attributes.po_price_type);
340: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_price_type_display ' , p_attributes.po_price_type_display);
341: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_billable_amount ' , p_attributes.po_billable_amount);
342: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_receipt_date ' , p_attributes.po_receipt_date);
343: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-lpn_group_id ' , p_attributes.lpn_group_id);
344: end if;
345:
346: END debug_TimecardAttributesRec;

Line 343: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-lpn_group_id ' , p_attributes.lpn_group_id);

339: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_price_type ' , p_attributes.po_price_type);
340: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_price_type_display ' , p_attributes.po_price_type_display);
341: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_billable_amount ' , p_attributes.po_billable_amount);
342: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-po_receipt_date ' , p_attributes.po_receipt_date);
343: PO_DEBUG.debug_var(l_log_head,l_progress,l_new_old ||'-lpn_group_id ' , p_attributes.lpn_group_id);
344: end if;
345:
346: END debug_TimecardAttributesRec;
347:

Line 2512: PO_DEBUG.debug_stmt(l_log_head,l_progress,'Printing p_attributes');

2508: );
2509: RAISE DERIVE_ROI_VALUES_FAILED;
2510: END;
2511: IF g_debug_stmt THEN
2512: PO_DEBUG.debug_stmt(l_log_head,l_progress,'Printing p_attributes');
2513: RCV_HXT_GRP.debug_TimecardAttributesRec(l_log_head, p_attributes,'NEW');
2514: PO_DEBUG.debug_stmt(l_log_head,l_progress,'Printing p_old_attributes');
2515: RCV_HXT_GRP.debug_TimecardAttributesRec(l_log_head, p_old_attributes,'OLD');
2516: END IF;

Line 2514: PO_DEBUG.debug_stmt(l_log_head,l_progress,'Printing p_old_attributes');

2510: END;
2511: IF g_debug_stmt THEN
2512: PO_DEBUG.debug_stmt(l_log_head,l_progress,'Printing p_attributes');
2513: RCV_HXT_GRP.debug_TimecardAttributesRec(l_log_head, p_attributes,'NEW');
2514: PO_DEBUG.debug_stmt(l_log_head,l_progress,'Printing p_old_attributes');
2515: RCV_HXT_GRP.debug_TimecardAttributesRec(l_log_head, p_old_attributes,'OLD');
2516: END IF;
2517: -- find the parent transactions, assume the old block has the same parents
2518: BEGIN

Line 3257: PO_DEBUG.debug_var(l_log_head,l_progress,'timecard_approval_date', p_dst_attributes.timecard_approval_date);

3253: p_dst_attributes.timecard_approval_date := HXC_INTEGRATION_LAYER_V1_GRP.get_timecard_approval_date( p_timecard_id => p_dst_attributes.timecard_bb_id );
3254: p_dst_attributes.timecard_submission_date := HXC_INTEGRATION_LAYER_V1_GRP.get_timecard_submission_date( p_timecard_id => p_dst_attributes.timecard_bb_id );
3255: p_dst_attributes.timecard_approval_status := HXC_INTEGRATION_LAYER_V1_GRP.get_timecard_approval_status( p_timecard_id => p_dst_attributes.timecard_bb_id );
3256: IF g_debug_stmt THEN
3257: PO_DEBUG.debug_var(l_log_head,l_progress,'timecard_approval_date', p_dst_attributes.timecard_approval_date);
3258: PO_DEBUG.debug_var(l_log_head,l_progress,'timecard_submission_date', p_dst_attributes.timecard_submission_date);
3259: PO_DEBUG.debug_var(l_log_head,l_progress,'timecard_approval_status', p_dst_attributes.timecard_approval_status);
3260: END IF;
3261: END;

Line 3258: PO_DEBUG.debug_var(l_log_head,l_progress,'timecard_submission_date', p_dst_attributes.timecard_submission_date);

3254: p_dst_attributes.timecard_submission_date := HXC_INTEGRATION_LAYER_V1_GRP.get_timecard_submission_date( p_timecard_id => p_dst_attributes.timecard_bb_id );
3255: p_dst_attributes.timecard_approval_status := HXC_INTEGRATION_LAYER_V1_GRP.get_timecard_approval_status( p_timecard_id => p_dst_attributes.timecard_bb_id );
3256: IF g_debug_stmt THEN
3257: PO_DEBUG.debug_var(l_log_head,l_progress,'timecard_approval_date', p_dst_attributes.timecard_approval_date);
3258: PO_DEBUG.debug_var(l_log_head,l_progress,'timecard_submission_date', p_dst_attributes.timecard_submission_date);
3259: PO_DEBUG.debug_var(l_log_head,l_progress,'timecard_approval_status', p_dst_attributes.timecard_approval_status);
3260: END IF;
3261: END;
3262:

Line 3259: PO_DEBUG.debug_var(l_log_head,l_progress,'timecard_approval_status', p_dst_attributes.timecard_approval_status);

3255: p_dst_attributes.timecard_approval_status := HXC_INTEGRATION_LAYER_V1_GRP.get_timecard_approval_status( p_timecard_id => p_dst_attributes.timecard_bb_id );
3256: IF g_debug_stmt THEN
3257: PO_DEBUG.debug_var(l_log_head,l_progress,'timecard_approval_date', p_dst_attributes.timecard_approval_date);
3258: PO_DEBUG.debug_var(l_log_head,l_progress,'timecard_submission_date', p_dst_attributes.timecard_submission_date);
3259: PO_DEBUG.debug_var(l_log_head,l_progress,'timecard_approval_status', p_dst_attributes.timecard_approval_status);
3260: END IF;
3261: END;
3262:
3263: RCV_HXT_GRP.string( log_level => FND_LOG.LEVEL_STATEMENT