<?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 Object or Process to check if Queue is Encrypted in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Object-or-Process-to-check-if-Queue-is-Encrypted/m-p/82000#M33495</link>
    <description>Looking for an option to check if queue is encrypted before loading items to queue or getting items from it.&lt;BR /&gt;Due to sometimes tick is missing under queue config we run in to problems. Would like to automate message sending if queue was not configured properly. But dont see any way how to check, but only going to settings manually and check if tick is&amp;nbsp; marked.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Working with BP7.1.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Pavel Zuravliov&lt;BR /&gt;Developer&lt;BR /&gt;SwedBank&lt;BR /&gt;Europe/Vilnius&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Thu, 20 Oct 2022 08:35:00 GMT</pubDate>
    <dc:creator>pavelzuravliov</dc:creator>
    <dc:date>2022-10-20T08:35:00Z</dc:date>
    <item>
      <title>Object or Process to check if Queue is Encrypted</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Object-or-Process-to-check-if-Queue-is-Encrypted/m-p/82000#M33495</link>
      <description>Looking for an option to check if queue is encrypted before loading items to queue or getting items from it.&lt;BR /&gt;Due to sometimes tick is missing under queue config we run in to problems. Would like to automate message sending if queue was not configured properly. But dont see any way how to check, but only going to settings manually and check if tick is&amp;nbsp; marked.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Working with BP7.1.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Pavel Zuravliov&lt;BR /&gt;Developer&lt;BR /&gt;SwedBank&lt;BR /&gt;Europe/Vilnius&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 20 Oct 2022 08:35:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Object-or-Process-to-check-if-Queue-is-Encrypted/m-p/82000#M33495</guid>
      <dc:creator>pavelzuravliov</dc:creator>
      <dc:date>2022-10-20T08:35:00Z</dc:date>
    </item>
    <item>
      <title>RE: Object or Process to check if Queue is Encrypted</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Object-or-Process-to-check-if-Queue-is-Encrypted/m-p/82001#M33496</link>
      <description>Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="a799317d-033f-423a-9338-ac8339683aa9" data-tag-text="@Pavel Zuravliov" href="https://community.blueprism.com/network/profile?UserKey=a799317d-033f-423a-9338-ac8339683aa9" data-itemmentionkey="38226257-7df5-495e-acee-9e20085980dd"&gt;@Pavel Zuravliov&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;To do this the best way would be build a bot which can have a direct access to your Blue Prism database using the &lt;A href="https://digitalexchange.blueprism.com/dx/entry/3439/solution/data---sql-server" target="_blank" rel="noopener"&gt;Function for Data - SQL Server - 10.0.0&lt;/A&gt; business object and from there you can execute this simple query​:&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="28465.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28595iD3C12AE33797B18C/image-size/large?v=v2&amp;amp;px=999" role="button" title="28465.png" alt="28465.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;
&lt;PRE class="language-plsql"&gt;&lt;CODE&gt;SELECT COUNT([name])
FROM [Blue Prism].[dbo].[BPAWorkQueue] WHERE [encryptid] IS NULL&lt;/CODE&gt;&lt;/PRE&gt;
&lt;BR /&gt;&lt;BR /&gt;Ideally, what this query does is give you the total count of queues which do not have the encryption checkbox as checked while being configured. If this count is not equal to 0, then you can retrieve the list of all the queue names for your email notification with the below subsequent query:&lt;BR /&gt;&lt;BR /&gt;
&lt;PRE class="language-plsql"&gt;&lt;CODE&gt;SELECT [name] FROM [Blue Prism].[dbo].[BPAWorkQueue] WHERE [encryptid] IS NULL​&lt;/CODE&gt;&lt;/PRE&gt;
&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="28466.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28597i5C32A0555FA212F9/image-size/large?v=v2&amp;amp;px=999" role="button" title="28466.png" alt="28466.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;The working behind this logic is pretty simple as it queries the &lt;STRONG&gt;BPAWorkQueue&lt;/STRONG&gt;&amp;nbsp;table which consists of all the queue related configuration, and it has a column called as '&lt;STRONG&gt;encryptid&lt;/STRONG&gt;' which will have the encryption ID set up if you use the '&lt;STRONG&gt;Encryption&lt;/STRONG&gt;' feature in your work queue otherwise it would have null values as shown below:&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="28467.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28599i7F0619B3061BA6F3/image-size/large?v=v2&amp;amp;px=999" role="button" title="28467.png" alt="28467.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;----------------------------------&lt;BR /&gt;Hope it helps you out and if my solution resolves your query, then please mark it as the 'Best Answer' so that the others members in the community having similar problem statement can track the answer easily in future&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Devneet Mohanty&lt;BR /&gt;Intelligent Process Automation Consultant | Sr. Consultant - Automation Developer,&lt;BR /&gt;WonderBotz India Pvt. Ltd.&lt;BR /&gt;Blue Prism Community MVP | Blue Prism 7x Certified Professional&lt;BR /&gt;Website: &lt;A href="https://devneet.github.io/" target="test_blank"&gt;https://devneet.github.io/&lt;/A&gt;&lt;BR /&gt;Email: devneetmohanty07@gmail.com&lt;BR /&gt;&lt;BR /&gt;----------------------------------&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 20 Oct 2022 08:55:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Object-or-Process-to-check-if-Queue-is-Encrypted/m-p/82001#M33496</guid>
      <dc:creator>devneetmohanty07</dc:creator>
      <dc:date>2022-10-20T08:55:00Z</dc:date>
    </item>
  </channel>
</rss>

