DBA Data[Home] [Help]

APPS.JA_CN_CFSSE_GENERATE_PKG dependencies on FND_REQUEST

Line 209: l_reqid_fsg:=FND_REQUEST.Submit_Request( 'SQLGL'

205: CLOSE C_COMPANY_NAME;
206:
207: --Submit the first concurrent program 'Program - Run Financial Statement Generator',which
208: --will automatically submit another request for the CFS report to generate XML file
209: l_reqid_fsg:=FND_REQUEST.Submit_Request( 'SQLGL'
210: ,'RGRARG'
211: ,''
212: ,''
213: ,FALSE

Line 330: l_reqid_cal := FND_REQUEST.Submit_Request(application => 'JA'

326: -- 'Submit Cash flow statement for small enterprise - Calculation');
327:
328: --Submit the second concurrent program
329: -- 'Cash flow statement for small enterprise - Calculation'
330: l_reqid_cal := FND_REQUEST.Submit_Request(application => 'JA'
331: --,program => 'JACNCFSN'
332: ,program => 'JACNCCEC' --Fix bug# 7481444
333: ,argument1 => p_legal_entity_id
334: ,argument2 => p_ledger_id

Line 382: l_xml_layout := FND_REQUEST.Add_Layout(template_appl_name => 'JA',

378: --As output of Cash flow statement - Combination' is in XML format and
379: --need to associate with XML publisher template automatically,
380: --it is required to set layout before submit the program, bug 5168016
381:
382: l_xml_layout := FND_REQUEST.Add_Layout(template_appl_name => 'JA',
383: template_code => 'JACNCFSS',
384: template_language => p_xml_template_language, --'zh' ('en')
385: template_territory => p_xml_template_territory, --'00' ('US')
386: output_format => p_xml_output_format --'ETEXT' (

Line 389: l_reqid_combination := FND_REQUEST.Submit_Request(application => 'JA',

385: template_territory => p_xml_template_territory, --'00' ('US')
386: output_format => p_xml_output_format --'ETEXT' (
387: );
388:
389: l_reqid_combination := FND_REQUEST.Submit_Request(application => 'JA',
390: program => 'JACNCFSS',
391: argument1 => l_reqid_fsg,
392: argument2 => l_reqid_cal);
393: COMMIT;