<?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>Get All basic users</title><link>https://community.appian.com/discussions/f/rules/26597/get-all-basic-users</link><description>Hi, 
 Is there any function or a recipe to get all the basic users. Please help</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Get All basic users</title><link>https://community.appian.com/thread/104507?ContentTypeID=1</link><pubDate>Mon, 21 Nov 2022 08:59:04 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:5874bf97-43c5-402f-9a81-d566e17ed8f0</guid><dc:creator>sairam satyanarayanam0001</dc:creator><description>&lt;p&gt;yea...that is also actually work&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Get All basic users</title><link>https://community.appian.com/thread/104505?ContentTypeID=1</link><pubDate>Mon, 21 Nov 2022 08:34:12 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:71111326-9368-40d7-b7bc-f28aefe9e894</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;I think the most simple approach is, to create a group and add a membership rule: &amp;quot;Add users whose User Type is not Administrator&amp;quot;. Then you can just fetch its members using a!groupMembers().&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Get All basic users</title><link>https://community.appian.com/thread/104502?ContentTypeID=1</link><pubDate>Mon, 21 Nov 2022 08:07:16 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:5b0bb843-c37b-4769-b0f5-32008f27f524</guid><dc:creator>sairam satyanarayanam0001</dc:creator><description>&lt;p&gt;&lt;a href="https://docs.appian.com/suite/help/22.4/fnc_people_a_groupmembers.html"&gt;https://docs.appian.com/suite/help/22.4/fnc_people_a_groupmembers.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;a!groupMembers(group: ri!group,memberType: &amp;quot;USER&amp;quot;)&lt;/p&gt;
&lt;p&gt;and use rule input type as group then u can get users from it&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Get All basic users</title><link>https://community.appian.com/thread/104501?ContentTypeID=1</link><pubDate>Mon, 21 Nov 2022 07:50:46 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:bc4a14c2-329f-4532-943c-15d8a4c11f79</guid><dc:creator>ashokm0006</dc:creator><description>&lt;p&gt;how can i hepl you&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Get All basic users</title><link>https://community.appian.com/thread/104500?ContentTypeID=1</link><pubDate>Mon, 21 Nov 2022 07:47:23 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:bcb641b2-a6a1-4f50-a53e-3606c980ed28</guid><dc:creator>sairam satyanarayanam0001</dc:creator><description>&lt;p&gt;u can use a!groupmember function to filter the user&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Get All basic users</title><link>https://community.appian.com/thread/104496?ContentTypeID=1</link><pubDate>Mon, 21 Nov 2022 06:25:34 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:371945c3-e51a-43ec-8c67-f3b7ee7872ae</guid><dc:creator>Eunnel</dc:creator><description>&lt;p&gt;You can use the&amp;nbsp;getallusers() function to get users and user() function to manipulate it.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Get All basic users</title><link>https://community.appian.com/thread/104494?ContentTypeID=1</link><pubDate>Mon, 21 Nov 2022 06:09:07 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:a45e2f80-1346-4c64-85b6-42217f937482</guid><dc:creator>vinays024987</dc:creator><description>&lt;p&gt;Hi @pavitra,&lt;/p&gt;
&lt;p&gt;You can retrieve the list of all users and then eliminate the users with role of system administrator, If that is what you are looking for.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;a!forEach(&lt;br /&gt; items: getallusers(&lt;br /&gt; 1,-1&lt;br /&gt; ),&lt;br /&gt; expression: if(isusersystemadministrator(fv!item),{},fv!item)&lt;br /&gt;)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Get All basic users</title><link>https://community.appian.com/thread/104493?ContentTypeID=1</link><pubDate>Mon, 21 Nov 2022 05:51:15 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:117dbe2a-5cfe-46df-a1b9-6f9227027315</guid><dc:creator>p2005</dc:creator><description>&lt;p&gt;Yes Harshit, But I need to get&amp;nbsp;list of all&amp;nbsp;basic users. Could you please help me. Is there any other function to get this.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Get All basic users</title><link>https://community.appian.com/thread/104492?ContentTypeID=1</link><pubDate>Mon, 21 Nov 2022 05:48:45 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:922baee9-fb91-4dff-a2a9-001e0d6019a0</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;user() function is used to access properties of a user like firstName, lastName, email etc.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Get All basic users</title><link>https://community.appian.com/thread/104491?ContentTypeID=1</link><pubDate>Mon, 21 Nov 2022 05:47:13 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:a66c454a-635e-444c-9ea5-724db5275f09</guid><dc:creator>p2005</dc:creator><description>&lt;p&gt;Hi Sairam,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Can you please help how to get all the basic users with the user().&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Get All basic users</title><link>https://community.appian.com/thread/104421?ContentTypeID=1</link><pubDate>Fri, 18 Nov 2022 06:42:57 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:59444631-f06c-443e-b532-2f3ff1b4ab17</guid><dc:creator>sairam satyanarayanam0001</dc:creator><description>&lt;p&gt;&lt;a href="https://docs.appian.com/suite/help/22.4/fnc_people_user.html#return-a-users-first-and-last-name"&gt;docs.appian.com/.../fnc_people_user.html&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>