DBA Data[Home] [Help]

APPS.JG_ZZ_AUDIT_AP_PKG dependencies on FND_FILE

Line 57: fnd_file.put_line(fnd_file.log,'Calling jg_zz_common_pkg.funct_curr_legal');

53: IS
54: BEGIN
55: -- Calling Common Package
56: IF p_debug_flag = 'Y' THEN
57: fnd_file.put_line(fnd_file.log,'Calling jg_zz_common_pkg.funct_curr_legal');
58: END IF;
59:
60: JG_ZZ_COMMON_PKG.FUNCT_CURR_LEGAL(x_func_curr_code => l_func_curr_code
61: ,x_rep_entity_name => l_rep_entity_name

Line 69: fnd_file.put_line(fnd_file.log,'Calling jg_zz_common_pkg.tax_registration');

65: ,pv_period_name => p_period_name
66: ,pn_period_year => p_period_year
67: );
68:
69: fnd_file.put_line(fnd_file.log,'Calling jg_zz_common_pkg.tax_registration');
70: JG_ZZ_COMMON_PKG.TAX_REGISTRATION(x_tax_registration => l_tax_registration
71: ,x_period_start_date => l_period_start_date
72: ,x_period_end_date => l_period_end_date
73: ,x_status => l_status

Line 80: fnd_file.put_line(fnd_file.log,'Calling jg_zz_common_pkg.company_detail');

76: ,pn_period_year => p_period_year
77: ,pv_source => 'AP'
78: );
79:
80: fnd_file.put_line(fnd_file.log,'Calling jg_zz_common_pkg.company_detail');
81: /* JG_ZZ_COMMON_PKG.COMPANY_DETAIL (x_company_name => l_company_name
82: ,x_registration_number => l_registration_number
83: ,x_country => l_country
84: ,x_address1 => l_address1

Line 166: fnd_file.put_line(fnd_file.log,'Error while processing Before Report Trigger' || SQLCODE || SUBSTR(SQLERRM,1,200));

162: );
163: RETURN (TRUE);
164: EXCEPTION
165: WHEN OTHERS THEN
166: fnd_file.put_line(fnd_file.log,'Error while processing Before Report Trigger' || SQLCODE || SUBSTR(SQLERRM,1,200));
167: RETURN (FALSE);
168: END beforeReport;
169: END JG_ZZ_AUDIT_AP_PKG;