DBA Data[Home] [Help]

APPS.INL_MATCH_GRP dependencies on INL_LOGGING_PVT

Line 44: INL_LOGGING_PVT.Log_BeginProc (

40: l_current_reversal_flag VARCHAR2(1); --Bug#14604983
41:
42: BEGIN
43: -- Standard Beginning of Procedure/Function Logging
44: INL_LOGGING_PVT.Log_BeginProc (
45: p_module_name => g_module_name,
46: p_procedure_name => l_api_name
47: );
48:

Line 83: INL_LOGGING_PVT.Log_Variable (

79: l_current_reversal_flag := NVL(p_matches_int_tbl(i).reversal_flag,'N'); --Bug#14604983
80: END IF;
81:
82: l_debug_info := 'Next Match_id';
83: INL_LOGGING_PVT.Log_Variable (
84: p_module_name => g_module_name,
85: p_procedure_name => l_api_name,
86: p_var_name => l_debug_info,
87: p_var_value => p_matches_int_tbl(i).match_id

Line 190: INL_logging_pvt.Log_EndProc (

186: p_data => x_msg_data
187: );
188:
189: -- Standard End of Procedure/Function Logging
190: INL_logging_pvt.Log_EndProc (
191: p_module_name => g_module_name,
192: p_procedure_name => l_api_name
193: );
194: EXCEPTION

Line 197: INL_LOGGING_PVT.Log_ExpecError (

193: );
194: EXCEPTION
195: WHEN FND_API.G_EXC_ERROR THEN
196: -- Standard Expected Error Logging
197: INL_LOGGING_PVT.Log_ExpecError (
198: p_module_name => g_module_name,
199: p_procedure_name => l_api_name
200: );
201: ROLLBACK TO Create_MatchIntLines_GRP;

Line 210: INL_LOGGING_PVT.Log_UnexpecError (

206: p_data => x_msg_data
207: );
208: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
209: -- Standard Unexpected Error Logging
210: INL_LOGGING_PVT.Log_UnexpecError (
211: p_module_name => g_module_name,
212: p_procedure_name => l_api_name
213: );
214: ROLLBACK TO Create_MatchIntLines_GRP;

Line 223: INL_LOGGING_PVT.Log_UnexpecError (

219: p_data => x_msg_data
220: );
221: WHEN OTHERS THEN
222: -- Standard Unexpected Error Logging
223: INL_LOGGING_PVT.Log_UnexpecError (
224: p_module_name => g_module_name,
225: p_procedure_name => l_api_name
226: );
227: ROLLBACK TO Create_MatchIntLines_GRP;

Line 355: INL_LOGGING_PVT.Log_BeginProc (

351: l_count_to_match_amt NUMBER;
352: BEGIN
353:
354: -- Standard Beginning of Procedure/Function Logging
355: INL_LOGGING_PVT.Log_BeginProc (
356: p_module_name => g_module_name,
357: p_procedure_name => l_api_name
358: );
359:

Line 361: INL_LOGGING_PVT.Log_Statement (

357: p_procedure_name => l_api_name
358: );
359:
360: l_debug_info := 'Begining Create_MatchesFromAP';
361: INL_LOGGING_PVT.Log_Statement (
362: p_module_name => g_module_name,
363: p_procedure_name => l_api_name,
364: p_debug_info => l_debug_info
365: );

Line 391: INL_LOGGING_PVT.Log_Statement (

387:
388: i := 0;
389: -- Getting AP Distribution Lines
390: l_debug_info := 'Getting AP Distribution Lines';
391: INL_LOGGING_PVT.Log_Statement (
392: p_module_name => g_module_name,
393: p_procedure_name => l_api_name,
394: p_debug_info => l_debug_info
395: );

Line 400: INL_LOGGING_PVT.Log_Statement (

396: FOR c_distr_rec IN c_distr(l_sysdate) LOOP
397: i := i + 1;
398:
399: l_debug_info := 'c_distr_rec.line_type_lookup_code: ' || c_distr_rec.line_type_lookup_code||' : '||c_distr_rec.count_recs; --Bug#14604983
400: INL_LOGGING_PVT.Log_Statement (
401: p_module_name => g_module_name,
402: p_procedure_name => l_api_name,
403: p_debug_info => l_debug_info
404: );

Line 418: INL_LOGGING_PVT.Log_Statement (

414: l_line_amount := c_distr_rec.distr_amount;
415: END IF;
416:
417: l_debug_info := 'Invoice Distribution id('||i||'): '||c_distr_rec.invoice_distribution_id;
418: INL_LOGGING_PVT.Log_Statement (
419: p_module_name => g_module_name,
420: p_procedure_name => l_api_name,
421: p_debug_info => l_debug_info
422: );

Line 438: INL_LOGGING_PVT.Log_Statement (

434: OR c_distr_rec.correction_type = 'ITEM')
435: THEN
436: -- Correction
437: l_debug_info := 'It is a correction. Type: '||c_distr_rec.correction_type;
438: INL_LOGGING_PVT.Log_Statement (
439: p_module_name => g_module_name,
440: p_procedure_name => l_api_name,
441: p_debug_info => l_debug_info
442: );

Line 448: INL_LOGGING_PVT.Log_Statement (

444: l_matches_int_tbl(i).to_parent_table_name := 'AP_INVOICE_DISTRIBUTIONS';
445: l_matches_int_tbl(i).to_parent_table_id := c_distr_rec.corrected_invoice_dist_id;
446: ELSE
447: l_debug_info := 'It is not a correction.';
448: INL_LOGGING_PVT.Log_Statement (
449: p_module_name => g_module_name,
450: p_procedure_name => l_api_name,
451: p_debug_info => l_debug_info
452: );

Line 475: INL_LOGGING_PVT.Log_Variable (

471: ELSE
472: l_matches_int_tbl(i).matched_qty := NULL;
473:
474: l_debug_info := 'c_distr_rec.line_type';
475: INL_LOGGING_PVT.Log_Variable (
476: p_module_name => g_module_name,
477: p_procedure_name => l_api_name,
478: p_var_name => l_debug_info,
479: p_var_value => c_distr_rec.line_type

Line 483: INL_LOGGING_PVT.Log_Variable (

479: p_var_value => c_distr_rec.line_type
480: );
481:
482: l_debug_info := 'c_distr_rec.correction_type';
483: INL_LOGGING_PVT.Log_Variable (
484: p_module_name => g_module_name,
485: p_procedure_name => l_api_name,
486: p_var_name => l_debug_info,
487: p_var_value => c_distr_rec.correction_type

Line 504: INL_LOGGING_PVT.Log_Variable (

500:
501: IF c_distr_rec.line_type = 'CHARGE' OR c_distr_rec.correction_type = 'CHARGE' THEN
502:
503: l_debug_info := 'l_count_invoices_with_charge';
504: INL_LOGGING_PVT.Log_Variable (
505: p_module_name => g_module_name,
506: p_procedure_name => l_api_name,
507: p_var_name => l_debug_info,
508: p_var_value => l_count_invoices_with_charge

Line 520: INL_LOGGING_PVT.Log_Variable (

516: l_matches_int_tbl(i).nrec_tax_amt := NULL;
517: l_matches_int_tbl(i).tax_amt_included_flag := NULL;
518: ELSE
519: l_debug_info := 'c_distr_rec.charge_applicable_to_dist_id';
520: INL_LOGGING_PVT.Log_Variable (
521: p_module_name => g_module_name,
522: p_procedure_name => l_api_name,
523: p_var_name => l_debug_info,
524: p_var_value => c_distr_rec.charge_applicable_to_dist_id

Line 527: INL_LOGGING_PVT.Log_Variable (

523: p_var_name => l_debug_info,
524: p_var_value => c_distr_rec.charge_applicable_to_dist_id
525: );
526: l_debug_info := 'c_distr_rec.invoice_id';
527: INL_LOGGING_PVT.Log_Variable (
528: p_module_name => g_module_name,
529: p_procedure_name => l_api_name,
530: p_var_name => l_debug_info,
531: p_var_value => c_distr_rec.invoice_id

Line 578: INL_LOGGING_PVT.Log_Statement (

574: l_matches_int_tbl(i).matched_curr_conversion_date := c_distr_rec.curr_date;
575: l_matches_int_tbl(i).matched_curr_conversion_rate := c_distr_rec.curr_rate;
576: l_matches_int_tbl(i).reversal_flag := c_distr_rec.reversal_flag;--Bug#14604983
577: l_debug_info := 'End Loop';
578: INL_LOGGING_PVT.Log_Statement (
579: p_module_name => g_module_name,
580: p_procedure_name => l_api_name,
581: p_debug_info => l_debug_info
582: );

Line 587: INL_LOGGING_PVT.Log_Statement (

583:
584: END LOOP;
585:
586: l_debug_info := 'Call Create_MatchIntLines ';
587: INL_LOGGING_PVT.Log_Statement (
588: p_module_name => g_module_name,
589: p_procedure_name => l_api_name,
590: p_debug_info => l_debug_info
591: );

Line 627: INL_logging_pvt.Log_EndProc (

623: p_data => x_msg_data
624: );
625:
626: -- Standard End of Procedure/Function Logging
627: INL_logging_pvt.Log_EndProc (
628: p_module_name => g_module_name,
629: p_procedure_name => l_api_name
630: );
631: EXCEPTION

Line 634: INL_LOGGING_PVT.Log_ExpecError (

630: );
631: EXCEPTION
632: WHEN FND_API.G_EXC_ERROR THEN
633: -- Standard Expected Error Logging
634: INL_LOGGING_PVT.Log_ExpecError (
635: p_module_name => g_module_name,
636: p_procedure_name => l_api_name
637: );
638: ROLLBACK TO Create_MatchesFromAP_GRP;

Line 647: INL_LOGGING_PVT.Log_UnexpecError (

643: p_data => x_msg_data
644: );
645: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
646: -- Standard Unexpected Error Logging
647: INL_LOGGING_PVT.Log_UnexpecError (
648: p_module_name => g_module_name,
649: p_procedure_name => l_api_name
650: );
651: ROLLBACK TO Create_MatchesFromAP_GRP;

Line 661: INL_LOGGING_PVT.Log_UnexpecError (

657: p_data => x_msg_data
658: );
659: WHEN OTHERS THEN
660: -- Standard Unexpected Error Logging
661: INL_LOGGING_PVT.Log_UnexpecError (
662: p_module_name => g_module_name,
663: p_procedure_name => l_api_name
664: );
665: ROLLBACK TO Create_MatchesFromAP_GRP;