Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to export access rights of user groups in Hybris

Just curious to know to how one can export the access rights of user groups in hybris. Searched hybris wiki but git no help...

Basically i want to retrieve data like(For example):

UserGroup Read Create Change

CronJobGroup +   -   +

Thanks in advance,

like image 645
R_B Avatar asked Aug 31 '25 02:08

R_B


1 Answers

You can generate export scripts in the hMC, you will get:

"#% impex.setLocale( new Locale( ""en"" , """" ) );"

"#% impex.setTargetFile( ""UserRight.csv"" , true, 0, 0 );"

"#% impex.exportItems( ""UserRight"" , false );"

You can use this in the hac under impex export (or hMC).

like image 159
thijsraets Avatar answered Sep 13 '25 14:09

thijsraets