<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>How to Retrieve a group name by UUID?</title><link>https://community.appian.com/discussions/f/general/25969/how-to-retrieve-a-group-name-by-uuid</link><description>is there any way to find group Name by UUID? (tried get contentdetailsbyUUID) nothing worked...</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: How to Retrieve a group name by UUID?</title><link>https://community.appian.com/thread/101590?ContentTypeID=1</link><pubDate>Wed, 21 Sep 2022 12:12:14 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:352592ac-9f4f-490e-a6dd-2fc5afa2d8c3</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;First, I would like to understand why this is necessary. I would try to avoid having to do this.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to Retrieve a group name by UUID?</title><link>https://community.appian.com/thread/101589?ContentTypeID=1</link><pubDate>Wed, 21 Sep 2022 10:55:04 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:9f02ba97-28fc-45bf-8204-84d90d43e9a7</guid><dc:creator>ujjwalr0002</dc:creator><description>&lt;p&gt;Hi Stefan do we have any other solution ?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to Retrieve a group name by UUID?</title><link>https://community.appian.com/thread/101588?ContentTypeID=1</link><pubDate>Wed, 21 Sep 2022 10:52:56 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:74890940-88d0-4613-906f-4d3760989442</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;Keep in mind that this does NOT scale for a larger number&amp;nbsp;of groups.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to Retrieve a group name by UUID?</title><link>https://community.appian.com/thread/101587?ContentTypeID=1</link><pubDate>Wed, 21 Sep 2022 10:15:34 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:3a10ddd0-5844-456c-b738-68e299a9b4f3</guid><dc:creator>ujjwalr0002</dc:creator><description>&lt;p&gt;Yes&amp;nbsp;the function do not work here but here is one way you can do that .&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!allGroups:a!forEach(
    items: getallgroups(-1,1),
    expression: {
      id:fv!item,
      UUID:getgroupuuid(
        fv!item
      )
    }
  ),
  index(
    local!allGroups,
    wherecontains(
      &amp;quot;9018b532-810c-4f06-becb-948a954b8eb2&amp;quot;,/*uuid for the group*/
      touniformstring(local!allGroups.UUID)
    ),
    {}
  )
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>