Book a Demo

Author Topic: Document template - elements of child package  (Read 5587 times)

brback

  • EA User
  • **
  • Posts: 21
  • Karma: +1/-0
    • View Profile
Document template - elements of child package
« on: January 24, 2017, 02:25:07 am »
Is there any way to make a template for documentation that will list the elements of a child package?

This is my code for the template
Code: [Select]
package >
{Pkg.Notes}
child packages >
{Pkg.Name}
{Pkg.Notes}
< child packages
< package

I want something like {Element.Name} inside child packages

Eve

  • EA Administrator
  • EA Guru
  • *****
  • Posts: 8110
  • Karma: +119/-20
    • View Profile
Re: Document template - elements of child package
« Reply #1 on: January 24, 2017, 08:20:47 am »
Leave the child packages section empty and it will recursively use the package section. You can then add an element section to the package and report on the element names.

Nabil

  • EA User
  • **
  • Posts: 149
  • Karma: +5/-2
    • View Profile
    • View My LinkedIn Profile Here
Re: Document template - elements of child package
« Reply #2 on: January 25, 2017, 04:53:33 pm »
Try this format

package >
{Pkg.Name}
element >
{Element.Name}
< element
child packages >
< child packages
< package

BR,
Nabil
Nabil

brback

  • EA User
  • **
  • Posts: 21
  • Karma: +1/-0
    • View Profile
Re: Document template - elements of child package
« Reply #3 on: January 30, 2017, 04:57:17 am »
Thank you guys, this was exactly what I needed