<?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 Re: ArcGIS Pro Map Series Accessibility PDF Export Dynamic Titles in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-map-series-accessibility-pdf-export/m-p/1644819#M98484</link>
    <description>&lt;P&gt;As of ArcGIS Pro 3.5.3 it is not possible to update the PDF metadata for each page in the Accessibility tab. There may be some scripting options available with arcpy.mp, although I'm not 100% sure about that.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 22 Aug 2025 18:53:37 GMT</pubDate>
    <dc:creator>AubriOtis</dc:creator>
    <dc:date>2025-08-22T18:53:37Z</dc:date>
    <item>
      <title>ArcGIS Pro Map Series Accessibility PDF Export Dynamic Titles</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-map-series-accessibility-pdf-export/m-p/1644325#M98433</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Is it possible in a map series to customize each PDF export with a dynamic title in the PDF Metadata under the Accessibility tab?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Aug 2025 16:16:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-map-series-accessibility-pdf-export/m-p/1644325#M98433</guid>
      <dc:creator>TheronGale</dc:creator>
      <dc:date>2025-08-21T16:16:30Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro Map Series Accessibility PDF Export Dynamic Titles</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-map-series-accessibility-pdf-export/m-p/1644819#M98484</link>
      <description>&lt;P&gt;As of ArcGIS Pro 3.5.3 it is not possible to update the PDF metadata for each page in the Accessibility tab. There may be some scripting options available with arcpy.mp, although I'm not 100% sure about that.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Aug 2025 18:53:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-map-series-accessibility-pdf-export/m-p/1644819#M98484</guid>
      <dc:creator>AubriOtis</dc:creator>
      <dc:date>2025-08-22T18:53:37Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro Map Series Accessibility PDF Export Dynamic Titles</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-map-series-accessibility-pdf-export/m-p/1645596#M98538</link>
      <description>&lt;P&gt;If you can't do it during the export operation, you could always just change the PDF Metadata after the fact using pypdf.&amp;nbsp; You'll need to customize this for your desired title string, but the concept worked when I tested it.&lt;/P&gt;&lt;LI-CODE lang="python"&gt;from pypdf import PdfWriter, PdfReader
import os

# get project and layout vars
p = arcpy.mp.ArcGISProject("CURRENT")
layout_name = "Name of the layout with the map series"
l = p.listLayouts(layout_name)[0]

#directory to save the output pdfs
folder_path = r"where to save these pdfs"

if not l.mapSeries is None: #if the layout contains a MapSeries
    ms = l.mapSeries #define the mapSeries object
    if ms.enabled:                  
        ms = l.mapSeries
        for pageNum in range(1, ms.pageCount + 1): #Loop through pages
            # update mapseries and Export to PDF
            ms.currentPageNumber = pageNum
            pdf_file = os.path.join(folder_path,ms.pageRow.FIELDNAME1+'.pdf')
            l.exportToPDF(pdf_file)
            
            # Build you desired title string from the fieldnames
            title_string = "Metadata for map {}: {}".format(ms.pageRow.FIELDNAME1,ms.pageRow.FIELDNAME2)
            reader = PdfReader(pdf_file)
            writer = PdfWriter(clone_from=reader)
            writer.add_metadata({"/Title": title_string})
            with open(pdf_file, "wb") as f:
                writer.write(f)&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 26 Aug 2025 14:10:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-map-series-accessibility-pdf-export/m-p/1645596#M98538</guid>
      <dc:creator>BrennanSmith1</dc:creator>
      <dc:date>2025-08-26T14:10:00Z</dc:date>
    </item>
  </channel>
</rss>

