DBA Data[Home] [Help]

APPS.JA_CN_GL_EXPORT_PKG dependencies on FND_FILE

Line 111: FND_FILE.put_line(FND_FILE.log, lv_procedure_name ||

107: 'pv_xml_template_language=' || pv_xml_template_language || ',' ||
108: 'pv_xml_template_territory=' || pv_xml_template_territory || ',' ||
109: 'pv_xml_output_format=' || pv_xml_output_format);
110: END IF; --l_proc_level>=l_dbg_level
111: FND_FILE.put_line(FND_FILE.log, lv_procedure_name ||
112: '.parameters:'||
113: 'pn_legal_entity_id=' || pn_legal_entity_id || ',' ||
114: 'pn_chart_of_account_id=' || pn_chart_of_account_id || ',' ||
115: 'pn_ledger_id=' || pn_ledger_id || ',' ||

Line 127: FND_FILE.put_line(FND_FILE.output,'');

123: 'pv_xml_template_territory=' || pv_xml_template_territory || ',' ||
124: 'pv_xml_output_format=' || pv_xml_output_format);
125:
126: --Step1: Generate XML header part
127: FND_FILE.put_line(FND_FILE.output,'');
128: lv_gl_element := '<' || Ja_Cn_Utility.Get_XML_Tag('GENERAL_LEDGER') || ' xsi:schemaLocation="http://sxbw.audit.gov.cn/AccountingSoftwareDataInterfaceStandard/2010/SOE/XMLSchema ' ||
129: Ja_Cn_Utility.Get_XML_Tag('GENERAL_LEDGER') || '.xsd" xmlns:' ||
130: Ja_Cn_Utility.Get_XML_Tag('SOE') || '="http://sxbw.audit.gov.cn/AccountingSoftwareDataInterfaceStandard/2010/SOE/XMLSchema"'||
131: ' xmlns="http://sxbw.audit.gov.cn/AccountingSoftwareDataInterfaceStandard/2010/SOE/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">';

Line 133: FND_FILE.put_line(FND_FILE.output, lv_gl_element);

129: Ja_Cn_Utility.Get_XML_Tag('GENERAL_LEDGER') || '.xsd" xmlns:' ||
130: Ja_Cn_Utility.Get_XML_Tag('SOE') || '="http://sxbw.audit.gov.cn/AccountingSoftwareDataInterfaceStandard/2010/SOE/XMLSchema"'||
131: ' xmlns="http://sxbw.audit.gov.cn/AccountingSoftwareDataInterfaceStandard/2010/SOE/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">';
132:
133: FND_FILE.put_line(FND_FILE.output, lv_gl_element);
134:
135: --Step2: Export GL Basic Information
136: Ja_Cn_Utility.Print_Concurrent_Steps_For_Log('2.1', 'GL_BASIC_INFORMATION');
137: JA_CN_GBI_EXPORT_PKG.Add_GL_Basic_Info(pn_coa_id => pn_chart_of_account_id

Line 194: FND_FILE.put_line(FND_FILE.output

190: ,pv_period_to => pv_period_to
191: ,pn_cfs_report_id => pn_cfs_report_id
192: );
193:
194: FND_FILE.put_line(FND_FILE.output
195: ,Ja_Cn_Utility.Get_XML_Tag('GENERAL_LEDGER'
196: ,Ja_Cn_Utility.GV_TAG_TYPE_END
197: )
198: );

Line 219: FND_FILE.put_line(FND_FILE.log, lv_procedure_name || SQLCODE || SQLERRM);

215: SQLCODE || SQLERRM);
216: END IF; -- (FND_LOG.LEVEL_UNEXPECTED >= FND_LOG.G_CURRENT_RUNTIME_LEVEL)
217: pv_retcode := '2';
218: pv_errbuf := SQLCODE || SQLERRM;
219: FND_FILE.put_line(FND_FILE.log, lv_procedure_name || SQLCODE || SQLERRM);
220:
221: END Export_GL;
222:
223: END JA_CN_GL_EXPORT_PKG;