<?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 can identify the users that were added recently on appian</title><link>https://community.appian.com/discussions/f/new-to-appian/28963/how-can-identify-the-users-that-were-added-recently-on-appian</link><description>Hi Team, 
 How can identify the users that have created the accounts recently or per month on Appian.</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: how can identify the users that were added recently on appian</title><link>https://community.appian.com/thread/114308?ContentTypeID=1</link><pubDate>Wed, 14 Jun 2023 08:12:02 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:82b99f0a-9caa-4b9a-9611-5a4eacac29db</guid><dc:creator>sanchitg0002</dc:creator><description>&lt;p&gt;&lt;pre class="ui-code" data-mode="java"&gt;a!localVariables(
  local!allUsers: getallusers(startIndex: 1, batchSize: - 1),
  a!flatten(
    a!forEach(
      local!allUsers,
      if(
        or(user(fv!item, &amp;quot;created&amp;quot;) &amp;gt; now() - 30),
        fv!item,
        {}
      )
    )
  )
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: how can identify the users that were added recently on appian</title><link>https://community.appian.com/thread/114306?ContentTypeID=1</link><pubDate>Wed, 14 Jun 2023 08:01:10 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:fbf95128-44ff-4026-a472-4cff161f5b79</guid><dc:creator>sanchitg0002</dc:creator><description>&lt;p&gt;You can get the timestamp of when the users were created and some other actions in &amp;quot;user_management.csv&amp;quot; inside &amp;quot;audit/_&amp;quot; in System Logs. Read this file using Log Reader plugin and filter with columnName: &amp;quot;Action&amp;quot; and value equal to &amp;quot;Create&amp;quot;.&lt;/p&gt;
&lt;p&gt;user() function can also give you the createdOn date of a particular user:&amp;nbsp;&lt;pre class="ui-code" data-mode="java"&gt;user(&amp;quot;username&amp;quot;,&amp;quot;created&amp;quot;)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>