My issue has been resolved. When submitting the request via the Oracle Form (as opposed to submitting a manual concurrent request), there was no Layout attached to the request. I had to add a Layout to the request prior to the SUBMIT_REQUEST call. Here are the steps I had to follow:
1. First you must declare the variable
Code:
xml_layout boolean;
2. Then you must call the ADD_LAYOUT API prior to submitting your Concurrent Program.
Code:
xml_layout := FND_REQUEST.ADD_LAYOUT(app_short_name,
conc_prog_short_name,
'en',
'US',
'PDF');
Courtesy Metalink Document ID: 308658.1