Book a Demo

Author Topic: Generate Documentation: Change order of connectors in fragment  (Read 3016 times)

Hurra

  • EA User
  • **
  • Posts: 184
  • Karma: +0/-0
    • View Profile
    • Find me at LinkedIn!
Generate Documentation: Change order of connectors in fragment
« on: October 08, 2019, 12:12:25 am »
Hello!

I have a template:
Code: [Select]
package>
element>

STUFF

embedded elements>

FRAGMENT

<embedded elements

<element
<packge

and a fragment:
Code: [Select]
packge>
element>

STUFF

connector>
target>
element>

TABLE

<element
<target
<connector

<element
<package

In the documentation I get everything I want for one exception. Each embedded element, tables its connectors. The order of that table is different for each element sent to fragment.

Can I somehow order this? By name of target-element, target-classifier or target-owner? By anything? Right now the tables are very confusing since it is always in a different order.

Thank you for your help!
always learning!

Geert Bellekens

  • EA Guru
  • *****
  • Posts: 13523
  • Karma: +574/-33
  • Make EA work for YOU!
    • View Profile
    • Enterprise Architect Consultant and Value Added Reseller
Re: Generate Documentation: Change order of connectors in fragment
« Reply #1 on: October 08, 2019, 12:23:18 am »
Probably not out of the box. You can report it as a bug, and if you are lucky they'll fix that some day.

In the mean time you can et by using an SQL Fragment.
With an "order by" statement in the query you can define your own preferred order.

Geert

Hurra

  • EA User
  • **
  • Posts: 184
  • Karma: +0/-0
    • View Profile
    • Find me at LinkedIn!
Re: Generate Documentation: Change order of connectors in fragment
« Reply #2 on: October 08, 2019, 01:30:48 am »
Thank you!

I made an SQL search as per your recommendation.
always learning!