Book a Demo

Author Topic: Documentation Template List Export  (Read 4070 times)

BruceTOGAF2

  • EA User
  • **
  • Posts: 74
  • Karma: +0/-0
    • View Profile
Documentation Template List Export
« on: December 17, 2019, 01:43:18 am »
How can I export a CSV list of al Documentation Templates, showing when they were created?


Geert Bellekens

  • EA Guru
  • *****
  • Posts: 13523
  • Karma: +574/-33
  • Make EA work for YOU!
    • View Profile
    • Enterprise Architect Consultant and Value Added Reseller
Re: Documentation Template List Export
« Reply #1 on: December 17, 2019, 03:01:12 am »
that info is stored in t_document
try this:

Code: [Select]
select d.DocName as template, d.author as template_group, d.docdate
from t_document d
where d.ElementType = 'SSDOCSTYLE'

Geert

BruceTOGAF2

  • EA User
  • **
  • Posts: 74
  • Karma: +0/-0
    • View Profile
Re: Documentation Template List Export
« Reply #2 on: December 17, 2019, 03:41:28 am »
@geert Thank you. Perfect