View Single Post
Old 07-01-2009, 07:29 AM   #2 (permalink)
thePITman
Registered User
 
Join Date: Apr 2006
Posts: 32
OS: WinXp


Re: Oracle Forms, FND_REQUEST.SUBMIT_REQUEST, XML Publisher report, No PDF Output

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
thePITman is offline   Reply With Quote