View Javadoc

1   ////////////////////////////////////////////////////////////////////////////////
2   //CabaWeb
3   //Copyright (C) 2004  Thomas Vogt <Thomas.Vogt@TVC-Software.com>
4   //
5   //This library is free software; you can redistribute it and/or
6   //modify it under the terms of the GNU Lesser General Public
7   //License as published by the Free Software Foundation; either
8   //version 2.1 of the License, or (at your option) any later version.
9   //
10  //This library is distributed in the hope that it will be useful,
11  //but WITHOUT ANY WARRANTY; without even the implied warranty of
12  //MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  //Lesser General Public License for more details.
14  //
15  //You should have received a copy of the GNU Lesser General Public
16  //License along with this library; if not, write to the Free Software
17  //Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  ////////////////////////////////////////////////////////////////////////////////
19  
20  package org.fhw.cabaweb.data.initialdata;
21  
22  import java.util.Collection;
23  import java.util.Iterator;
24  
25  import org.apache.commons.logging.Log;
26  import org.apache.commons.logging.LogFactory;
27  
28  import org.fhw.cabaweb.data.DataInterfaceProjekte;
29  import org.fhw.cabaweb.data.DataInterfaceReporterzeugung;
30  import org.fhw.cabaweb.data.DataInterfaceReportnamen;
31  import org.fhw.cabaweb.data.DataInterfaceSprachen;
32  import org.fhw.cabaweb.data.constants.Constants;
33  import org.fhw.cabaweb.ojb.dataobjects.Projekte;
34  import org.fhw.cabaweb.ojb.dataobjects.Reporterzeugung;
35  import org.fhw.cabaweb.ojb.dataobjects.Reportnamen;
36  import org.fhw.cabaweb.ojb.dataobjects.Sprachen;
37  
38  /***
39   * Die Klasse tr&auml;gt die Startwerte (Zuordnungen) für die Voreinstellungsdaten in die Tabellen ein.
40   *
41   * @author  <a href="mailto:thomas.vogt@tvc-software.com">Thomas Vogt</a>
42   * @version Version 1.0 02.09.2004
43   */
44  public final class ReporterzeugungenInitialisierung
45  {
46      /*** Commons Logging Instanz */
47      private static Log log = LogFactory.getLog("org.fhw.cabaweb.data.initialdata.ReporterzeugungenInitialisierung");
48  
49      /* ----- Konstruktoren / Destruktoren ----- */
50  
51      /***
52       * Standardkonstruktor der nicht zug&auml;nglich sein soll, da dies eine Utility Klasse ist
53       */
54      protected ReporterzeugungenInitialisierung()
55      {
56          throw new UnsupportedOperationException(); // Aufrufe aus eventuellen SubKlassen verhindern
57      }
58  
59      /***
60       * Tr&auml;gt die Startwerte (Zuordnungen) für die Reporterzeugungen in die Datenbank ein
61       *
62       * @param projektnummer Die Projektnummer
63       */
64      public final static void ReporterzeugungenInitialisieren(Integer projektnummer)
65      {
66          boolean returnvalue = true;
67  
68          /*** Data Interface (indirekter Zugriff auf die OJB Ebene) initialisieren */
69          DataInterfaceProjekte dip = new DataInterfaceProjekte();
70          /*** Data Interface (indirekter Zugriff auf die OJB Ebene) initialisieren */
71          DataInterfaceSprachen dis = new DataInterfaceSprachen();
72          /*** Data Interface (indirekter Zugriff auf die OJB Ebene) initialisieren */
73          DataInterfaceReportnamen dirn = new DataInterfaceReportnamen();
74          /*** Data Interface (indirekter Zugriff auf die OJB Ebene) initialisieren */
75          DataInterfaceReporterzeugung dire = new DataInterfaceReporterzeugung();
76  
77          Projekte projekt = (Projekte) dip.sucheProjektnummer(projektnummer);
78          Collection sprachen = dis.sucheSprachname(Constants.DEUTSCH_KEY);
79          Sprachen sprache = null;
80          Iterator sprachenIterator = sprachen.iterator();
81          if (sprachenIterator.hasNext())
82          {
83              sprache = (Sprachen) sprachenIterator.next();
84          }
85  
86          /* Reportnamen */
87          returnvalue = dirn.erzeugen(new Reportnamen(projekt, null, Constants.QUARTALSREPORT_KEY, "Quartal"));
88          if (!returnvalue)
89              log.error(" FAILED");
90          returnvalue = dirn.erzeugen(new Reportnamen(projekt, null, Constants.BEWERTUNGSUEBERBLICK_KEY, "Bewertung"));
91          if (!returnvalue)
92              log.error(" FAILED");
93  
94          Collection reportnamen = dirn.sucheBezeichnung(projektnummer, "Quartals-Report");
95          Reportnamen reportname = null;
96          Iterator reportnamenIterator = reportnamen.iterator();
97          if (reportnamenIterator.hasNext())
98          {
99              reportname = (Reportnamen) reportnamenIterator.next();
100         }
101 
102         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(1), new Integer(0), sprache, Constants.EG_GRUNDDATEN_KEY, null, null, null, "", "", new Boolean(false), null, null, null, null, null, null, "", "", "", new Boolean(true), new Boolean(true), new Boolean(true), new Boolean(true)));
103         if (!returnvalue)
104             log.error(" FAILED");
105         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(1), sprache, null, null, null, "Tabelle 21: Ergebnisse zur Erfolgsrechnung", "center", "bold", new Boolean(false), null, null, null, null, null, null, "", "", "", new Boolean(false), new Boolean(false), new Boolean(false), new Boolean(false)));
106         if (!returnvalue)
107             log.error(" FAILED");
108         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(2), sprache, null, null, null, "Alle Werte in 1.000 EUR", "right", "normal", new Boolean(false), null, null, null, null, null, null, "", "", "", new Boolean(false), new Boolean(false), new Boolean(false), new Boolean(false)));
109         if (!returnvalue)
110             log.error(" FAILED");
111         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(3), sprache, null, null, Constants.EF_ERFOLGSRECHNUNGVERTRIEB_KEY, null, "left", "bold", new Boolean(false), null, null, null, null, null, null, "right", "bold", "right", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
112         if (!returnvalue)
113             log.error(" FAILED");
114         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(4), sprache, null, null, Constants.EF_ERFOLGSRECHNUNGUMSATZERLOESE_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "middle", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
115         if (!returnvalue)
116             log.error(" FAILED");
117         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(5), sprache, null, null, Constants.EF_ERFOLGSRECHNUNGMARKETINGKOSTEN_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "middle", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
118         if (!returnvalue)
119             log.error(" FAILED");
120         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(6), sprache, null, null, Constants.EF_ERFOLGSRECHNUNGLAGERZUGANGFERTIGPRODUKTE_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "middle", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
121         if (!returnvalue)
122             log.error(" FAILED");
123         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(7), sprache, null, null, Constants.EF_ERFOLGSRECHNUNGLAGERABGANGFERTIGPRODUKTE_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "middle", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
124         if (!returnvalue)
125             log.error(" FAILED");
126         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(8), sprache, null, null, Constants.EF_ERFOLGSRECHNUNGLAGERUNGSKOSTENFERTIGPRODUKTE_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "middle", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
127         if (!returnvalue)
128             log.error(" FAILED");
129         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(9), sprache, null, null, Constants.EF_ERFOLGSRECHNUNGMARKTFORSCHUNGSKOSTEN_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "middle", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
130         if (!returnvalue)
131             log.error(" FAILED");
132         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(10), sprache, null, null, null, "&nbsp;", "right", "normal", new Boolean(false), null, null, null, null, null, null, "", "", "", new Boolean(false), new Boolean(false), new Boolean(false), new Boolean(false)));
133         if (!returnvalue)
134             log.error(" FAILED");
135         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(11), sprache, null, null, Constants.EF_ERFOLGSRECHNUNGPRODUKTION_KEY, null, "left", "bold", new Boolean(false), null, null, null, null, null, null, "right", "bold", "right", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
136         if (!returnvalue)
137             log.error(" FAILED");
138         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(12), sprache, null, null, Constants.EF_ERFOLGSRECHNUNGFORSCHUNGSUNDENTWICKLUNGSKOSTEN_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "middle", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
139         if (!returnvalue)
140             log.error(" FAILED");
141         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(13), sprache, null, null, Constants.EF_ERFOLGSRECHNUNGLIZENZERWERBSKOSTEN_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "middle", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
142         if (!returnvalue)
143             log.error(" FAILED");
144         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(14), sprache, null, null, Constants.EF_ERFOLGSRECHNUNGLIZENZVERKAUFSERLOESE_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "middle", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
145         if (!returnvalue)
146             log.error(" FAILED");
147         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(15), sprache, null, null, Constants.EF_ERFOLGSRECHNUNGAUFARBEITUNGSKOSTEN_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "middle", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
148         if (!returnvalue)
149             log.error(" FAILED");
150         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(16), sprache, null, null, Constants.EF_ERFOLGSRECHNUNGQUALITAETSSICHERUNGSKOSTEN_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "middle", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
151         if (!returnvalue)
152             log.error(" FAILED");
153         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(17), sprache, null, null, Constants.EF_ERFOLGSRECHNUNGFERTIGUNGSLOHNKOSTEN_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "middle", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
154         if (!returnvalue)
155             log.error(" FAILED");
156         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(18), sprache, null, null, Constants.EF_ERFOLGSRECHNUNGFLKOHNEUEBERSTUNDENUNDNACHARBEIT_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "left", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
157         if (!returnvalue)
158             log.error(" FAILED");
159         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(19), sprache, null, null, Constants.EF_ERFOLGSRECHNUNGUEBERSTUNDENZUSCHLAEGEFLKOHNEUEBERSTUNDENUNDNACHARBEIT_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "left", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
160         if (!returnvalue)
161             log.error(" FAILED");
162         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(20), sprache, null, null, Constants.EF_ERFOLGSRECHNUNGNACHARBEITSKOSTENOHNEUEBERSTUNDEN_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "left", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
163         if (!returnvalue)
164             log.error(" FAILED");
165         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(21), sprache, null, null, Constants.EF_ERFOLGSRECHNUNGUEBERSTUNDENZUSCHLAEGENACHARBEITSKOSTENOHNEUEBERSTUNDEN_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "left", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
166         if (!returnvalue)
167             log.error(" FAILED");
168         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(22), sprache, null, null, Constants.EF_ERFOLGSRECHNUNGSCHICHTWECHSELKOSTEN_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "middle", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
169         if (!returnvalue)
170             log.error(" FAILED");
171         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(23), sprache, null, null, Constants.EF_ERFOLGSRECHNUNGABSCHREIBUNGSKOSTEN_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "middle", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
172         if (!returnvalue)
173             log.error(" FAILED");
174         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(24), sprache, null, null, null, "&nbsp;", "right", "normal", new Boolean(false), null, null, null, null, null, null, "", "", "", new Boolean(false), new Boolean(false), new Boolean(false), new Boolean(false)));
175         if (!returnvalue)
176             log.error(" FAILED");
177         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(25), sprache, null, null, Constants.EF_ERFOLGSRECHNUNGBESCHAFFUNG_KEY, null, "left", "bold", new Boolean(false), null, null, null, null, null, null, "right", "bold", "right", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
178         if (!returnvalue)
179             log.error(" FAILED");
180         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(26), sprache, null, null, Constants.EF_ERFOLGSRECHNUNGANLAGENPROJEKTIERUNGSKOSTEN_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "middle", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
181         if (!returnvalue)
182             log.error(" FAILED");
183         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(27), sprache, null, null, Constants.EF_ERFOLGSRECHNUNGROHSTOFFVERBRAUCHSKOSTEN_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "middle", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
184         if (!returnvalue)
185             log.error(" FAILED");
186         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(28), sprache, null, null, Constants.EF_ERFOLGSRECHNUNGROHSTOFFBESTELLUNGSKOSTEN_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "middle", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
187         if (!returnvalue)
188             log.error(" FAILED");
189         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(29), sprache, null, null, Constants.EF_ERFOLGSRECHNUNGLAGERKOSTENROHSTOFFE_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "middle", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
190         if (!returnvalue)
191             log.error(" FAILED");
192         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(30), sprache, null, null, null, "&nbsp;", "right", "normal", new Boolean(false), null, null, null, null, null, null, "", "", "", new Boolean(false), new Boolean(false), new Boolean(false), new Boolean(false)));
193         if (!returnvalue)
194             log.error(" FAILED");
195         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(31), sprache, null, null, Constants.EF_ERFOLGSRECHNUNGOVERHEAD_KEY, null, "left", "bold", new Boolean(false), null, null, null, null, null, null, "right", "bold", "right", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
196         if (!returnvalue)
197             log.error(" FAILED");
198         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(32), sprache, null, null, Constants.EF_ERFOLGSRECHNUNGVERWALTUNGSKOSTEN_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "middle", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
199         if (!returnvalue)
200             log.error(" FAILED");
201         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(33), sprache, null, null, Constants.EF_ERFOLGSRECHNUNGBERATUNGSKOSTEN_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "middle", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
202         if (!returnvalue)
203             log.error(" FAILED");
204         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(34), sprache, null, null, Constants.EF_ERFOLGSRECHNUNGZINSKOSTENKONTOKORRENTKREDIT_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "middle", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
205         if (!returnvalue)
206             log.error(" FAILED");
207         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(35), sprache, null, null, Constants.EF_ERFOLGSRECHNUNGZINSKOSTENBANKDARLEHEN_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "bold", "middle", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
208         if (!returnvalue)
209             log.error(" FAILED");
210         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(36), sprache, null, null, null, "&nbsp;", "right", "normal", new Boolean(false), null, null, null, null, null, null, "", "", "", new Boolean(false), new Boolean(false), new Boolean(false), new Boolean(false)));
211         if (!returnvalue)
212             log.error(" FAILED");
213         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(37), sprache, null, null, null, "(5) ERFOLGSVERWENDUNG", "left", "bold", new Boolean(false), null, null, null, null, null, null, "", "", "", new Boolean(false), new Boolean(false), new Boolean(false), new Boolean(false)));
214         if (!returnvalue)
215             log.error(" FAILED");
216         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(38), sprache, null, null, Constants.EF_ERFOLGSRECHNUNGERFOLGVORSTEUERN_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "bold", "right", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
217         if (!returnvalue)
218             log.error(" FAILED");
219         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(39), sprache, null, null, Constants.EF_ERFOLGSRECHNUNGSTEUERN_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "right", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
220         if (!returnvalue)
221             log.error(" FAILED");
222         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(40), sprache, null, null, Constants.EF_ERFOLGSRECHNUNGERFOLGNACHSTEUERN_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "right", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
223         if (!returnvalue)
224             log.error(" FAILED");
225         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(41), sprache, null, null, Constants.EF_ERFOLGSRECHNUNGDIVIDENDE_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "right", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
226         if (!returnvalue)
227             log.error(" FAILED");
228         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(2), new Integer(42), sprache, null, null, Constants.EF_ERFOLGSRECHNUNGRUECKLAGENZUFUEHRUNG_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "bold", "right", new Boolean(true), new Boolean(false), new Boolean(true), new Boolean(true)));
229         if (!returnvalue)
230             log.error(" FAILED");
231         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(3), new Integer(43), sprache, null, null, null, "Tabelle 22: Ergebnisse zur Verm&ouml;gensrechnung", "center", "bold", new Boolean(false), null, null, null, null, null, null, "right", "bold", "left", new Boolean(false), new Boolean(false), new Boolean(false), new Boolean(false)));
232         if (!returnvalue)
233             log.error(" FAILED");
234         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(3), new Integer(44), sprache, null, null, null, "Alle Werte in 1.000 EUR", "right", "normal", new Boolean(false), null, null, null, null, null, null, "", "", "", new Boolean(false), new Boolean(false), new Boolean(false), new Boolean(false)));
235         if (!returnvalue)
236             log.error(" FAILED");
237         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(3), new Integer(45), sprache, null, null, Constants.EF_VERMOEGENSRECHNUNGAKTIVA_KEY, null, "left", "bold", new Boolean(false), null, null, null, null, null, null, "right", "bold", "right", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
238         if (!returnvalue)
239             log.error(" FAILED");
240         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(3), new Integer(46), sprache, null, null, Constants.EF_VERMOEGENSRECHNUNGANLAGEVERMOEGEN_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "left", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
241         if (!returnvalue)
242             log.error(" FAILED");
243         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(3), new Integer(47), sprache, null, null, Constants.EF_VERMOEGENSRECHNUNGROHSTOFFLAGERBESTAND_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "left", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
244         if (!returnvalue)
245             log.error(" FAILED");
246         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(3), new Integer(48), sprache, null, null, Constants.EF_VERMOEGENSRECHNUNGLAGERBESTANDFERTIGPRODUKTE_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "left", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
247         if (!returnvalue)
248             log.error(" FAILED");
249         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(3), new Integer(49), sprache, null, null, Constants.EF_VERMOEGENSRECHNUNGKASSE_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "left", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
250         if (!returnvalue)
251             log.error(" FAILED");
252         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(3), new Integer(50), sprache, null, null, Constants.EF_VERMOEGENSRECHNUNGKAPITALERHOEHUNG_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "left", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
253         if (!returnvalue)
254             log.error(" FAILED");
255         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(3), new Integer(51), sprache, null, null, null, "&nbsp;", "right", "normal", new Boolean(false), null, null, null, null, null, null, "", "", "", new Boolean(false), new Boolean(false), new Boolean(false), new Boolean(false)));
256         if (!returnvalue)
257             log.error(" FAILED");
258         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(3), new Integer(52), sprache, null, null, Constants.EF_VERMOEGENSRECHNUNGPASSIVA_KEY, null, "left", "bold", new Boolean(false), null, null, null, null, null, null, "right", "bold", "right", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
259         if (!returnvalue)
260             log.error(" FAILED");
261         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(3), new Integer(53), sprache, null, null, Constants.EF_VERMOEGENSRECHNUNGEIGENKAPITAL_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "left", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
262         if (!returnvalue)
263             log.error(" FAILED");
264         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(3), new Integer(54), sprache, null, null, Constants.EF_VERMOEGENSRECHNUNGUNVERZINSLICHEVERBINDLICHKEITEN_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "left", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
265         if (!returnvalue)
266             log.error(" FAILED");
267         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(3), new Integer(55), sprache, null, null, Constants.EF_VERMOEGENSRECHNUNGKONTOKORRENTKREDIT_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "left", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
268         if (!returnvalue)
269             log.error(" FAILED");
270         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(3), new Integer(56), sprache, null, null, Constants.EF_VERMOEGENSRECHNUNGBANKKREDIT_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "left", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
271         if (!returnvalue)
272             log.error(" FAILED");
273         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(3), new Integer(57), sprache, null, null, null, "&nbsp;", "right", "normal", new Boolean(false), null, null, null, null, null, null, "", "", "", new Boolean(false), new Boolean(false), new Boolean(true), new Boolean(false)));
274         if (!returnvalue)
275             log.error(" FAILED");
276         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(3), new Integer(58), sprache, null, null, null, "Tabelle 23: Ergebnisse zur Finanzierung", "center", "bold", new Boolean(false), null, null, null, null, null, null, "", "", "", new Boolean(false), new Boolean(false), new Boolean(false), new Boolean(false)));
277         if (!returnvalue)
278             log.error(" FAILED");
279         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(4), new Integer(59), sprache, Constants.EG_FINANZIERUNG_KEY, null, null, null, "", "", new Boolean(false), null, null, null, null, null, null, "", "", "", new Boolean(true), new Boolean(false), new Boolean(true), new Boolean(true)));
280         if (!returnvalue)
281             log.error(" FAILED");
282         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(4), new Integer(60), sprache, Constants.EG_ENTSCHEIDUNGEN_KEY, null, null, null, "", "", new Boolean(false), null, null, null, null, null, null, "", "", "", new Boolean(true), new Boolean(true), new Boolean(true), new Boolean(true)));
283         if (!returnvalue)
284             log.error(" FAILED");
285         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(61), sprache, null, null, null, "Tabelle A1.1: Ergebnisse zur Voll-Kostenrechnung", "center", "bold", new Boolean(false), null, null, null, null, null, null, "", "", "", new Boolean(false), new Boolean(false), new Boolean(false), new Boolean(false)));
286         if (!returnvalue)
287             log.error(" FAILED");
288         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(62), sprache, null, null, null, "Alle Werte in EUR pro &quot;gutes&quot; St&uuml;ck", "right", "normal", new Boolean(false), null, null, null, null, null, null, "", "", "", new Boolean(false), new Boolean(false), new Boolean(false), new Boolean(false)));
289         if (!returnvalue)
290             log.error(" FAILED");
291         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(63), sprache, null, null, null, "&nbsp;", "right", "normal", new Boolean(false), null, null, null, null, null, null, "", "", "", new Boolean(false), new Boolean(false), new Boolean(false), new Boolean(false)));
292         if (!returnvalue)
293             log.error(" FAILED");
294         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(64), sprache, null, null, Constants.EF_VOLLKOSTENRECHNUNGERLOES_KEY, null, "left", "bold", new Boolean(false), null, null, null, null, null, null, "right", "bold", "right", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
295         if (!returnvalue)
296             log.error(" FAILED");
297         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(65), sprache, null, null, null, "&nbsp;", "right", "normal", new Boolean(false), null, null, null, null, null, null, "", "", "", new Boolean(false), new Boolean(false), new Boolean(false), new Boolean(false)));
298         if (!returnvalue)
299             log.error(" FAILED");
300         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(66), sprache, null, null, Constants.EF_VOLLKOSTENRECHNUNGKOSTEN_KEY, null, "left", "bold", new Boolean(false), null, null, null, null, null, null, "right", "bold", "right", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
301         if (!returnvalue)
302             log.error(" FAILED");
303         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(67), sprache, null, null, null, "&nbsp;", "right", "normal", new Boolean(false), null, null, null, null, null, null, "", "", "", new Boolean(false), new Boolean(false), new Boolean(false), new Boolean(false)));
304         if (!returnvalue)
305             log.error(" FAILED");
306         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(68), sprache, null, null, Constants.EF_VOLLKOSTENRECHNUNGVERTRIEBSKOSTEN_KEY, null, "left", "italic", new Boolean(false), null, null, null, null, null, null, "right", "italic", "middle", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
307         if (!returnvalue)
308             log.error(" FAILED");
309         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(69), sprache, null, null, Constants.EF_VOLLKOSTENRECHNUNGMARKETING_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "left", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
310         if (!returnvalue)
311             log.error(" FAILED");
312         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(70), sprache, null, null, Constants.EF_VOLLKOSTENRECHNUNGLAGERUNGVONFERTIGPRODUKTEN_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "left", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
313         if (!returnvalue)
314             log.error(" FAILED");
315         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(71), sprache, null, null, Constants.EF_VOLLKOSTENRECHNUNGBERATUNGUNDMARKTFORSCHUNG_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "left", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
316         if (!returnvalue)
317             log.error(" FAILED");
318         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(72), sprache, null, null, null, "&nbsp;", "right", "normal", new Boolean(false), null, null, null, null, null, null, "", "", "", new Boolean(false), new Boolean(false), new Boolean(false), new Boolean(false)));
319         if (!returnvalue)
320             log.error(" FAILED");
321         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(73), sprache, null, null, Constants.EF_VOLLKOSTENRECHNUNGHERSTELLEINZELKOSTEN_KEY, null, "left", "italic", new Boolean(false), null, null, null, null, null, null, "right", "italic", "middle", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
322         if (!returnvalue)
323             log.error(" FAILED");
324         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(74), sprache, null, null, Constants.EF_VOLLKOSTENRECHNUNGLOEHNEOHNEUEBERSTUNDENZUSCHLAG_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "left", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
325         if (!returnvalue)
326             log.error(" FAILED");
327         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(75), sprache, null, null, Constants.EF_VOLLKOSTENRECHNUNGUEBERSTUNDENZUSCHLAG_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "left", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
328         if (!returnvalue)
329             log.error(" FAILED");
330         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(76), sprache, null, null, Constants.EF_VOLLKOSTENRECHNUNGROHSTOFFE_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "left", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
331         if (!returnvalue)
332             log.error(" FAILED");
333         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(77), sprache, null, null, null, "&nbsp;", "right", "normal", new Boolean(false), null, null, null, null, null, null, "", "", "", new Boolean(false), new Boolean(false), new Boolean(false), new Boolean(false)));
334         if (!returnvalue)
335             log.error(" FAILED");
336         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(78), sprache, null, null, Constants.EF_VOLLKOSTENRECHNUNGHERSTELLGEMEINKOSTEN_KEY, null, "left", "italic", new Boolean(false), null, null, null, null, null, null, "right", "italic", "middle", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
337         if (!returnvalue)
338             log.error(" FAILED");
339         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(79), sprache, null, null, Constants.EF_VOLLKOSTENRECHNUNGROHSTOFFLAGERUNGUNDBESTELLUNG_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "left", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
340         if (!returnvalue)
341             log.error(" FAILED");
342         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(80), sprache, null, null, Constants.EF_VOLLKOSTENRECHNUNGABSCHREIBUNGUNDANLAGENPROJEKTIERUNG_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "left", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
343         if (!returnvalue)
344             log.error(" FAILED");
345         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(81), sprache, null, null, Constants.EF_VOLLKOSTENRECHNUNGQUALITAETSSICHERUNG_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "left", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
346         if (!returnvalue)
347             log.error(" FAILED");
348         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(82), sprache, null, null, Constants.EF_VOLLKOSTENRECHNUNGSCHICHTWECHSEL_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "left", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
349         if (!returnvalue)
350             log.error(" FAILED");
351         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(83), sprache, null, null, Constants.EF_VOLLKOSTENRECHNUNGFUNDEAUFARBEITUNGTRANSFERERTRAEGE_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "left", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
352         if (!returnvalue)
353             log.error(" FAILED");
354         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(84), sprache, null, null, Constants.EF_VOLLKOSTENRECHNUNGZINSEN_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "left", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
355         if (!returnvalue)
356             log.error(" FAILED");
357         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(85), sprache, null, null, Constants.EF_VOLLKOSTENRECHNUNGVERWALTUNG_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "left", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
358         if (!returnvalue)
359             log.error(" FAILED");
360         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(86), sprache, null, null, null, "&nbsp;", "right", "normal", new Boolean(false), null, null, null, null, null, null, "", "", "", new Boolean(false), new Boolean(false), new Boolean(false), new Boolean(false)));
361         if (!returnvalue)
362             log.error(" FAILED");
363         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(87), sprache, null, null, Constants.EF_VOLLKOSTENRECHNUNGGEWINN_KEY, null, "left", "bold", new Boolean(false), null, null, null, null, null, null, "right", "bold", "right", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
364         if (!returnvalue)
365             log.error(" FAILED");
366         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(88), sprache, null, null, null, "&nbsp;", "right", "normal", new Boolean(false), null, null, null, null, null, null, "", "", "", new Boolean(false), new Boolean(false), new Boolean(false), new Boolean(false)));
367         if (!returnvalue)
368             log.error(" FAILED");
369         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(89), sprache, null, null, Constants.EF_VOLLKOSTENRECHNUNGPRODUZIERTEMENGE_KEY, null, "left", "bold", new Boolean(false), null, null, null, null, null, null, "right", "bold", "right", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
370         if (!returnvalue)
371             log.error(" FAILED");
372         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(90), sprache, null, null, null, "&nbsp;", "right", "normal", new Boolean(false), null, null, null, null, null, null, "", "", "", new Boolean(false), new Boolean(false), new Boolean(false), new Boolean(false)));
373         if (!returnvalue)
374             log.error(" FAILED");
375         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(91), sprache, null, null, Constants.EF_VOLLKOSTENRECHNUNGABGESETZTEMENGE_KEY, null, "left", "bold", new Boolean(false), null, null, null, null, null, null, "right", "bold", "right", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
376         if (!returnvalue)
377             log.error(" FAILED");
378         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(92), sprache, null, null, null, "&nbsp;", "right", "normal", new Boolean(false), null, null, null, null, null, null, "", "", "", new Boolean(false), new Boolean(false), new Boolean(true), new Boolean(false)));
379         if (!returnvalue)
380             log.error(" FAILED");
381         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(93), sprache, null, null, null, "Tabelle A1.2: Ergebnisse zur Grenz-Kostenrechnung", "center", "bold", new Boolean(false), null, null, null, null, null, null, "", "", "", new Boolean(false), new Boolean(false), new Boolean(false), new Boolean(false)));
382         if (!returnvalue)
383             log.error(" FAILED");
384         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(94), sprache, null, null, null, "Alle Werte in EUR pro &quot;gutes&quot; St&uuml;ck", "right", "normal", new Boolean(false), null, null, null, null, null, null, "", "", "", new Boolean(false), new Boolean(false), new Boolean(false), new Boolean(false)));
385         if (!returnvalue)
386             log.error(" FAILED");
387         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(95), sprache, null, null, null, "&nbsp;", "right", "normal", new Boolean(false), null, null, null, null, null, null, "", "", "", new Boolean(false), new Boolean(false), new Boolean(false), new Boolean(false)));
388         if (!returnvalue)
389             log.error(" FAILED");
390         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(96), sprache, null, null, Constants.EF_GRENZKOSTENRECHNUNGGRENZERLOES_KEY, null, "left", "bold", new Boolean(false), null, null, null, null, null, null, "right", "bold", "right", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
391         if (!returnvalue)
392             log.error(" FAILED");
393         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(97), sprache, null, null, null, "&nbsp;", "right", "normal", new Boolean(false), null, null, null, null, null, null, "", "", "", new Boolean(false), new Boolean(false), new Boolean(false), new Boolean(false)));
394         if (!returnvalue)
395             log.error(" FAILED");
396         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(98), sprache, null, null, Constants.EF_GRENZKOSTENRECHNUNGGRENZMARKETINGKOSTEN_KEY, null, "left", "bold", new Boolean(false), null, null, null, null, null, null, "right", "bold", "right", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
397         if (!returnvalue)
398             log.error(" FAILED");
399         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(99), sprache, null, null, null, "&nbsp;", "right", "normal", new Boolean(false), null, null, null, null, null, null, "", "", "", new Boolean(false), new Boolean(false), new Boolean(false), new Boolean(false)));
400         if (!returnvalue)
401             log.error(" FAILED");
402         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(100), sprache, null, null, Constants.EF_GRENZKOSTENRECHNUNGGRENZHERSTELLKOSTEN_KEY, null, "left", "bold", new Boolean(false), null, null, null, null, null, null, "right", "bold", "right", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
403         if (!returnvalue)
404             log.error(" FAILED");
405         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(101), sprache, null, null, Constants.EF_GRENZKOSTENRECHNUNGLOEHNEOHNEUEBERSTUNDENZUSCHLAG_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "middle", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
406         if (!returnvalue)
407             log.error(" FAILED");
408         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(102), sprache, null, null, Constants.EF_GRENZKOSTENRECHNUNGUEBERSTUNDENZUSCHLAG_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "middle", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
409         if (!returnvalue)
410             log.error(" FAILED");
411         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(103), sprache, null, null, Constants.EF_GRENZKOSTENRECHNUNGROHSTOFFE_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "middle", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
412         if (!returnvalue)
413             log.error(" FAILED");
414         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(104), sprache, null, null, Constants.EF_GRENZKOSTENRECHNUNGQUALITAETSSICHERUNG_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "middle", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
415         if (!returnvalue)
416             log.error(" FAILED");
417         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(105), sprache, null, null, Constants.EF_GRENZKOSTENRECHNUNGSCHICHTWECHSEL_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "middle", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
418         if (!returnvalue)
419             log.error(" FAILED");
420         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(106), sprache, null, null, Constants.EF_GRENZKOSTENRECHNUNGVERWALTUNG_KEY, null, "left", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "middle", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
421         if (!returnvalue)
422             log.error(" FAILED");
423         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(107), sprache, null, null, null, "&nbsp;", "right", "normal", new Boolean(false), null, null, null, null, null, null, "", "", "", new Boolean(false), new Boolean(false), new Boolean(false), new Boolean(false)));
424         if (!returnvalue)
425             log.error(" FAILED");
426         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(108), sprache, null, null, Constants.EF_GRENZKOSTENRECHNUNGGRENZGEWINN_KEY, null, "left", "bold", new Boolean(false), null, null, null, null, null, null, "right", "bold", "right", new Boolean(true), new Boolean(false), new Boolean(false), new Boolean(false)));
427         if (!returnvalue)
428             log.error(" FAILED");
429         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(109), sprache, null, null, null, "&nbsp;", "right", "normal", new Boolean(false), null, null, null, null, null, null, "", "", "", new Boolean(false), new Boolean(false), new Boolean(false), new Boolean(false)));
430         if (!returnvalue)
431             log.error(" FAILED");
432         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(5), new Integer(110), sprache, null, null, Constants.EF_GRENZKOSTENRECHNUNGPRODUKTIONINLETZTERZONE_KEY, null, "left", "bold", new Boolean(false), null, null, null, null, null, null, "right", "bold", "right", new Boolean(true), new Boolean(false), new Boolean(true), new Boolean(true)));
433         if (!returnvalue)
434             log.error(" FAILED");
435         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(6), new Integer(111), sprache, null, null, null, "&nbsp;", "right", "normal", new Boolean(false), null, null, null, null, null, null, "", "", "", new Boolean(false), new Boolean(false), new Boolean(true), new Boolean(true)));
436         if (!returnvalue)
437             log.error(" FAILED");
438         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(7), new Integer(112), sprache, null, null, null, "Tabelle 25: Marktforschungsdienst", "center", "bold", new Boolean(false), null, null, null, null, null, null, "", "", "", new Boolean(false), new Boolean(false), new Boolean(true), new Boolean(false)));
439         if (!returnvalue)
440             log.error(" FAILED");
441         returnvalue =
442             dire.erzeugen(new Reporterzeugung(reportname, new Integer(7), new Integer(113), sprache, null, null, "Erfolgsrechnung Erfolg vor Steuern", null, "left", "normal", new Boolean(true), "Unternehmen", Constants.EF_ENTSCHEIDUNGMARKTFORSCHUNGSDIENST_KEY, "0", "Integer", null, null, "right", "normal", "right", new Boolean(true), new Boolean(true), new Boolean(false), new Boolean(false)));
443         if (!returnvalue)
444             log.error(" FAILED");
445         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(7), new Integer(114), sprache, null, null, "Entscheidung Verkaufspreis", null, "left", "normal", new Boolean(true), "Unternehmen", Constants.EF_ENTSCHEIDUNGMARKTFORSCHUNGSDIENST_KEY, "1", "Integer", null, null, "right", "normal", "right", new Boolean(true), new Boolean(true), new Boolean(false), new Boolean(false)));
446         if (!returnvalue)
447             log.error(" FAILED");
448         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(7), new Integer(115), sprache, null, null, "Grunddaten Abgesetzte Menge", null, "left", "normal", new Boolean(true), "Unternehmen", Constants.EF_ENTSCHEIDUNGMARKTFORSCHUNGSDIENST_KEY, "2", "Integer", null, null, "right", "normal", "right", new Boolean(true), new Boolean(true), new Boolean(false), new Boolean(false)));
449         if (!returnvalue)
450             log.error(" FAILED");
451         returnvalue =
452             dire.erzeugen(
453                 new Reporterzeugung(
454                     reportname,
455                     new Integer(7),
456                     new Integer(116),
457                     sprache,
458                     null,
459                     null,
460                     "Grunddaten Produzierte Produktart im laufenden Quartal",
461                     null,
462                     "left",
463                     "normal",
464                     new Boolean(true),
465                     "Unternehmen",
466                     Constants.EF_ENTSCHEIDUNGMARKTFORSCHUNGSDIENST_KEY,
467                     "3",
468                     "Integer",
469                     null,
470                     null,
471                     "right",
472                     "normal",
473                     "right",
474                     new Boolean(true),
475                     new Boolean(true),
476                     new Boolean(false),
477                     new Boolean(false)));
478         if (!returnvalue)
479             log.error(" FAILED");
480         returnvalue =
481             dire.erzeugen(
482                 new Reporterzeugung(
483                     reportname,
484                     new Integer(7),
485                     new Integer(117),
486                     sprache,
487                     null,
488                     null,
489                     "Grunddaten Maximal moegliche Produktart im Folgequartal",
490                     null,
491                     "left",
492                     "normal",
493                     new Boolean(true),
494                     "Unternehmen",
495                     Constants.EF_ENTSCHEIDUNGMARKTFORSCHUNGSDIENST_KEY,
496                     "4",
497                     "Integer",
498                     null,
499                     null,
500                     "right",
501                     "normal",
502                     "right",
503                     new Boolean(true),
504                     new Boolean(true),
505                     new Boolean(false),
506                     new Boolean(false)));
507         if (!returnvalue)
508             log.error(" FAILED");
509         returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(7), new Integer(118), sprache, null, null, "Entscheidung Marketing", null, "left", "normal", new Boolean(true), "Unternehmen", Constants.EF_ENTSCHEIDUNGMARKTFORSCHUNGSDIENST_KEY, "5", "Integer", null, null, "right", "normal", "right", new Boolean(true), new Boolean(true), new Boolean(true), new Boolean(false)));
510         if (!returnvalue)
511             log.error(" FAILED");
512 
513 
514         reportnamen = dirn.sucheBezeichnung(projektnummer, "Bewertungsueberblick");
515         reportname = null;
516         reportnamenIterator = reportnamen.iterator();
517         if (reportnamenIterator.hasNext())
518         {
519             reportname = (Reportnamen) reportnamenIterator.next();
520         }
521 
522 		returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(1), new Integer(0), sprache, null, null, Constants.EF_BEWERTUNGSUEBERBLICKERFOLGVORSTEUERN_KEY, null, "right", "normal", new Boolean(true), "Quartal", null, null, null, new Integer(1), new Integer(8), "right", "normal", "right", new Boolean(true), new Boolean(true), new Boolean(false), new Boolean(false)));
523         if (!returnvalue)
524             log.error(" FAILED");
525 		returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(1), new Integer(1), sprache, null, null, Constants.EF_BEWERTUNGSUEBERBLICKERFOLGVORSTEUERNDUR_KEY, null, "right", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "right", new Boolean(true), new Boolean(true), new Boolean(false), new Boolean(false)));
526         if (!returnvalue)
527             log.error(" FAILED");
528 		returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(1), new Integer(2), sprache, null, null, Constants.EF_BEWERTUNGSUEBERBLICKERFOLGVORSTEUERNGEW_KEY, null, "right", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "right", new Boolean(true), new Boolean(true), new Boolean(true), new Boolean(true)));
529         if (!returnvalue)
530             log.error(" FAILED");
531 		returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(1), new Integer(3), sprache, null, null, Constants.EF_BEWERTUNGSUEBERBLICKUMSATZERLOESE_KEY, null, "right", "normal", new Boolean(true), "Quartal", null, null, null, new Integer(1), new Integer(8), "right", "normal", "right", new Boolean(true), new Boolean(true), new Boolean(false), new Boolean(false)));
532         if (!returnvalue)
533             log.error(" FAILED");
534 		returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(1), new Integer(4), sprache, null, null, Constants.EF_BEWERTUNGSUEBERBLICKUMSATZERLOESEDUR_KEY, null, "right", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "right", new Boolean(true), new Boolean(true), new Boolean(true), new Boolean(true)));
535         if (!returnvalue)
536             log.error(" FAILED");
537 		returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(1), new Integer(5), sprache, null, null, Constants.EF_BEWERTUNGSUEBERBLICKGRENZGEWINN_KEY, null, "right", "normal", new Boolean(true), "Quartal", null, null, null, new Integer(1), new Integer(8), "right", "normal", "right", new Boolean(true), new Boolean(true), new Boolean(false), new Boolean(false)));
538         if (!returnvalue)
539             log.error(" FAILED");
540 		returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(1), new Integer(6), sprache, null, null, Constants.EF_BEWERTUNGSUEBERBLICKGRENZGEWINNDUR_KEY, null, "right", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "right", new Boolean(true), new Boolean(true), new Boolean(true), new Boolean(true)));
541         if (!returnvalue)
542             log.error(" FAILED");
543 		returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(1), new Integer(7), sprache, null, null, Constants.EF_BEWERTUNGSUEBERBLICKFORSCHUNGUNDENTWICKLUNG_KEY, null, "right", "normal", new Boolean(true), "Quartal", null, null, null, new Integer(1), new Integer(8), "right", "normal", "right", new Boolean(true), new Boolean(true), new Boolean(false), new Boolean(false)));
544         if (!returnvalue)
545             log.error(" FAILED");
546 		returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(1), new Integer(8), sprache, null, null, Constants.EF_BEWERTUNGSUEBERBLICKFORSCHUNGUNDENTWICKLUNGDUR_KEY, null, "right", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "right", new Boolean(true), new Boolean(true), new Boolean(true), new Boolean(true)));
547         if (!returnvalue)
548             log.error(" FAILED");
549 		returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(1), new Integer(9), sprache, null, null, Constants.EF_BEWERTUNGSUEBERBLICKSCHAETZFEHLERABSETZBAREMENGE_KEY, null, "right", "normal", new Boolean(true), "Quartal", null, null, null, new Integer(1), new Integer(8), "right", "normal", "right", new Boolean(true), new Boolean(true), new Boolean(false), new Boolean(false)));
550         if (!returnvalue)
551             log.error(" FAILED");
552 		returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(1), new Integer(10), sprache, null, null, Constants.EF_BEWERTUNGSUEBERBLICKSCHAETZFEHLERABSETZBAREMENGEDUR_KEY, null, "right", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "right", new Boolean(true), new Boolean(true), new Boolean(true), new Boolean(true)));
553         if (!returnvalue)
554             log.error(" FAILED");
555 		returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(1), new Integer(11), sprache, null, null, Constants.EF_BEWERTUNGSUEBERBLICKDEFIZITUNDLAGERBILDUNG_KEY, null, "right", "normal", new Boolean(true), "Quartal", null, null, null, new Integer(1), new Integer(8), "right", "normal", "right", new Boolean(true), new Boolean(true), new Boolean(false), new Boolean(false)));
556         if (!returnvalue)
557             log.error(" FAILED");
558 		returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(1), new Integer(12), sprache, null, null, Constants.EF_BEWERTUNGSUEBERBLICKDEFIZITUNDLAGERBILDUNGDUR_KEY, null, "right", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "right", new Boolean(true), new Boolean(true), new Boolean(true), new Boolean(true)));
559         if (!returnvalue)
560             log.error(" FAILED");
561 		returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(1), new Integer(13), sprache, null, null, Constants.EF_BEWERTUNGSUEBERBLICKHERSTELLKOSTEN_KEY, null, "right", "normal", new Boolean(true), "Quartal", null, null, null, new Integer(1), new Integer(8), "right", "normal", "right", new Boolean(true), new Boolean(true), new Boolean(false), new Boolean(false)));
562         if (!returnvalue)
563             log.error(" FAILED");
564 		returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(1), new Integer(14), sprache, null, null, Constants.EF_BEWERTUNGSUEBERBLICKHERSTELLKOSTENDUR_KEY, null, "right", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "right", new Boolean(true), new Boolean(true), new Boolean(true), new Boolean(true)));
565         if (!returnvalue)
566             log.error(" FAILED");
567 		returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(1), new Integer(15), sprache, null, null, Constants.EF_BEWERTUNGSUEBERBLICKOPTIMALEQSVSQSKOSTENMINIMIERENDENOMINALEQS_KEY, null, "right", "normal", new Boolean(true), "Quartal", null, null, null, new Integer(1), new Integer(8), "right", "normal", "right", new Boolean(true), new Boolean(true), new Boolean(false), new Boolean(false)));
568         if (!returnvalue)
569             log.error(" FAILED");
570 		returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(1), new Integer(16), sprache, null, null, Constants.EF_BEWERTUNGSUEBERBLICKOPTIMALEQSVSQSKOSTENMINIMIERENDENOMINALEQSDUR_KEY, null, "right", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "right", new Boolean(true), new Boolean(true), new Boolean(true), new Boolean(true)));
571         if (!returnvalue)
572             log.error(" FAILED");
573 		returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(1), new Integer(17), sprache, null, null, Constants.EF_BEWERTUNGSUEBERBLICKTATSAECHLICHERVSERWARTETERGRENZGEWINN_KEY, null, "right", "normal", new Boolean(true), "Quartal", null, null, null, new Integer(1), new Integer(8), "right", "normal", "right", new Boolean(true), new Boolean(true), new Boolean(false), new Boolean(false)));
574         if (!returnvalue)
575             log.error(" FAILED");
576 		returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(1), new Integer(18), sprache, null, null, Constants.EF_BEWERTUNGSUEBERBLICKTATSAECHLICHERVSERWARTETERGRENZGEWINNDUR_KEY, null, "right", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "right", new Boolean(true), new Boolean(true), new Boolean(true), new Boolean(true)));
577         if (!returnvalue)
578             log.error(" FAILED");
579 		returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(1), new Integer(19), sprache, null, null, Constants.EF_BEWERTUNGSUEBERBLICKSCHAETZFEHLERKAPAZITAETSAUSLASTUNG_KEY, null, "right", "normal", new Boolean(true), "Quartal", null, null, null, new Integer(1), new Integer(8), "right", "normal", "right", new Boolean(true), new Boolean(true), new Boolean(false), new Boolean(false)));
580         if (!returnvalue)
581             log.error(" FAILED");
582 		returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(1), new Integer(20), sprache, null, null, Constants.EF_BEWERTUNGSUEBERBLICKSCHAETZFEHLERKAPAZITAETSAUSLASTUNGDUR_KEY, null, "right", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "right", new Boolean(true), new Boolean(true), new Boolean(true), new Boolean(true)));
583         if (!returnvalue)
584             log.error(" FAILED");
585 		returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(1), new Integer(21), sprache, null, null, Constants.EF_BEWERTUNGSUEBERBLICKUNNOETIGEZINSBELASTUNG_KEY, null, "right", "normal", new Boolean(true), "Quartal", null, null, null, new Integer(1), new Integer(8), "right", "normal", "right", new Boolean(true), new Boolean(true), new Boolean(false), new Boolean(false)));
586         if (!returnvalue)
587             log.error(" FAILED");
588 		returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(1), new Integer(22), sprache, null, null, Constants.EF_BEWERTUNGSUEBERBLICKUMSATZERLOESEDUR_KEY, null, "right", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "right", new Boolean(true), new Boolean(true), new Boolean(true), new Boolean(true)));
589         if (!returnvalue)
590             log.error(" FAILED");
591 		returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(1), new Integer(23), sprache, null, null, Constants.EF_BEWERTUNGSUEBERBLICKSCHAETZFEHLERZAHLUNGSMITTELAENDERUNG_KEY, null, "right", "normal", new Boolean(true), "Quartal", null, null, null, new Integer(1), new Integer(8), "right", "normal", "right", new Boolean(true), new Boolean(true), new Boolean(false), new Boolean(false)));
592         if (!returnvalue)
593             log.error(" FAILED");
594 		returnvalue = dire.erzeugen(new Reporterzeugung(reportname, new Integer(1), new Integer(24), sprache, null, null, Constants.EF_BEWERTUNGSUEBERBLICKSCHAETZFEHLERZAHLUNGSMITTELAENDERUNGDUR_KEY, null, "right", "normal", new Boolean(false), null, null, null, null, null, null, "right", "normal", "right", new Boolean(true), new Boolean(true), new Boolean(true), new Boolean(true)));
595         if (!returnvalue)
596             log.error(" FAILED");
597     }
598 }