<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Server in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Server/m-p/1596390#M1247635</link>
    <description>&lt;P&gt;Thank! I have a question,&amp;nbsp;I have to put the domain of server?&lt;/P&gt;&lt;P&gt;For the monent it is not working&lt;/P&gt;&lt;P&gt;RootDse = server domain&lt;/P&gt;&lt;P&gt;select&lt;BR /&gt;// Add addtional Fields as required&lt;BR /&gt;name, distinguishedName // Fields to select&lt;BR /&gt;FROM 'LDAP://$(RootDse)' WHERE objectCategory='person'&lt;BR /&gt;AND name&amp;gt;'$(arg)';&lt;/P&gt;</description>
    <pubDate>Wed, 26 Jun 2019 16:03:06 GMT</pubDate>
    <dc:creator>Masajnik</dc:creator>
    <dc:date>2019-06-26T16:03:06Z</dc:date>
    <item>
      <title>Server</title>
      <link>https://community.qlik.com/t5/QlikView/Server/m-p/1596355#M1247629</link>
      <description>&lt;P&gt;Do they know something about to get server information, for example, windows user group/ users etc, most important for me is name windows user group&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!!!!!&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Server/m-p/1596355#M1247629</guid>
      <dc:creator>Masajnik</dc:creator>
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: Server</title>
      <link>https://community.qlik.com/t5/QlikView/Server/m-p/1596376#M1247632</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I suggest you have a look at the Qlikview Cookbook with regards to getting data from the Active Directory.&lt;/P&gt;&lt;P&gt;&lt;A href="https://qlikviewcookbook.com/recipes/download-tag/active-directory/" target="_blank"&gt;https://qlikviewcookbook.com/recipes/download-tag/active-directory/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Adrian&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jun 2019 15:35:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Server/m-p/1596376#M1247632</guid>
      <dc:creator>atoz1158</dc:creator>
      <dc:date>2019-06-26T15:35:16Z</dc:date>
    </item>
    <item>
      <title>Re: Server</title>
      <link>https://community.qlik.com/t5/QlikView/Server/m-p/1596390#M1247635</link>
      <description>&lt;P&gt;Thank! I have a question,&amp;nbsp;I have to put the domain of server?&lt;/P&gt;&lt;P&gt;For the monent it is not working&lt;/P&gt;&lt;P&gt;RootDse = server domain&lt;/P&gt;&lt;P&gt;select&lt;BR /&gt;// Add addtional Fields as required&lt;BR /&gt;name, distinguishedName // Fields to select&lt;BR /&gt;FROM 'LDAP://$(RootDse)' WHERE objectCategory='person'&lt;BR /&gt;AND name&amp;gt;'$(arg)';&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jun 2019 16:03:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Server/m-p/1596390#M1247635</guid>
      <dc:creator>Masajnik</dc:creator>
      <dc:date>2019-06-26T16:03:06Z</dc:date>
    </item>
    <item>
      <title>Re: Server</title>
      <link>https://community.qlik.com/t5/QlikView/Server/m-p/1596400#M1247637</link>
      <description>&lt;P&gt;It is working but the APP give that error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;QVX_UNEXPECTED_END_OF_DATA:&lt;BR /&gt;ADUsers:&lt;/P&gt;&lt;P&gt;LOAD DISTINCT&lt;/P&gt;&lt;P&gt;name as UserName,&lt;BR /&gt;distinguishedName as UserDN&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jun 2019 16:29:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Server/m-p/1596400#M1247637</guid>
      <dc:creator>Masajnik</dc:creator>
      <dc:date>2019-06-26T16:29:26Z</dc:date>
    </item>
    <item>
      <title>Re: Server</title>
      <link>https://community.qlik.com/t5/QlikView/Server/m-p/1596621#M1247638</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I got that error to start with and found it was because the number of records was too large, I think there is some sort of buffer (size unknown).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I ended up getting the users back in chunks by putting select in a loop getting a single letter at a time see below.&lt;/P&gt;&lt;P&gt;set values='A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z';&lt;BR /&gt;let valuecount = SubStringCount(values,',');&lt;BR /&gt;//Loop to load records for each value count from the AD database.&lt;BR /&gt;for i = 1 to valuecount + 1&lt;BR /&gt;let value = subfield(values,',', i) &amp;amp; '*';&lt;BR /&gt;[AD_Users]:&lt;BR /&gt;LOAD mail AS EMailAddress,&lt;BR /&gt;employeeID AS EmployeeNumber,&lt;BR /&gt;distinguishedName AS UserDN&lt;BR /&gt;WHERE EXISTS(employeeID);&lt;BR /&gt;sql select mail,&lt;BR /&gt;employeeID,&lt;BR /&gt;distinguishedName,&lt;BR /&gt;from '$(ADDatabase)'&lt;BR /&gt;where objectClass = 'User' and objectCategory = 'Person' AND sAMAccountName = '$(value)' ;&lt;BR /&gt;next&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Adrian&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jun 2019 08:22:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Server/m-p/1596621#M1247638</guid>
      <dc:creator>atoz1158</dc:creator>
      <dc:date>2019-06-27T08:22:28Z</dc:date>
    </item>
    <item>
      <title>Re: Server</title>
      <link>https://community.qlik.com/t5/QlikView/Server/m-p/1597215#M1247639</link>
      <description>&lt;P&gt;Buen dia, gracias por tu respuesta!! pero&amp;nbsp; lo que estoy necesitando es el grupo de windows que esta relacionado al archivo qvw, eso se puede hacer ?&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2019 12:35:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Server/m-p/1597215#M1247639</guid>
      <dc:creator>Masajnik</dc:creator>
      <dc:date>2019-06-28T12:35:54Z</dc:date>
    </item>
  </channel>
</rss>

