<?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 Smart folder with created date in Alfresco Forum</title>
    <link>https://connect.hyland.com/t5/alfresco-forum/smart-folder-with-created-date/m-p/119302#M32852</link>
    <description>&lt;P&gt;Hallo,&lt;/P&gt;&lt;P&gt;I want to show the documents of one type in year-folders.&lt;/P&gt;&lt;P&gt;invoices - 2020, 2021, 2022&lt;/P&gt;&lt;P&gt;Is this possible to build this with smart folders?&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;&amp;nbsp; Peter Schütt&lt;/P&gt;</description>
    <pubDate>Fri, 28 Jun 2024 15:02:31 GMT</pubDate>
    <dc:creator>pschuett</dc:creator>
    <dc:date>2024-06-28T15:02:31Z</dc:date>
    <item>
      <title>Smart folder with created date</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/smart-folder-with-created-date/m-p/119302#M32852</link>
      <description>&lt;P&gt;Hallo,&lt;/P&gt;&lt;P&gt;I want to show the documents of one type in year-folders.&lt;/P&gt;&lt;P&gt;invoices - 2020, 2021, 2022&lt;/P&gt;&lt;P&gt;Is this possible to build this with smart folders?&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;&amp;nbsp; Peter Schütt&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2024 15:02:31 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/smart-folder-with-created-date/m-p/119302#M32852</guid>
      <dc:creator>pschuett</dc:creator>
      <dc:date>2024-06-28T15:02:31Z</dc:date>
    </item>
    <item>
      <title>Re: Smart folder with created date</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/smart-folder-with-created-date/m-p/119303#M32853</link>
      <description>&lt;P&gt;Yes. Smart folders base on full text search. Create your search request for the folder and you will get results in proper folder.&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;PRE&gt;{
    &lt;SPAN class=""&gt;"id : "&lt;/SPAN&gt;1&lt;SPAN class=""&gt;",
    "&lt;/SPAN&gt;name&lt;SPAN class=""&gt;":"&lt;/SPAN&gt;Invoices&lt;SPAN class=""&gt;",
    "&lt;/SPAN&gt;nodes&lt;SPAN class=""&gt;":[
        {
            "&lt;/SPAN&gt;name&lt;SPAN class=""&gt;":"&lt;/SPAN&gt;2023&lt;SPAN class=""&gt;",
            ...

            "&lt;/SPAN&gt;search&lt;SPAN class=""&gt;":{
                "&lt;/SPAN&gt;language&lt;SPAN class=""&gt;": "&lt;/SPAN&gt;fts-alfresco&lt;SPAN class=""&gt;",
                "&lt;/SPAN&gt;query": "TYPE:'&amp;lt;your-index&amp;gt;:&amp;lt;invoice&amp;gt;' AND created:['2023-01-01' to '2023-12-31']" &lt;BR /&gt;            }&lt;BR /&gt;        },&lt;BR /&gt;        {&lt;BR /&gt;            &lt;SPAN class=""&gt;"&lt;/SPAN&gt;name&lt;SPAN class=""&gt;":"&lt;/SPAN&gt;2024&lt;SPAN class=""&gt;",&lt;/SPAN&gt;&lt;BR /&gt;            ...&lt;BR /&gt;        }&lt;BR /&gt;    ]&lt;BR /&gt;}&lt;/PRE&gt;&lt;P&gt;Here is the documentation:&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.alfresco.com/content-services/7.0/config/smart-folders/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://docs.alfresco.com/content-services/7.0/config/smart-folders/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jul 2024 11:55:31 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/smart-folder-with-created-date/m-p/119303#M32853</guid>
      <dc:creator>fedorow</dc:creator>
      <dc:date>2024-07-12T11:55:31Z</dc:date>
    </item>
    <item>
      <title>Re: Smart folder with created date</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/smart-folder-with-created-date/m-p/119304#M32854</link>
      <description>&lt;P&gt;Hallo,&lt;/P&gt;&lt;P&gt;thanks for Your answer.&lt;/P&gt;&lt;P&gt;Is it possible to generate the year folder in a generic way?&lt;/P&gt;&lt;P&gt;e.g. (Pseudo-Code, not real)&lt;/P&gt;&lt;PRE&gt;{
    &lt;SPAN class=""&gt;"id : "&lt;/SPAN&gt;1&lt;SPAN class=""&gt;",
    "&lt;/SPAN&gt;name&lt;SPAN class=""&gt;":"&lt;/SPAN&gt;Invoices&lt;SPAN class=""&gt;",
    "&lt;/SPAN&gt;nodes&lt;SPAN class=""&gt;":[
        {
            "&lt;/SPAN&gt;name&lt;SPAN class=""&gt;":"&lt;/SPAN&gt;&amp;lt;year_of_creation&amp;gt;&lt;SPAN class=""&gt;",
            ...

            "&lt;/SPAN&gt;search&lt;SPAN class=""&gt;":{
                "&lt;/SPAN&gt;language&lt;SPAN class=""&gt;": "&lt;/SPAN&gt;fts-alfresco&lt;SPAN class=""&gt;",
                "&lt;/SPAN&gt;query": "TYPE:'&amp;lt;your-index&amp;gt;:&amp;lt;invoice&amp;gt;' AND created in &amp;lt;year_of_creation&amp;gt;" &lt;BR /&gt;            }&lt;BR /&gt;        }&lt;BR /&gt;    ]&lt;BR /&gt;}&lt;/PRE&gt;&lt;P&gt;I hope, my idea is clear.&lt;/P&gt;&lt;P&gt;Is this possible?&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;&amp;nbsp; Peter Schütt&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2024 12:35:13 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/smart-folder-with-created-date/m-p/119304#M32854</guid>
      <dc:creator>pschuett</dc:creator>
      <dc:date>2024-07-23T12:35:13Z</dc:date>
    </item>
  </channel>
</rss>

