<link id="l3" name="LInkName" description="Desc" src="URL" target="blank" iconSmall="common/info_ena.png" > <locations> <location name="header" insertBefore="home"/> </locations> </link> 

I need to add a restriction on the role (privilege), the link should not be displayed for users without the role of BIServiceAdministrator.

In the help there is only it:

link: privilege Optional String. The privileges.Access ['Global Answers'] && privileges.Access ['Global Delivers']

Different variations from the help do not work (without privileges - the link works):

 14 <link id="l2" name="LinkName" description="LinkDesc" src="URL" target="blank" iconSmall="common/info_ena.png" > <privileges> <privilege.Access['Global Answers']/> </privileges> <locations> <location name="header" insertBefore="home"/> </locations> </link> 13 <link id="l2" name="LinkName" description="LinkDesc" src="URL" target="blank" iconSmall="common/info_ena.png" > <privileges> <privilege.Access['Global Answers']="true"/> </privileges> <locations> <location name="header" insertBefore="home"/> </locations> </link> 12 <link id="l2" name="LinkName" description="LinkDesc" src="URL" target="blank" iconSmall="common/info_ena.png" privileges.Access['Global Answers']="true"> <locations> <location name="header" insertBefore="home"/> </locations> </link> 11 <link id="l2" name="LinkName" description="LinkDesc" src="URL" target="blank" iconSmall="common/info_ena.png" > <privilege> <privileges.Access['Global Answers']="true"/> </privilege> <locations> <location name="header" insertBefore="home"/> </locations> </link> 9 <link id="l2" name="LinkName" description="LinkDesc" src="URL" target="blank" iconSmall="common/info_ena.png" privileges.isAdmin = true> <locations> <location name="getstarted" /> </locations> </link> 

    0