DBA Data[Home] [Help]

APPS.JG_ZZ_VAT_ALLOC_PRC_PKG dependencies on JG_ZZ_VAT_REP_UTILITY

Line 406: fnd_file.put_line(fnd_file.log, 'run allocation - before JG_ZZ_VAT_REP_UTILITY.validate_process_initiation');

402: ln_upd_errored_cnt := 0;
403: ln_del_errored_cnt := 0;
404:
405: if gv_debug_flag then
406: fnd_file.put_line(fnd_file.log, 'run allocation - before JG_ZZ_VAT_REP_UTILITY.validate_process_initiation');
407: end if;
408:
409:
410: /* Make a call to utility package which validates and determines whether to proceed further with this process or not */

Line 411: JG_ZZ_VAT_REP_UTILITY.validate_process_initiation(

407: end if;
408:
409:
410: /* Make a call to utility package which validates and determines whether to proceed further with this process or not */
411: JG_ZZ_VAT_REP_UTILITY.validate_process_initiation(
412: pn_vat_reporting_entity_id => pn_vat_reporting_entity_id,
413: pv_tax_calendar_period => pv_tax_calendar_period,
414: pv_source => pv_source,
415: pv_reallocate_flag => pv_reallocate_flag,

Line 428: fnd_file.put_line(fnd_file.log, 'run allocation - Error JG_ZZ_VAT_REP_UTILITY.validate_process_initiation. value-'||lv_return_flag);

424:
425: /* raise error if validation failed */
426: if lv_return_flag in (fnd_api.g_ret_sts_error, fnd_api.g_ret_sts_unexp_error) then
427: if gv_debug_flag then
428: fnd_file.put_line(fnd_file.log, 'run allocation - Error JG_ZZ_VAT_REP_UTILITY.validate_process_initiation. value-'||lv_return_flag);
429: end if;
430:
431: /* print return message;
432: request WARNING (retcode=1), ERROR (retcode=2)*/

Line 913: fnd_file.put_line(fnd_file.log, 'run allocation - before jg_zz_vat_rep_utility.post_process_update.'

909: lv_return_flag := null;
910: lv_return_message := null;
911:
912: if gv_debug_flag then
913: fnd_file.put_line(fnd_file.log, 'run allocation - before jg_zz_vat_rep_utility.post_process_update.'
914: );
915: end if;
916: /* Call the utility API to update allocation_process columns of jg_zz_vat_rep_status table by passing proper values.*/
917: jg_zz_vat_rep_utility.post_process_update(

Line 917: jg_zz_vat_rep_utility.post_process_update(

913: fnd_file.put_line(fnd_file.log, 'run allocation - before jg_zz_vat_rep_utility.post_process_update.'
914: );
915: end if;
916: /* Call the utility API to update allocation_process columns of jg_zz_vat_rep_status table by passing proper values.*/
917: jg_zz_vat_rep_utility.post_process_update(
918: pn_vat_reporting_entity_id => pn_vat_reporting_entity_id,
919: pv_tax_calendar_period => pv_tax_calendar_period,
920: pv_source => lv_extract_source_ledger,
921: pv_process_name => 'ALLOCATION',

Line 930: fnd_file.put_line(fnd_file.log, 'run allocation - after jg_zz_vat_rep_utility.post_process_update.'

926: xv_return_message => lv_return_message
927: );
928:
929: if gv_debug_flag then
930: fnd_file.put_line(fnd_file.log, 'run allocation - after jg_zz_vat_rep_utility.post_process_update.'
931: ||' lv_return_flag:'||lv_return_flag
932: );
933: end if;
934: /* raise error if validation failed */