DBA Data[Home] [Help]

APPS.LNS_DISTRIBUTIONS_PUB dependencies on FND_REQUEST

Line 4509: FND_REQUEST.SET_ORG_ID(l_org_id);

4505:
4506: if l_do_billing > 0 then
4507:
4508: LogMessage(FND_LOG.LEVEL_STATEMENT, G_PKG_NAME, 'Billing Concurrent Program to bill 0-th installment...');
4509: FND_REQUEST.SET_ORG_ID(l_org_id);
4510:
4511: -- Bug#6313716 : Invoke the function add_layout to specify the template type,code etc., before submitting request
4512: SELECT
4513: lower(iso_language),iso_territory

Line 4521: l_xml_output:= fnd_request.add_layout(

4517: FND_LANGUAGES
4518: WHERE
4519: language_code = USERENV('LANG');
4520:
4521: l_xml_output:= fnd_request.add_layout(
4522: template_appl_name => 'LNS',
4523: template_code => 'LNSBILLTML',
4524: template_language => l_iso_language,
4525: template_territory => l_iso_territory,

Line 4530: l_request_id := FND_REQUEST.SUBMIT_REQUEST(

4526: output_format => 'PDF'
4527: );
4528:
4529:
4530: l_request_id := FND_REQUEST.SUBMIT_REQUEST(
4531: 'LNS',
4532: 'LNS_BILLING',
4533: '', '', FALSE,
4534: null,

Line 4543: l_last_api_called := 'FND_REQUEST.SUBMIT_REQUEST for 0th installment billing';

4539: if l_request_id = 0 then
4540: l_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
4541: FND_MESSAGE.SET_NAME('LNS', 'LNS_BILLING_REQUEST_FAILED');
4542: FND_MSG_PUB.Add;
4543: l_last_api_called := 'FND_REQUEST.SUBMIT_REQUEST for 0th installment billing';
4544: RAISE FND_API.G_EXC_ERROR;
4545: else
4546: LogMessage(FND_LOG.LEVEL_STATEMENT, G_PKG_NAME, 'Successfully submited Billing Concurrent Program to bill 0-th installment. Request id = ' || l_request_id);
4547: end if;