| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
 | | Quintiq file version 2.0 |  | #parent: #root |  | StaticMethod GetBrokersInfo () as String |  | { |  |   TextBody: |  |   [* |  |     result := ''; |  |      |  |     domain := DomainModel::Domain(); |  |      |  |     edibroker := selectsortedset( domain, EDIDefinitionManager.BrokerDefinitions, bd, bd.Name().ToUpper().FindString( 'EXPORT', 0 ) >=0, bd.Name() ); |  |      |  |     traverse( edibroker, Elements, e ) |  |     { |  |       tables := selectsortedset( e, Destination.astype( EDIXLSLinkDefinition ).Tables, table, true, table.Name() ); |  |        |  |       traverse( tables, Elements, table ) |  |       { |  |         result := result  |  |                   +"# ========================================================== #" + String::NewLine() |  |                   + "# Table name:" + table.Name() + String::NewLine(); |  |          |  |         columns := selectsortedset( table, Columns, c, true, c.Name() ); |  |          |  |         traverse( columns, Elements, c ) |  |         { |  |           result := result + c.Name() + String::NewLine();     |  |         } |  |       } |  |     } |  |      |  |     return result; |  |   *] |  | } | 
 |