Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Experts,
I have an excel source for Section Access placed at a location.Now When a user gets Access to a AD group,that particular user needs to be manually added to the Excel source.Can we basically Automate this Process like A User gets access to AD group and that user shd be getting added to Excel?
Really appreciate your help.
Thanks
Syed Imran
Adding to what was posted above, you can connect directly to the AD and read users and groups from Qlik script.
AD:
LOAD DISTINCT *;
SQL SELECT
sAMAccountName, name, distinguishedName, userPrincipalName
FROM 'LDAP://DC=subdomain, DC=domain, DC=net' WHERE objectCategory='person';
You have a more refined example in Rob's recipe: http://qlikviewcookbook.com/list-recipes/
Hi MVP,
Thanks for the help
but if I want a particular user to get restricted for some territories(not all) under that group Will I be able to achieve it?
Thanks
Syed Imran
Hi I am not able to see the example in the link you provided.Can you send me the correct link or do i need anything else to view the content.