DBA Data[Home] [Help]

APPS.JG_ZZ_AUDIT_AP_PKG dependencies on FND_FILE

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

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

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

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

Line 87: fnd_file.put_line(fnd_file.log,'P_REPORT_NAME :'||P_REPORT_NAME);

83:
84: -- Bug#8453182 Start Below code added to get PERIOD_TO end date
85: IF nvl(P_REPORT_NAME,'ZZ') = 'JEESDOCE' then
86:
87: fnd_file.put_line(fnd_file.log,'P_REPORT_NAME :'||P_REPORT_NAME);
88: fnd_file.put_line(fnd_file.log,'Getting period_to information');
89:
90: JG_ZZ_COMMON_PKG.TAX_REGISTRATION(x_tax_registration => l_tax_registration_to
91: ,x_period_start_date => l_period_start_date_to

Line 88: fnd_file.put_line(fnd_file.log,'Getting period_to information');

84: -- Bug#8453182 Start Below code added to get PERIOD_TO end date
85: IF nvl(P_REPORT_NAME,'ZZ') = 'JEESDOCE' then
86:
87: fnd_file.put_line(fnd_file.log,'P_REPORT_NAME :'||P_REPORT_NAME);
88: fnd_file.put_line(fnd_file.log,'Getting period_to information');
89:
90: JG_ZZ_COMMON_PKG.TAX_REGISTRATION(x_tax_registration => l_tax_registration_to
91: ,x_period_start_date => l_period_start_date_to
92: ,x_period_end_date => l_period_end_date_to

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

99: END IF;
100:
101: -- Bug#8453182 End
102:
103: fnd_file.put_line(fnd_file.log,'Calling jg_zz_common_pkg.company_detail');
104: /* JG_ZZ_COMMON_PKG.COMPANY_DETAIL (x_company_name => l_company_name
105: ,x_registration_number => l_registration_number
106: ,x_country => l_country
107: ,x_address1 => l_address1

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

185: );
186: RETURN (TRUE);
187: EXCEPTION
188: WHEN OTHERS THEN
189: fnd_file.put_line(fnd_file.log,'Error while processing Before Report Trigger' || SQLCODE || SUBSTR(SQLERRM,1,200));
190: RETURN (FALSE);
191: END beforeReport;
192: END JG_ZZ_AUDIT_AP_PKG;