Monday, April 23, 2018

How To Restrict Users From Adding Homepages or Tiles in Fluid Homepages

The Add To functionality (all of it not just parts) are determined by 3 things: 1. Does the component itself have the Add To functionality enabled in Component Properties (default is enabled): - Open component definition in App Designer - Access the component's Component Properties. - Click the "Fluid" tab - Check "Add To" option box to see if it's checked 2. Does the user have permission to access the iScript which performs the Add To functionality? Development stated the following code is checked specifically: --IsIScriptAuthorized("WEBLIB_PTNUI", "PT_BUTTON_PIN", "FieldFormula", "IScript_SavePin", %Action_UpdateDisplay); So one can check: - PeopleTools > Security > Permissions & Roles > Permission Lists - Open the user's individual permission lists - Go to the "Web Libraries" tab - See if there is permission given to: Web Library: WEBLIB_PTNUI Function: PT_BUTTON_PIN.FieldFormula.IScript_SavePin 3. The form factor of the device being used to access the application. The Add To functionality is disabled on the small form factor. So users accessing the application from a small form factor device (such as smartphones) will not see the Add To feature. The above will determine access to all 3 of "Add To Homepage", "Add To Favorites" and "Add To Navbar". There are no options at a more granular level to control each individual "Add To" item.

No comments:

Post a Comment