Solved

Grant Access to Aurena Page Designer

  • 10 June 2020
  • 6 replies
  • 675 views

Userlevel 3
Badge +7

Hello Community,  

 

does anyone know how to grant access to the page designer in Aurena?   We cant find any projection name for this when using the debug console or log window.  Is it something that only the IFSAPP user can do or are we missing something?

icon

Best answer by Kasun Balasooriya 21 October 2020, 01:49

View original

6 replies

Userlevel 7
Badge +19

have you tried granting ConfigurationHandling projection?

Userlevel 6
Badge +15

hello @Chriswharton22 ,

 

PAGE DESIGNER is available to users who have FNDADMIN permission set granted. Could you please check that?

 

Cheers,

Lakmali

Userlevel 3
Badge +7

hello @Chriswharton22 ,

 

PAGE DESIGNER is available to users who have FNDADMIN permission set granted. Could you please check that?

 

Cheers,

Lakmali

Thanks all,  we did find that giving the FND Admin permission set gave us what we wanted.  Is this controlled through the ADMINISTRATOR system privilege?   As a test, we copied the FND_ADMIN role to look at what precisely gave access to the functionality. 

 

We ended up with FND_ADMIN and FND_ADMIN_COPY as permission sets.  Without changing any settings, the user could access page designer with FND_ADMIN assigned to them, but they could not access page designer when FND_ADMIN_COPY was assigned. 

Badge +1

Hi Chris,

Were you able to isolate what grants access to the Aurena Page Designer? 

Similar to you, I’m looking at granting the ability to open and use Page Designer without having to add the FND_ADMIN role as there are a lot of privileges attached to that specific permission set. 

 

Do you know if this is possible? 

 

Thank you.

Simon

Userlevel 7
Badge +21

Hi @Chriswharton22 ,

 

Take a look at the AurenaPageDesigner projection.

 

Regards,

William Klotz

Userlevel 7
Badge +20

Hi,

I had this clarified from @LakmaliRD  for a customer issue. Here’s her response regarding granting Page designer and Navigator designer to end users: 

 

FNDADMIN is the role/permission set that everything is granted to. 

The specific projections that is checked to enable/disable the client designers are

 

CustomPagesHandling

CustomNavigatorHandling

 

But to make use of the configurations as a customer there are several other projections that are needed. This is what fndcobInstallation.sql say
 

  Security_SYS.Grant_System_Privilege('DEFINE SQL', grantee_);

--   Security_SYS.Grant_Pres_Object('EE_INFORMATION_CARDS', role2_, 'FALSE');

--   Security_SYS.Grant_Pres_Object('EE_INFORMATION_CARDS_CONFIG', role2_, 'FALSE');

--   Security_SYS.Grant_Pres_Object('frmPackageDetail', grantee_);

--   Security_SYS.Grant_Pres_Object('tbwPackageOverview', grantee_);

--   Security_SYS.Grant_Pres_Object('dlgAddToAcp', grantee_);

--   Security_SYS.Grant_Pres_Object('tbwTranslations', grantee_);

--   Security_SYS.Grant_Pres_Object('tbwConditionalFieldActions', grantee_);

   Security_SYS.Grant_Pres_Object('lobbyPage04ec55dd-960d-4f81-b8ca-63529e22a2f8',grantee_,'TRUE','FALSE');

  

   Security_SYS.Grant_Projection('CustomPagesHandling', grantee_);

   Security_SYS.Grant_Projection('ConfigurationHandling', grantee_);

   Security_SYS.Grant_Projection('ConfigurationContextAdmin', grantee_);

   Security_SYS.Grant_Projection('ProjectionConfigHandling', grantee_);

   Security_SYS.Grant_Projection('AurenaPageDesigner', grantee_);

   Security_SYS.Grant_Projection('CustomNavigatorHandling', grantee_);

   Security_SYS.Grant_Projection('NavigatorConfigurationAdmin', grantee_);

   Security_SYS.Grant_Projection('EntityConfigHandling', grantee_);

   Security_SYS.Grant_Projection('EnumConfigHandling', grantee_);

   Security_SYS.Grant_Projection('NewCustomEventAssistantHandling', grantee_);

   Security_SYS.Grant_Projection('CustomEventHandling', grantee_);

   Security_SYS.Grant_Projection('EventActionHandling', grantee_);  

   Security_SYS.Grant_Projection('NewEventActionHandling', grantee_);

Security_SYS.Grant_Projection('AppConfigPackageHandling', grantee_);

 

Hope this helps.

Reply