<?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 Report generation using custom templates in ArcGIS Pro SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/report-generation-using-custom-templates/m-p/1500345#M11795</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am working on report generation from custom templates using ArcGIS Pro SDK. I have created a custom template &lt;STRONG&gt;.rptt&lt;/STRONG&gt; file and added that template in some path. I have added attributes table data in the Page Header and Details section of the custom template. Also I have added some data in the Report Header. Now using below code I am trying to generate the report:&lt;/P&gt;&lt;P&gt;var reportTemplates = await ReportTemplateManager.GetCustomTemplatesAsync(templatePath);&lt;BR /&gt;var reportTemplate = reportTemplates.First(r =&amp;gt; r.Name == templateName);&lt;BR /&gt;var reportFields = new List&amp;lt;CIMReportField&amp;gt;(); // added all the fields in this list.&lt;/P&gt;&lt;P&gt;var reportDataSource = new ReportDataSource(mapMember, "", false, reportFields);&lt;BR /&gt;var report = ReportFactory.Instance.CreateReport(reportName, reportDataSource, null, null, reportTemplate, "");&lt;/P&gt;&lt;DIV&gt;var mainReportSection = report.Elements.OfType&amp;lt;ReportSection&amp;gt;().FirstOrDefault();&lt;/DIV&gt;&lt;DIV&gt;var reportHeader = mainReportSection.Elements.OfType&amp;lt;ReportHeader&amp;gt;().FirstOrDefault();&lt;/DIV&gt;&lt;DIV&gt;reportHeader.Elements // data is removed here, not able to see data that was defined or added in the ReportHeader of custom template.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;Now the problem is ReportHeader section defined in my custom template is getting removed.&lt;/P&gt;&lt;P&gt;But if I am using ArcGIS Pro report tool to generate the report from that custom template, it is retaining the ReportHeader content of the custom template.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;It seems that Pro’s report API is not even using the custom template but creating a report from scratch.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;My MapMember is a standalone table.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Any problem in the above SDK code?&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/42133"&gt;@GKmieliauskas&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/12882"&gt;@Wolf&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/9021"&gt;@UmaHarano&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/54046"&gt;@NarelleChedzey&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/145101"&gt;@CharlesMacleod&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 02 Jul 2024 17:35:53 GMT</pubDate>
    <dc:creator>RITASHKOUL</dc:creator>
    <dc:date>2024-07-02T17:35:53Z</dc:date>
    <item>
      <title>Report generation using custom templates</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/report-generation-using-custom-templates/m-p/1500345#M11795</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am working on report generation from custom templates using ArcGIS Pro SDK. I have created a custom template &lt;STRONG&gt;.rptt&lt;/STRONG&gt; file and added that template in some path. I have added attributes table data in the Page Header and Details section of the custom template. Also I have added some data in the Report Header. Now using below code I am trying to generate the report:&lt;/P&gt;&lt;P&gt;var reportTemplates = await ReportTemplateManager.GetCustomTemplatesAsync(templatePath);&lt;BR /&gt;var reportTemplate = reportTemplates.First(r =&amp;gt; r.Name == templateName);&lt;BR /&gt;var reportFields = new List&amp;lt;CIMReportField&amp;gt;(); // added all the fields in this list.&lt;/P&gt;&lt;P&gt;var reportDataSource = new ReportDataSource(mapMember, "", false, reportFields);&lt;BR /&gt;var report = ReportFactory.Instance.CreateReport(reportName, reportDataSource, null, null, reportTemplate, "");&lt;/P&gt;&lt;DIV&gt;var mainReportSection = report.Elements.OfType&amp;lt;ReportSection&amp;gt;().FirstOrDefault();&lt;/DIV&gt;&lt;DIV&gt;var reportHeader = mainReportSection.Elements.OfType&amp;lt;ReportHeader&amp;gt;().FirstOrDefault();&lt;/DIV&gt;&lt;DIV&gt;reportHeader.Elements // data is removed here, not able to see data that was defined or added in the ReportHeader of custom template.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;Now the problem is ReportHeader section defined in my custom template is getting removed.&lt;/P&gt;&lt;P&gt;But if I am using ArcGIS Pro report tool to generate the report from that custom template, it is retaining the ReportHeader content of the custom template.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;It seems that Pro’s report API is not even using the custom template but creating a report from scratch.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;My MapMember is a standalone table.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Any problem in the above SDK code?&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/42133"&gt;@GKmieliauskas&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/12882"&gt;@Wolf&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/9021"&gt;@UmaHarano&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/54046"&gt;@NarelleChedzey&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/145101"&gt;@CharlesMacleod&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2024 17:35:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/report-generation-using-custom-templates/m-p/1500345#M11795</guid>
      <dc:creator>RITASHKOUL</dc:creator>
      <dc:date>2024-07-02T17:35:53Z</dc:date>
    </item>
    <item>
      <title>Re: Report generation using custom templates</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/report-generation-using-custom-templates/m-p/1501542#M11814</link>
      <description>&lt;P&gt;Is there anyone that can help on this since this is a priority issue we are facing?&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/12882"&gt;@Wolf&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/9021"&gt;@UmaHarano&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/42133"&gt;@GKmieliauskas&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/54046"&gt;@NarelleChedzey&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/145101"&gt;@CharlesMacleod&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jul 2024 13:33:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/report-generation-using-custom-templates/m-p/1501542#M11814</guid>
      <dc:creator>RITASHKOUL</dc:creator>
      <dc:date>2024-07-04T13:33:21Z</dc:date>
    </item>
    <item>
      <title>Re: Report generation using custom templates</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/report-generation-using-custom-templates/m-p/1501560#M11817</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/643744"&gt;@RITASHKOUL&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to repro your issue with the custom template - and to create a report view from this template that uses a standalone table.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please give me some info on what data you are adding to the Report Header?&lt;/P&gt;&lt;P&gt;Some code snippet and images to explain would be good too so I can repro the issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Uma&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jul 2024 14:59:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/report-generation-using-custom-templates/m-p/1501560#M11817</guid>
      <dc:creator>UmaHarano</dc:creator>
      <dc:date>2024-07-04T14:59:37Z</dc:date>
    </item>
    <item>
      <title>Re: Report generation using custom templates</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/report-generation-using-custom-templates/m-p/1501607#M11818</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/9021"&gt;@UmaHarano&lt;/a&gt;&amp;nbsp;I have created a report that contains some fields in the PageHeader and Details section from my source which is a standalone table. I have also added some dynamic text in the ReportHeader like ExportedDate, Page Number and also some static text. From share tab I then created a ReportTemplate an rptt file out of that report and saved in some folder.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now using the sdk code present in the actual question I created ReportDataSource using the standalone table and list of fields. Then created the Report using the same data source and the custom report template.&lt;/P&gt;&lt;P&gt;But the report that is being generated doesn't have the ReportHeader section and list of fields that are present in the custom template. ReportHeader element that is present in that new report is just one element which is the report name. But if I will use the same custom template using the Pro’s report creation tool it is working perfectly fine.&lt;/P&gt;&lt;P&gt;Let me know if you need anything. I think just some fields(in Details section) and some dynamic and static text in ReportHeader section and then through the Share tab save that report as a report template will be enough. We can then use the sdk code and the custom report template to check the new report.&lt;/P&gt;&lt;P&gt;This is my data:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RITASHKOUL_0-1720111860695.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/108832iB8F505B5B225F91E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RITASHKOUL_0-1720111860695.png" alt="RITASHKOUL_0-1720111860695.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;This is my report structure:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RITASHKOUL_1-1720112015668.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/108833i82878DFC96467726/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RITASHKOUL_1-1720112015668.png" alt="RITASHKOUL_1-1720112015668.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I saved this as report template:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RITASHKOUL_2-1720112074774.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/108834i4FA13797DF714649/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RITASHKOUL_2-1720112074774.png" alt="RITASHKOUL_2-1720112074774.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I fetched the correct custom report template but after creating the new report, the ReportHeader section is gone and its just one element. But it should be three: DateExported, PageNumber(Dynamic texts) and Welcome(static text)&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RITASHKOUL_3-1720112579051.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/108835i45EDFFDD4FC2902E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RITASHKOUL_3-1720112579051.png" alt="RITASHKOUL_3-1720112579051.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RITASHKOUL_1-1720113078301.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/108840i9004DB667CE156C6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RITASHKOUL_1-1720113078301.png" alt="RITASHKOUL_1-1720113078301.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;This is the new report that is being generated. As you can see, now only one element in the ReportHeader is present named same as the Report name and all the ReportHeader elements defined in the custom template are gone. If you will closely see the fields as well they are same but the structure (spacing) is different. Since in custom template I defined my own spacing but when report was created from sdk it took some default spacing between fields.&lt;/P&gt;&lt;P&gt;Code snippet is same as in the original question or what is provided in the sdk’s code snippet in the git repo.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jul 2024 17:24:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/report-generation-using-custom-templates/m-p/1501607#M11818</guid>
      <dc:creator>RITASHKOUL</dc:creator>
      <dc:date>2024-07-04T17:24:56Z</dc:date>
    </item>
    <item>
      <title>Re: Report generation using custom templates</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/report-generation-using-custom-templates/m-p/1501793#M11820</link>
      <description>&lt;P&gt;Thanks for the detailed explanation. I see the same behavior. Thanks for reporting this one.&lt;/P&gt;&lt;P&gt;I will post back if I can provide a workaround.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jul 2024 13:01:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/report-generation-using-custom-templates/m-p/1501793#M11820</guid>
      <dc:creator>UmaHarano</dc:creator>
      <dc:date>2024-07-05T13:01:52Z</dc:date>
    </item>
    <item>
      <title>Re: Report generation using custom templates</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/report-generation-using-custom-templates/m-p/1501850#M11822</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/9021"&gt;@UmaHarano&lt;/a&gt;&amp;nbsp;Thanks. Any workaround for this will be hugely appreciated.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jul 2024 15:03:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/report-generation-using-custom-templates/m-p/1501850#M11822</guid>
      <dc:creator>RITASHKOUL</dc:creator>
      <dc:date>2024-07-05T15:03:56Z</dc:date>
    </item>
    <item>
      <title>Re: Report generation using custom templates</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/report-generation-using-custom-templates/m-p/1501864#M11823</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/643744"&gt;@RITASHKOUL&lt;/a&gt;&amp;nbsp;After speaking with the Reports dev team, CreateReport method does not currently support "Custom Report Templates".&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jul 2024 15:16:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/report-generation-using-custom-templates/m-p/1501864#M11823</guid>
      <dc:creator>UmaHarano</dc:creator>
      <dc:date>2024-07-05T15:16:47Z</dc:date>
    </item>
    <item>
      <title>Re: Report generation using custom templates</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/report-generation-using-custom-templates/m-p/1501918#M11824</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/9021"&gt;@UmaHarano&lt;/a&gt;&amp;nbsp; What is the plan for supporting this? And any workaround since in our use case besides attribute list like structure we needed different formats as well? Also default templates have problem of not wrapping the content if it is too long and also list of fields gets truncated if added too many fields. Please let me know.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jul 2024 17:34:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/report-generation-using-custom-templates/m-p/1501918#M11824</guid>
      <dc:creator>RITASHKOUL</dc:creator>
      <dc:date>2024-07-05T17:34:24Z</dc:date>
    </item>
    <item>
      <title>Re: Report generation using custom templates</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/report-generation-using-custom-templates/m-p/1502260#M11830</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/9021"&gt;@UmaHarano&lt;/a&gt;&amp;nbsp;let me know if we can do something around it. So that we can support different formats with no wrapping issues.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jul 2024 06:15:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/report-generation-using-custom-templates/m-p/1502260#M11830</guid>
      <dc:creator>RITASHKOUL</dc:creator>
      <dc:date>2024-07-08T06:15:14Z</dc:date>
    </item>
    <item>
      <title>Re: Report generation using custom templates</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/report-generation-using-custom-templates/m-p/1502591#M11832</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/643744"&gt;@RITASHKOUL&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I afraid there is no easy workaround for this at this time. I will follow-up as soon as I have a timeline when this will be supported.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Uma&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jul 2024 16:52:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/report-generation-using-custom-templates/m-p/1502591#M11832</guid>
      <dc:creator>UmaHarano</dc:creator>
      <dc:date>2024-07-08T16:52:46Z</dc:date>
    </item>
    <item>
      <title>Re: Report generation using custom templates</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/report-generation-using-custom-templates/m-p/1502599#M11833</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/9021"&gt;@UmaHarano&lt;/a&gt;&amp;nbsp;One workaround that worked is adding our custom templates in the default templates path.&amp;nbsp;&lt;/P&gt;&lt;P&gt;For attribute type templates it is working but problem that is coming is when custom template is like Pro’s page per feature template. What I am seeing whenever I am creating report from default page per feature template first field will always be in top in the details section. But when I am creating my own template like page per feature template and adding the field, first field always gets added at the bottom in the details section in the reports content pane. And when report is generated from that template first field value goes into the last field and last goes to the first field. What is the way to bind to the exact field when creating our own report? I tried field order but didn’t &amp;nbsp;worked.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jul 2024 17:02:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/report-generation-using-custom-templates/m-p/1502599#M11833</guid>
      <dc:creator>RITASHKOUL</dc:creator>
      <dc:date>2024-07-08T17:02:11Z</dc:date>
    </item>
    <item>
      <title>Re: Report generation using custom templates</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/report-generation-using-custom-templates/m-p/1526953#M11994</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/9021"&gt;@UmaHarano&lt;/a&gt;&amp;nbsp;Will we get anything related to this in 3.3?&lt;/P&gt;</description>
      <pubDate>Mon, 26 Aug 2024 06:53:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/report-generation-using-custom-templates/m-p/1526953#M11994</guid>
      <dc:creator>RITASHKOUL</dc:creator>
      <dc:date>2024-08-26T06:53:23Z</dc:date>
    </item>
    <item>
      <title>Re: Report generation using custom templates</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/report-generation-using-custom-templates/m-p/1533504#M12011</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/643744"&gt;@RITASHKOUL&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do not have a set date yet for this functionality. I will post back as soon as I have more info.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Aug 2024 17:43:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/report-generation-using-custom-templates/m-p/1533504#M12011</guid>
      <dc:creator>UmaHarano</dc:creator>
      <dc:date>2024-08-30T17:43:53Z</dc:date>
    </item>
    <item>
      <title>Re: Report generation using custom templates</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/report-generation-using-custom-templates/m-p/1670102#M13291</link>
      <description>&lt;P&gt;Uma&lt;/P&gt;&lt;P&gt;Is this still the case that CreateReport does not support a Custom Report Template still?&lt;/P&gt;</description>
      <pubDate>Wed, 03 Dec 2025 14:34:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/report-generation-using-custom-templates/m-p/1670102#M13291</guid>
      <dc:creator>CraigRobinson1</dc:creator>
      <dc:date>2025-12-03T14:34:27Z</dc:date>
    </item>
  </channel>
</rss>

