cancel
Showing results for 
Search instead for 
Did you mean: 

How to hide Navigation Node under Navigation Tree in Bakoffice Administration for all members of a specific usergroup?

Former Member
0 Kudos

Hi,

My requirement is:

  1. I have a usergroup "XXX", I want all the members of usergroup "XXX" to access Backoffice Administration. How can I achieve this?

  2. All members of usergroup "XXX" should be able to see only one navigation node (Ex. Media and its sub-navigation node) under Navigation Tree. How can I achieve this?

Note - Hybris version is 6.6

Thanks, Nitesh

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

1.To achieve this we need to create Usergroup .

INSERT_UPDATE UserGroup;UID[unique=true];groups(uid)[mode=append] ;ABCadmingroup;backofficeadmingroup,cockpitgroup

  1. Provide access rights to newly created user group

$START_USERRIGHTS;;;;;;;;; Type;UID;MemberOfGroups;Password;Target;read;change;create;remove;change_perm UserGroup;ABCadmingroup;backofficeadmingroup,cockpitgroup ;;;;;;; #Media Access
;;;;Media;+;-;-;-;-; ## set access as per custom need $END_USERRIGHTS

3.Using this usergroup create an employee .

INSERT_UPDATE Employee;UID[unique=true];name;groups(uid);password ;ABCadmin;ABC group Admin;ABCadmingroup;test123

4.Use employee ID & password to enter to back office . Expected :- Media item will be read-only mode for newly created employee.