DBA Data[Home] [Help]

APPS.LNS_DISTRIBUTIONS_PUB dependencies on FND_REQUEST

Line 5498: FND_REQUEST.SET_ORG_ID(l_org_id);

5494:
5495: if l_do_billing > 0 then
5496:
5497: LogMessage(FND_LOG.LEVEL_STATEMENT, G_PKG_NAME, 'Billing Concurrent Program to bill 0-th installment...');
5498: FND_REQUEST.SET_ORG_ID(l_org_id);
5499:
5500: -- Bug#6313716 : Invoke the function add_layout to specify the template type,code etc., before submitting request
5501: SELECT
5502: lower(iso_language),iso_territory

Line 5510: l_xml_output:= fnd_request.add_layout(

5506: FND_LANGUAGES
5507: WHERE
5508: language_code = USERENV('LANG');
5509:
5510: l_xml_output:= fnd_request.add_layout(
5511: template_appl_name => 'LNS',
5512: template_code => 'LNSRPTBL', --fix for bug 8830573
5513: template_language => l_iso_language,
5514: template_territory => l_iso_territory,

Line 5519: l_request_id := FND_REQUEST.SUBMIT_REQUEST(

5515: output_format => 'PDF'
5516: );
5517:
5518:
5519: l_request_id := FND_REQUEST.SUBMIT_REQUEST(
5520: 'LNS',
5521: 'LNS_BILLING',
5522: '', '', FALSE,
5523: null,

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

5530: if l_request_id = 0 then
5531: l_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
5532: FND_MESSAGE.SET_NAME('LNS', 'LNS_BILLING_REQUEST_FAILED');
5533: FND_MSG_PUB.Add;
5534: l_last_api_called := 'FND_REQUEST.SUBMIT_REQUEST for 0th installment billing';
5535: RAISE FND_API.G_EXC_ERROR;
5536: else
5537: LogMessage(FND_LOG.LEVEL_STATEMENT, G_PKG_NAME, 'Successfully submited Billing Concurrent Program to bill 0-th installment. Request id = ' || l_request_id);
5538: end if;