DBA Data[Home] [Help]

APPS.RCV_HXT_GRP dependencies on PO_DEBUG

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

2477: );
2478: RAISE DERIVE_ROI_VALUES_FAILED;
2479: END;
2480: IF g_debug_stmt THEN
2481: PO_DEBUG.debug_stmt(l_log_head,l_progress,'Printing p_attributes');
2482: RCV_HXT_GRP.debug_TimecardAttributesRec(l_log_head, p_attributes,'NEW');
2483: PO_DEBUG.debug_stmt(l_log_head,l_progress,'Printing p_old_attributes');
2484: RCV_HXT_GRP.debug_TimecardAttributesRec(l_log_head, p_old_attributes,'OLD');
2485: end if;

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

2479: END;
2480: IF g_debug_stmt THEN
2481: PO_DEBUG.debug_stmt(l_log_head,l_progress,'Printing p_attributes');
2482: RCV_HXT_GRP.debug_TimecardAttributesRec(l_log_head, p_attributes,'NEW');
2483: PO_DEBUG.debug_stmt(l_log_head,l_progress,'Printing p_old_attributes');
2484: RCV_HXT_GRP.debug_TimecardAttributesRec(l_log_head, p_old_attributes,'OLD');
2485: end if;
2486: -- find the parent transactions, assume the old block has the same parents
2487: BEGIN

Line 3196: PO_DEBUG.debug_var(l_log_head,l_progress,'timecard_approval_date',

3192: p_dst_attributes.timecard_approval_date := HXC_INTEGRATION_LAYER_V1_GRP.get_timecard_approval_date( p_timecard_id => p_dst_attributes.timecard_bb_id );
3193: p_dst_attributes.timecard_submission_date := HXC_INTEGRATION_LAYER_V1_GRP.get_timecard_submission_date( p_timecard_id => p_dst_attributes.timecard_bb_id );
3194: p_dst_attributes.timecard_approval_status := HXC_INTEGRATION_LAYER_V1_GRP.get_timecard_approval_status( p_timecard_id => p_dst_attributes.timecard_bb_id );
3195: IF g_debug_stmt THEN
3196: PO_DEBUG.debug_var(l_log_head,l_progress,'timecard_approval_date',
3197: p_dst_attributes.timecard_approval_date);
3198: PO_DEBUG.debug_var(l_log_head,l_progress,'timecard_submission_date',
3199: p_dst_attributes.timecard_submission_date);
3200: PO_DEBUG.debug_var(l_log_head,l_progress,'timecard_approval_status',

Line 3198: PO_DEBUG.debug_var(l_log_head,l_progress,'timecard_submission_date',

3194: p_dst_attributes.timecard_approval_status := HXC_INTEGRATION_LAYER_V1_GRP.get_timecard_approval_status( p_timecard_id => p_dst_attributes.timecard_bb_id );
3195: IF g_debug_stmt THEN
3196: PO_DEBUG.debug_var(l_log_head,l_progress,'timecard_approval_date',
3197: p_dst_attributes.timecard_approval_date);
3198: PO_DEBUG.debug_var(l_log_head,l_progress,'timecard_submission_date',
3199: p_dst_attributes.timecard_submission_date);
3200: PO_DEBUG.debug_var(l_log_head,l_progress,'timecard_approval_status',
3201: p_dst_attributes.timecard_approval_status);
3202: END IF;

Line 3200: PO_DEBUG.debug_var(l_log_head,l_progress,'timecard_approval_status',

3196: PO_DEBUG.debug_var(l_log_head,l_progress,'timecard_approval_date',
3197: p_dst_attributes.timecard_approval_date);
3198: PO_DEBUG.debug_var(l_log_head,l_progress,'timecard_submission_date',
3199: p_dst_attributes.timecard_submission_date);
3200: PO_DEBUG.debug_var(l_log_head,l_progress,'timecard_approval_status',
3201: p_dst_attributes.timecard_approval_status);
3202: END IF;
3203: END;
3204: