<?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 get CDT field values</title><link>https://community.appian.com/discussions/f/best-practices/17564/how-to-get-cdt-field-values</link><description>Hi All , 
 
 I have CDT name CDT_Record Having elements Name , Date , ID , Address , Area . 
 I want to fetch the Name field Details into my interface filter using CDT . need&amp;#39;s your help guys</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: How to get CDT field values</title><link>https://community.appian.com/thread/69215?ContentTypeID=1</link><pubDate>Thu, 05 Sep 2019 00:50:45 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:0ccdc6ef-bdfc-4133-a9a4-99aaee2719d9</guid><dc:creator>ankitab0001</dc:creator><description>&lt;p&gt;Hi &lt;a href="/members/wapidd0001"&gt;wapidd0001&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;To what I understood from your post, you want to have a filter criteria on a particular field of the cdt.&lt;/p&gt;
&lt;p&gt;Have a look at this&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;
load(
  
  local!CDT_Record:{{name:&amp;quot;ABC&amp;quot;,date:&amp;quot;01/04/1990&amp;quot;,id:1,address: &amp;quot;Melbourne&amp;quot;, area:&amp;quot;cbd&amp;quot; },
  {name:&amp;quot;XYZ&amp;quot;,date:&amp;quot;01/04/1990&amp;quot;,id:1,address: &amp;quot;Mumbai&amp;quot;, area:&amp;quot;Powai&amp;quot; },
  {name:&amp;quot;PQR&amp;quot;,date:&amp;quot;01/04/1990&amp;quot;,id:1,address: &amp;quot;New York&amp;quot;, area:&amp;quot;Brooklyn&amp;quot; }},
  
  local!name,
  {
    a!sectionLayout(
      label:&amp;quot;Filter Criteria&amp;quot;,
      contents: {
        a!dropdownField(
          label:&amp;quot;Name&amp;quot;,
          choiceLabels: local!CDT_Record.name,
          choiceValues: local!CDT_Record.name,
          placeholderLabel: &amp;quot;Select&amp;quot;,
          value:local!name,
          saveInto: local!name
        )
        
      }
    ),
    if(isnull(local!name),{},
          a!textField(
            label:&amp;quot;Filter Result&amp;quot;,
            readOnly: true(),
            value: local!name
          )
        )
  }
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to get CDT field values</title><link>https://community.appian.com/thread/69199?ContentTypeID=1</link><pubDate>Wed, 04 Sep 2019 18:06:56 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:ddaf261a-0bb2-4402-8514-c1ab03234e26</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;I&amp;#39;m still not sure what you might mean by &amp;quot;filter F1&amp;quot; - is it just a text input field?&amp;nbsp; Something else?&lt;/p&gt;
&lt;p&gt;Could you share some code snippets (please use the Insert --&amp;gt; Code feature to maintain formatting and reader-friendliness), and/or some screenshots?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to get CDT field values</title><link>https://community.appian.com/thread/69198?ContentTypeID=1</link><pubDate>Wed, 04 Sep 2019 18:04:56 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b741298e-ed07-46c3-88c5-1849b54d1f50</guid><dc:creator>wapidd0001</dc:creator><description>&lt;p&gt;i have created filter F1 in my interface where i can populate data into grid layout in same interface&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to get CDT field values</title><link>https://community.appian.com/thread/69197?ContentTypeID=1</link><pubDate>Wed, 04 Sep 2019 17:57:39 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:999b7d55-dcb8-4fd8-90f2-22e6b455186a</guid><dc:creator>Mike Schmitt</dc:creator><description>[quote userid="39247" url="~/discussions/f/best-practices/17564/how-to-get-cdt-field-values/69196"]i have filter F1[/quote]
&lt;p&gt;Can you clarify what this means?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to get CDT field values</title><link>https://community.appian.com/thread/69196?ContentTypeID=1</link><pubDate>Wed, 04 Sep 2019 17:54:52 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:bdabba04-6ae9-4ff8-a1e6-299d14ae0351</guid><dc:creator>wapidd0001</dc:creator><description>&lt;p&gt;See CDT_Record Have a field&amp;nbsp;&lt;span&gt;Name , Date , ID , Address , Area you can consider as a column&amp;nbsp;name .. i willing to get Name column having data xyz , cdf , nmo , .......&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;i have filter F1 in my interface ... i want F1 ( xyz , cdf , mno ... ) as a filter data&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to get CDT field values</title><link>https://community.appian.com/thread/69195?ContentTypeID=1</link><pubDate>Wed, 04 Sep 2019 17:50:14 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:fb4cd79c-c44e-40b5-9e88-4bddfec7072b</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;We need more info - particularly, what have you already tried?&amp;nbsp; What do you mean exactly when you say &amp;quot;interface filter using CDT&amp;quot;?&amp;nbsp; As in, are you just trying to display the &amp;quot;Name&amp;quot; property of the CDT in an interface somehow, or is there some sort of filtering involved?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>