I have a requirement to call a standard ‘Run Reports’ form from a custom form.When button clicked(WHEN-BUTTON-PRESSED') from form the submit request window should open with pre populated custom concurrent program created (XXGLREVALPRC)
Steps followed.
-
Created a form function XXTEST FROM application developer
Function : XXTEST , Type : Form , Application: Application Object Library, parameters : CONCURRENT\_PROGRAM\_NAME="XXGLREVALPRC" PROGRAM\_APPL\_SHORT\_NAME="XXGL" SUBMIT\_ONCE="Y"
2. used below code in WHEN-BUTTON-PRESSED TRIGGER
fnd\_function.execute('XXTEST', 'Y', 'Y', 'CHAR1="'||:XXGLOPTIONS.name||'"');
error : When i click the button it says ‘Function not availble from this responsibility.Please change responsibility or contact system administrator’.
Please suggest.