E-NV: How To Configure nVision Drilldowns To Run To Window?
(Doc ID 621216.1)
Last updated on NOVEMBER 20, 2024
Applies to:
PeopleSoft Enterprise PT PeopleTools - Version 8.4 and laterInformation in this document applies to any platform.
Goal
When attempting to run an nVision Drilldown to Window, that option is unavailable.Examining the following PeopleCode trace shows that it is checking if the user has access to the "REN" menu, but this menu does not appear to exist.
Function WindowOptionEnabled() Returns boolean;
rem check if user have REN Server Permission;
If (IsMenuItemAuthorized(MenuName."REN", BarName."REPORTING", ItemName."", Page."", %Action_UpdateDisplayAll)) Then
SQLExec("SELECT COUNT(*) FROM PSMCFRENURLID, PSRENCLUS_OWNER WHERE PSMCFRENURLID.ACTIVE_FLAG='A' AND(PSRENCLUS_OWNER.RENOWNER='A' OR PSRENCLUS_OWNER.RENOWNER='R') AND PSMCFRENURLID.MCFREN_URL_ID=PSRENCLUS_OWNER.MCFREN_URL_ID ", &REN);
If &REN > 0 Then
Return True;
End-If;
End-If;
Return False;
End-Function;
What are the setups needed to be able to run nVision Drilldowns to Window?
Solution
To view full details, sign in with your My Oracle Support account. |
|
Don't have a My Oracle Support account? Click to get started! |
In this Document
Goal |
Solution |