Posted on April 26th, 2009 by Sanjit Anand |
Print This Post
|
Email This Post
Report Manager Publishing issue:
- You have done setup the profile option BNE Allow Set Parameters = Yes ( System Administrator > Profile>System)
- Created template from Report Manager(Report Manager>Financial Report Template Editor)
- Upload the template.
- Now you are trying to modify the same template and trying again to upload (Report Manager>Financial Report Template Editor)
- System will not allow as the overwrite existing template not enabled.
You might get this issue, when you are trying to achive this. Therefore if you are using Report Manager to run FSGs, when you created template for upload, you need the paramters like "Enable Drill" and "Overwrite Existing Template" to be checked by default.
These two options might help you in achieve this
Options 1
What you need is to default "Enable Drill" and "Overwrite Existing Template" check box to true.
You can achieve this by simple update from backend directly by running this script from database.
UPDATE BNE_PARAM_LIST_ITEMS T SET T.BOOLEAN_VALUE_FLAG = 'Y', T.DESC_VALUE = 'Defaulting to True' WHERE T.APPLICATION_ID = 265 AND T.PARAM_LIST_CODE = 'FRM_EXCEL_UPLOAD' AND T.PARAM_NAME IN('frm:template_drill_enable','frm:template_overwrite');
on successful commit, you need to recreate the template by bouncing the Apache.
Options 2
Another Options is follow as per Oracle metalink Note (#784512.1 ) , this will enable you to default "Enable Drill" and "Overwrite Existing Template" check box to true, you need to edit upload parameters of FSG Template Editor.(Adopted from metalink)
-
Login to application navigate to Desktop Integration responsibility. Open Create Document function.
-
Browser address bar will display an URL like
http://<host>:<port>/oa_servlets/oracle.apps.bne.webui.BneApplicationService?bne:page=BneCreateDoc change it
http://host:port/oa_servlets/oracle.apps.bne.webui.BneApplicationService?bne:page=BneParameter and click enter. -
Uncheck the "Restrict to this application" check box and click next.
-
Click Name LOV. Search for the parameter list code "FRM_EXCEL_UPLOAD" and select it.
-
To Update the parameter "frm:template_overwrite" click the pencil icon next to the parameter.
-
In the resulting Define Parameter page set the default value to True and enter description as "Defaulting to True" and save.
-
Now repeat the same for "frm:template_drill_enable" parameter to default the value.
-
Once you complete click the Save button in the main page ("Define Parameter List" page).
-
You can perform test the changes by clicking test button in the main page.
Posted in Report Manager | Comments Off

