<?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 how to get ACL of QVW in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/how-to-get-ACL-of-QVW/m-p/254998#M498178</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey, I discovered how to do it with Qlikview functions.&lt;/P&gt;&lt;P&gt;I added this code to my script to load the data from the DataBase:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET Mantra_report.csv_size=FileSize('R:\New Operations\OnMark\DataFiles\Mantra_report.csv');&lt;/P&gt;&lt;P&gt;LET revenue.csv_time=FileTime('R:\New Operations\OnMark\DataFiles\revenue.csv');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Aug 2011 11:10:31 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-08-11T11:10:31Z</dc:date>
    <item>
      <title>how to get ACL of QVW</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-get-ACL-of-QVW/m-p/254994#M498174</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone know if there's a way to retrieve the ACL info of a QVW file ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what i'm trying to do is to retrieve the ACL info or user name of a selected QVW and display it.&lt;/P&gt;&lt;P&gt;Could be use for administration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any tips? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Aug 2011 04:44:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-get-ACL-of-QVW/m-p/254994#M498174</guid>
      <dc:creator />
      <dc:date>2011-08-08T04:44:02Z</dc:date>
    </item>
    <item>
      <title>Re: how to get ACL of QVW</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-get-ACL-of-QVW/m-p/254995#M498175</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, after one day of googling..&lt;/P&gt;&lt;P&gt;found this easy script generator - &lt;A href="http://www.vbsedit.com/scripts/security/dacls/scr_1384.asp"&gt;http://www.vbsedit.com/scripts/security/dacls/scr_1384.asp&lt;/A&gt;&lt;/P&gt;&lt;P&gt;to get file's DACLS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;' Read a File DACL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;strFileName = "C:\tt.txt"&lt;/P&gt;&lt;P&gt;SE_DACL_PRESENT = &amp;amp;h4&lt;/P&gt;&lt;P&gt;ACCESS_ALLOWED_ACE_TYPE = &amp;amp;h0&lt;/P&gt;&lt;P&gt;ACCESS_DENIED_ACE_TYPE  = &amp;amp;h1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FILE_ALL_ACCESS       = &amp;amp;h1f01ff&lt;/P&gt;&lt;P&gt;FILE_APPEND_DATA      = &amp;amp;h000004&lt;/P&gt;&lt;P&gt;FILE_DELETE           = &amp;amp;h010000&lt;/P&gt;&lt;P&gt;FILE_DELETE_CHILD     = &amp;amp;h000040&lt;/P&gt;&lt;P&gt;FILE_EXECUTE          = &amp;amp;h000020&lt;/P&gt;&lt;P&gt;FILE_READ_ATTRIBUTES  = &amp;amp;h000080&lt;/P&gt;&lt;P&gt;FILE_READ_CONTROL     = &amp;amp;h020000&lt;/P&gt;&lt;P&gt;FILE_READ_DATA        = &amp;amp;h000001&lt;/P&gt;&lt;P&gt;FILE_READ_EA          = &amp;amp;h000008&lt;/P&gt;&lt;P&gt;FILE_SYNCHRONIZE      = &amp;amp;h100000&lt;/P&gt;&lt;P&gt;FILE_WRITE_ATTRIBUTES = &amp;amp;h000100&lt;/P&gt;&lt;P&gt;FILE_WRITE_DAC        = &amp;amp;h040000&lt;/P&gt;&lt;P&gt;FILE_WRITE_DATA       = &amp;amp;h000002&lt;/P&gt;&lt;P&gt;FILE_WRITE_EA         = &amp;amp;h000010&lt;/P&gt;&lt;P&gt;FILE_WRITE_OWNER      = &amp;amp;h080000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set objWMIService = GetObject("winmgmts:")&lt;/P&gt;&lt;P&gt;Set objFileSecuritySettings = _&lt;/P&gt;&lt;P&gt;objWMIService.Get("Win32_LogicalFileSecuritySetting='" &amp;amp; strFileName &amp;amp; "'")&lt;/P&gt;&lt;P&gt;intRetVal = objFileSecuritySettings.GetSecurityDescriptor(objSD)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;intControlFlags = objSD.ControlFlags&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If intControlFlags AND SE_DACL_PRESENT Then&lt;/P&gt;&lt;P&gt;   arrACEs = objSD.DACL&lt;/P&gt;&lt;P&gt;   For Each objACE in arrACEs&lt;/P&gt;&lt;P&gt;      WScript.Echo objACE.Trustee.Domain &amp;amp; "\" &amp;amp; objACE.Trustee.Name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Next&lt;/P&gt;&lt;P&gt;Else&lt;/P&gt;&lt;P&gt;   WScript.Echo "No DACL present in security descriptor"&lt;/P&gt;&lt;P&gt;End If&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if someone can help to "embeded" into QV, to retrieve multiple QVWs, that'd be super nice ! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;meanwhile, i'm trying.... &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/confused.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Aug 2011 07:53:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-get-ACL-of-QVW/m-p/254995#M498175</guid>
      <dc:creator />
      <dc:date>2011-08-08T07:53:29Z</dc:date>
    </item>
    <item>
      <title>Re: how to get ACL of QVW</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-get-ACL-of-QVW/m-p/254996#M498176</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok, if anyone is looking for the answer...&lt;/P&gt;&lt;P&gt;here it is.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/docs/DOC-2293"&gt;http://community.qlik.com/docs/DOC-2293&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Aug 2011 13:29:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-get-ACL-of-QVW/m-p/254996#M498176</guid>
      <dc:creator />
      <dc:date>2011-08-08T13:29:18Z</dc:date>
    </item>
    <item>
      <title>how to get ACL of QVW</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-get-ACL-of-QVW/m-p/254997#M498177</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Im trying to get the file size from an Excel file with a macro or when loading the initial script. I tried your code but VBScript compiler doesnt recognize some things...&lt;/P&gt;&lt;P&gt;Could you please help me?&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Aug 2011 10:30:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-get-ACL-of-QVW/m-p/254997#M498177</guid>
      <dc:creator />
      <dc:date>2011-08-11T10:30:26Z</dc:date>
    </item>
    <item>
      <title>how to get ACL of QVW</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-get-ACL-of-QVW/m-p/254998#M498178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey, I discovered how to do it with Qlikview functions.&lt;/P&gt;&lt;P&gt;I added this code to my script to load the data from the DataBase:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET Mantra_report.csv_size=FileSize('R:\New Operations\OnMark\DataFiles\Mantra_report.csv');&lt;/P&gt;&lt;P&gt;LET revenue.csv_time=FileTime('R:\New Operations\OnMark\DataFiles\revenue.csv');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Aug 2011 11:10:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-get-ACL-of-QVW/m-p/254998#M498178</guid>
      <dc:creator />
      <dc:date>2011-08-11T11:10:31Z</dc:date>
    </item>
    <item>
      <title>Re: how to get ACL of QVW</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-get-ACL-of-QVW/m-p/254999#M498179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nick,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please can you point us to the answer or new thread. The old thread is not working!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;DV&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Feb 2014 11:23:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-get-ACL-of-QVW/m-p/254999#M498179</guid>
      <dc:creator>IAMDV</dc:creator>
      <dc:date>2014-02-25T11:23:41Z</dc:date>
    </item>
    <item>
      <title>Re: how to get ACL of QVW</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-get-ACL-of-QVW/m-p/255000#M498180</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;when I try to go to this link, &lt;A _jive_internal="true" data-containerid="8094" data-containertype="2020" data-objectid="2293" data-objecttype="102" href="https://community.qlik.com/docs/DOC-2293" style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3778c7;"&gt;http://community.qlik.com/docs/DOC-2293&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I get the following error message.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.7272720336914px; background-color: #f3e1dd;"&gt;Access to this place or content is restricted. If you think this is a mistake, please contact your administrator or the person who directed you here.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Can someone advice me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2014 14:32:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-get-ACL-of-QVW/m-p/255000#M498180</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-11-25T14:32:59Z</dc:date>
    </item>
  </channel>
</rss>

