The Rate Structure Pattern: An Analysis Pattern for the Flexible Parameterization of Charges, Fees and Prices

Size: px
Start display at page:

Download "The Rate Structure Pattern: An Analysis Pattern for the Flexible Parameterization of Charges, Fees and Prices"

Transcription

1 The Rate Structure Pattern: An Analysis Pattern for the Flexible Parameterization of Charges, Fees and Prices Volker Pleß, Giselher Pankratz and Andreas Bortfeldt Diskussionsbeitrag Nr. 386 Februar 2006 Diskussionsbeiträge des Fachbereichs Wirtschaftswissenschaft der FernUniversität in Hagen Herausgegeben vom Dekan des Fachbereichs

2 The Rate Structure Pattern: An Analysis Pattern for the Flexible Parameterization of Charges, Fees and Prices Volker Pleß, Giselher Pankratz and Andreas Bortfeldt Abstract: Often charges have to be paid by customers in advance of services. Therefore, the flexible configuration of rate structures is an important distinguishing mark of competing companies. Since the prompt adaptation of changes to new situations enhances competitive power, there is vital need to individually adapt the rate structures depending on both customer groups and the transaction under consideration. However, due to automated bulk processing fees often are computed by legacy applications using fixed parameters. Therefore, a change of rate structures often requires modification of software. In the article at hand we present an analysis pattern which allows for the flexible parameterization of rate structures of various kinds as well as the introduction of new charges and parameters without changing software. The parameterization concerns the properties of customers as well as the characteristics of the transaction under consideration. In addition, the proposed rate structure pattern allows for multi-client capability and meets the requirements of bulk processing. The advantages of the pattern are demonstrated referring to a business application for calculating fees designed for transaction banks in the securities business. However the pattern may be of great value to other domains where services are billed to the customers, e.g. insurances and others. Key words: Analysis Pattern, Object-Oriented Software Engineering, Rate structure Fachbereich Wirtschaftswissenschaft, FernUniversität in Hagen Profilstr. 8, D Hagen, Deutschland Tel.: 02331/ Fax: 02331/ giselher.pankratz@fernuni-hagen.de

3 1 The Rate Structure Pattern: An Analysis Pattern for the Flexible Parameterization of Charges, Fees and Prices Volker Pleß, Steria-Mummert Consulting, Düsseldorf, Germany Giselher Pankratz, FernUniversität - University of Hagen, Germany Andreas Bortfeldt, FernUniversität - University of Hagen, Germany 1 Introduction Since customers become more and more sensitive to prices, a company s ability to launch new and innovative rate structures enhances the company s competitive power. In particular, rate structures should satisfy the needs of various groups of customers asking for different kinds of services. For example, telephone companies offer their customers different rates depending on time, duration and destination of the telephone call. Another example is car insurance companies that offer various rates depending on type of car, distance traveled annually, or profession of the customer. A third example is banks offering services for private customers in the securities business. All these companies introduce new rates or change existing rates frequently due to competition. In order to promptly adapt the rate structure to new market situations, flexible business applications are favored which allow domain experts to introduce or alter rates without reprogramming their application. Characteristic to flexibility in rate structures is that, at run time - the method for computing the rate may be changed or - the parameters, which determine the rate s value may be changed, or even new parameters may be introduced, or - the situation, in which a certain rate should apply may be altered or even new situations defined. However, most of existing legacy applications lack flexibility by computing charges using a fixed set of parameters and hard-coded pricing methods. Therefore, changing rates or defining new rates often requires extensive modifications of software. These shortcomings become

4 2 even more critical in view of the demands on modern multi-client systems which must be able to manage different pricing schemes of many companies within a single shared application, e.g. in the context of application service providing. Thus, the development of new business applications often appears inevitable, facing software developers with the problem of collecting and adequately modeling all of these requirements at the time of system analysis. In looking for solutions, we remember that the problems at hand are generic, i.e. they appear in many application domains. Therefore, if a solution exists in one application domain, why not adapt this solution to the actual application domain? Before doing so, the solution has to be formulated independent of the current application. Conceptual models describing generic software solutions which may be applied to several contexts often are called patterns. Patterns play an important role in object-oriented software development. They make it easier to communicate expert s knowledge and to re-use well-tried solutions. By this, patterns improve software quality while reducing development time and costs. Today, software patterns are predominantly applied during the design phase of software development with great success [4]. For our current purpose we focus on the analysis phase of the software development process. Contrary to design patterns which provide solutions to rather technical implementation-related issues, the so-called analysis patterns represent solutions to recurring problems that are closely related to a business domain [2, 3]. They provide conceptual models that describe the domain knowledge of business professionals. The benefits of analysis patterns have already been empirically proven. As recent investigations show, the quality of business object models improves as novice modelers use analysis patterns [1]. Obviously, modeling complex rate structures allowing the flexible computation of charges is a recurring problem in diverse business domains. However, no such analysis pattern has been published so far. Therefore, we propose the rate structure pattern as a conceptual model for flexible rate structures. We discovered the rate structure pattern while analyzing many applications in banks offering services for private customers in the securities business. All in all, these applications exhibit a broad variety of rate structures. Based on this analysis, we developed a unified model of a multi-client application for managing rate structures in the securities business. The rate struc-

5 3 ture pattern presented in the following constitutes the domain-independent nucleus of that general model. We found that the problem of flexible rate structures can be divided into two sub-problems each leading to a pattern of its own. The first sub-pattern models basic methods for the computation of prices and is therefore called basic pricing pattern. The second pattern, called the constraints definition pattern, takes into consideration that certain business conditions must be satisfied before applying a given rate. Both sub-patterns are presented in the object oriented approach as class diagrams using the unified modeling language. Finally, the rate structure pattern is obtained by just joining both sub-patterns. 2 The Basic Pricing Pattern A pricing method maps some properties of the object to be priced to a monetary value. In business applications often similar pricing methods are used which are independent of the application domain. The calculation of percentage is a prominent example appearing in many applications, e.g. calculating the charge as a percentage of the sales volume. What should a general model look like that allows for computing prices? In answering this question, we focus on commonly used pricing methods. These methods comprise: the calculation of the percentage of a given value, using a graduated price scale, or just charging a fixed value independently of the properties of the object to be priced. In addition, any calculated price may be bounded by a cap or a floor. When applying these methods, several parameters need to be defined. Table 1 summarizes the methods we consider, along with their relevant parameters.

6 4 Method Explanation Relevant parameters fixed amount calculation of percentage graduated price scale The result is independent of the properties of the business transaction. The result is calculated as the percentage of the value of a reference parameter of the object to be priced. Optionally, a cap and/or a floor can be defined. This method extends both methods above. For each step, either a fixed amount or a constant percentage rate is defined. The current value of the reference parameter determines which stage has to be chosen. amount percentage rate, selected reference parameter, cap (optional), floor (optional) steps of the scale, selected reference parameter, per step: percentage rate or fixed amount Table 1. Pricing methods of the basic pricing pattern. A stable model that represents basic pricing requirements should provide the opportunity not only to modify the parameter values but also to easily change the calculation method itself. The class diagram shown in figure 1 provides a solution to the problem described above. Figure 1. Basic pricing pattern.

7 5 Before we may compute prices we have to customize the model to the actual pricing situation: At first, an attribute of the item to be priced has to be chosen which serves as the reference parameter. This parameter type is assigned to the price scale. Second, the steps of the price scale are defined each having either a different percentage value or a different fixed amount. Third, the result may be limited by specifying a cap or a floor. In order to enable the user to change the calculation method and/or the parameters at any time, the model is augmented by a validity period. Different validity periods allow the user to fall back to previous pricing schemes, e.g. in case of the cancellation of a pricing. For illustrating how the model works we consider a customer who is charged a price for purchasing some quantity of a good. The price is to be computed as a percentage of the sales volume. Large sales volumes are charged a lower percentage rate than small ones. Thus, a price scale is defined breaking down the sales volume into, for example, two steps. The first ranging from zero up to $ 1000 with a percentage rate of 7%, and a second step including all sales volumes greater than $ 1000 charging the customer just 5%. Obviously, the item to be priced is the customer s purchase, and the sales volume serves as the selected reference parameter. Depending on the value of this parameter, the corresponding step of the price scale is chosen. By setting the percentage flag properly, the parameterized model tells us that a percentage value is to be computed in both steps, taking the selected reference parameter as the input variable. For simplicity reasons, we confine ourselves to the standard case here. However, the model may be augmented if needed by selecting two parameter types instead of a single one: the first parameter type gives the actual step of the price scale whilst the other serves as the base for computing the percentage value. The basic pricing pattern presented here provides a flexible solution to common pricing situations. In particular, - the method for computing the price may be changed (fixed amount vs. percentage, variable number of steps) as well as - all relevant parameters, which determine the price (table 1), may be changed without altering the model.

8 6 Since the user may change the pricing method at run time, software modifications are no longer necessary. Nevertheless, the basic pricing pattern does not cover all aspects of our problem of modeling flexible rate structures. Flexibility in rate structures also implies the possibility of defining and altering the conditions under which a rate is applied. For example, sometimes regular customers are charged according to a preferred rate than occasional customers. If such requirements exist, context information concerning the object or transaction to be priced has to be taken into account. To this end, we propose another analysis pattern, called the constraints definition pattern. 3 The Constraints Definition Pattern Often a rate is linked to several constraints which further qualify its application range. Before applying a rate, the object or transaction to be priced has to be tested against these constraints in order to pick the right rate. For example, telephone companies may offer special rates for oversea calls at night, i.e. each telephone call is to be tested whether it has an oversea destination and whether it is held in the period from 10 p.m. to 6 a.m. If the call meets both constraints, the call is charged with the special rate. In order to satisfy these requirements, a model is needed that allows for classifying arbitrary items according to a set of parameters. We propose a generic model, called the constraints definition pattern. Its class diagram is shown in figure 2.

9 7 Figure 2. Constraints definition pattern. In order to classify the item to be tested at least one parameter of the item has to be inspected. For each relevant parameter a range of allowed values can be defined constituting an elementary constraint. Complex multi-dimensional constraints are obtained by defining several elementary constraints which are joined by a logical operation. For example, using logical AND, an item belongs to a certain category only if all of its relevant parameters meet their corresponding elementary constraints. Customizing this pattern requires the following steps: At first, the user defines the range of values the item s parameters are allowed to have. The range of feasible values of a parameter may be a list of discrete values, a continuous range or a combination of both. Secondly, elementary constraints are defined by assigning the parameters a subset of their allowed values. A given elementary constraint is met if the actual value of the item s parameter falls within the constraint s range of values. Since constraints may change over time, the set of constraints is provided with a validity period. For illustrating the model we again consider the example of the telephone company above. The telephone call is our item to be tested. With respect to the rate to be applied, a telephone call has two relevant parameters, the time of the call and the call s destination. As we want to

10 8 distinguish oversea calls held at night from other telephone calls, we define two elementary constraints. The first constraint restricts a call s destination to all oversea destinations. The second constraint restricts a call s time to the period from 10 p.m. to 6 a.m. The constraints definition pattern reveals its advantages when constraints undergo frequent changes. The constraints are changed just by assigning the item s parameters a different subset of their restricted values or selecting other parameter types of the item to define elementary constraints. Thus, the conditions on which a certain rate should apply may easily be changed, or new conditions may be defined at run time without modifying the model of the resulting application. With the powerful models of the basic pricing pattern and the constraints definition pattern in our hands we now return to our original problem of managing flexible rate structures. 4 The Rate Structure Pattern The challenge of modeling flexible rate structures is twofold. On the one hand, the pricing methods itself are a matter of change. On the other hand, certain pricing methods should apply only in specific situations. In this contribution, both of these requirements have been addressed separately so far by the basic pricing pattern and the constraints definition pattern, respectively. Combining these patterns yields a very flexible solution to the problem at hand. The class diagram of the resulting rate structure pattern is shown in figure 3.

11 9 Figure 3. Rate structure pattern. The lower half of the class diagram shows the constraints definition pattern. By means of the constraints definition pattern, domain experts may control the conditions under which a rate will apply. The calculation of prices or fees is modeled using the basic pricing pattern shown in the upper half of figure 3. The two patterns are linked by the Rate class, which takes over the role of the Pricing class of the basic pricing pattern as well as the role of the ConstraintsSet class in the constraints definition pattern. The Price class of the basic pricing pattern and the Category class of the constraints definition pattern are merged into the new Charge class. The item to be charged defines the rate to be applied in two ways. At first, its parameters define the pricing situation. Only items whose parameter values fulfill all constraints are subject to a certain rate. Second, a chosen reference parameter of the item to be priced serves as basis value for computing the charge. In both cases we make use of the type object pattern [5] treat-

12 10 ing the parameter s type and parameter s value of an item to be charged separately. Whereas the definition of a rate relies on the parameter s type the charge is calculated using the parameter s value. The rate structure pattern is designed to allow for multi-client capability. By that, many different clients are able to use a single application but having different rate structures. For each client, an arbitrary number of rates can be specified by individually defining the set of constraints and the rules for computing the fee. To sum up, the rate structure pattern s main benefits are its flexibility in conjunction with its multi-client capability. Due to the pattern s flexibility, domain experts are able to change the rate structure at run time without altering the model. Thus, applications based on the rate structure pattern allow for quick adaptation to new market situations without modifying software. 5 Applying the rate structure pattern The rate structure pattern presented has proven advantageous in a business application for calculating fees designed for transaction banks in the securities business. The transaction bank provides services for their clients, a number of banks having private customers. Such services are, e.g. the management of private customer s orders and their settlement as well as the safe custody. Instead of running an application of its own, the banks use the application of the transaction bank for routing private customers orders to the stock exchange as well as for settlement. Thus, while on the one hand, the private customer has to pay fees to his or her bank, on the other hand, the bank in turn is charged by the transaction bank. The application uses the rate structure pattern both for the fees of the bank as well as for the fees of the transaction bank. For each service several charges may be employed. For example when placing an order to the stock exchange, the customer is charged the broker s commission, the bank s premium and expenses of third parties. Different rates are applied depending on the details of the transaction under consideration. The rate primarily depends on the type of security, i.e. bonds are charged differently from stocks or investment funds. Also, the customer group determines the rate, since regular customers may be charged less than occasional customers. Depending on the sales channel, special rates may be applied, e.g. when placing an order by internet. The

13 11 fee s amount depends on several factors, too. For example the bank s premium depends on the number of traded stocks. Due to competition between transaction banks, the application also provides flexible rate structures for charging banks. The most important factor for the calculation of the fee is the number of transactions a bank mandates to the transaction bank. Other factors like the number of deposits may also be applied. The application is designed as a multi-client system, i.e. the transaction bank processes the transactions of many banks on a single host application. Thus, costs per transaction are reduced due to economies of scale. Since the rate structure pattern provides a generic model we believe that it may also be of great value to application domains others than banks. 6 References 1. Bolloju, N. Improving the Quality of Business Object Models using Collaboration Pattern. Commun. ACM 47, 7 (July 2004), Coad, P. Object-oriented patterns. Commun. ACM 35, 9 (Sept. 1992), Fowler, M. Analysis Patterns: Reusable Object Models. Addison-Wesley, Menlo Park, CA, Gamma, E., Helm, R., Johnson, R., Vlissides, J. Design Patterns: Elements of Reusable Object-Oriented Software. Addison-Wesley, Reading, MA, Johnson, R., Wolf, B. Type Object in Pattern Languages of Program Design 3. Addison-Wesley, Reading, MA, 1998.

14 Die Diskussionspapiere ab Nr. 183 (1992) bis heute, können Sie im Internet unter einsehen und zum Teil downloaden. Die Titel der Diskussionspapiere von Nr 1 (1975) bis 182 (1991) können bei Bedarf im Fachbereich Wirtschaftswissenschaft angefordert werden: FernUniversität, z. Hd. Frau Huber oder Frau Mette, Postfach 940, Hagen. Die Diskussionspapiere selber erhalten Sie nur in den Bibliotheken. Nr Jahr Titel Autor/en Spreading Currency Crises: The Role of Economic Interdependence Berger, Wolfram Wagner, Helmut Planung des Fahrzeugumschlags in einem Seehafen- Automobilterminal mittels eines Multi-Agenten-Systems Fischer, Torsten Gehring, Hermann A parallel tabu search algorithm for solving the container loading problem Die Wahrheit entscheidungstheoretischer Maximen zur Lösung von Individualkonflikten - Unsicherheitssituationen - Bortfeldt, Andreas Gehring, Hermann Mack, Daniel Mus, Gerold Zur Abbildungsgenauigkeit des Gini-Koeffizienten bei relativer wirtschaftlicher Konzentration Steinrücke, Martin Entscheidungsunterstützung bilateraler Verhandlungen über Auftragsproduktionen - eine Analyse aus Anbietersicht Steinrücke, Martin Die Relevanz von Marktzinssätzen für die Investitionsbeurteilung zugleich eine Einordnung der Diskussion um die Marktzinsmethode Evaluating representatives, parliament-like, and cabinet-like representative bodies with application to German parliament elections Konzernabschluss und Ausschüttungsregelung im Konzern. Ein Beitrag zur Frage der Eignung des Konzernabschlusses als Ausschüttungsbemessungsinstrument Terstege, Udo Tangian, Andranik S. Hinz, Michael Theoretische Grundlagen der Gründungsfinanzierung Bitz, Michael Historical background of the mathematical theory of democracy Tangian, Andranik S MCDM-applications of the mathematical theory of democracy: choosing travel destinations, preventing traffic jams, and predicting stock exchange trends Tangian, Andranik S.

15 Sprachregelungen für Kundenkontaktmitarbeiter Möglichkeiten und Grenzen Fließ, Sabine Möller, Sabine Momma, Sabine Beate A Non-cooperative Foundation of Core-Stability in Positive Externality NTU-Coalition Games Finus, Michael Rundshagen, Bianca Combinatorial and Probabilistic Investigation of Arrow s dictator Tangian, Andranik A Grouping Genetic Algorithm for the Pickup and Delivery Problem with Time Windows Pankratz, Giselher Planen, Lernen, Optimieren: Beiträge zu Logistik und E-Learning. Festschrift zum 60 Geburtstag von Hermann Gehring Bortfeldt, Andreas Fischer, Torsten Homberger, Jörg Pankratz, Giselher Strangmeier, Reinhard 339a 2003 Erinnerung und Abruf aus dem Gedächtnis Ein informationstheoretisches Modell kognitiver Prozesse Rödder, Wilhelm Kuhlmann, Friedhelm 339b 2003 Zweck und Inhalt des Jahresabschlusses nach HGB, IAS/IFRS und US-GAAP Hinz, Michael Voraussetzungen, Alternativen und Interpretationen einer zielkonformen Transformation von Periodenerfolgsrechnungen ein Diskussionsbeitrag zum LÜCKE-Theorem Terstege, Udo Equalizing regional unemployment indices in West and East Germany Tangian, Andranik Coalition Formation in a Global Warming Game: How the Design of Protocols Affects the Success of Environmental Treaty-Making Eyckmans, Johan Finus, Michael Stability of Climate Coalitions in a Cartel Formation Game Finus, Michael van Ierland, Ekko Dellink, Rob The Effect of Membership Rules and Voting Schemes on the Success of International Climate Agreements Equalizing structural disproportions between East and West German labour market regions Finus, Michael J.-C., Altamirano-Cabrera van Ierland, Ekko Tangian, Andranik Auf dem Prüfstand: Die geldpolitische Strategie der EZB Kißmer, Friedrich Wagner, Helmut

16 Globalization and Financial Instability: Challenges for Exchange Rate and Monetary Policy Wagner, Helmut Anreizsystem Frauenförderung Informationssystem Gleichstellung am Fachbereich Wirtschaftswissenschaft der FernUniversität in Hagen Fließ, Sabine Nonnenmacher, Dirk Legitimation und Controller Pietsch, Gotthard Scherm, Ewald Controlling im Stadtmarketing Ergebnisse einer Primärerhebung zum Hagener Schaufenster-Wettbewerb Fließ, Sabine Nonnenmacher, Dirk Zweiseitige kombinatorische Auktionen in elektronischen Transportmärkten Potenziale und Probleme Pankratz, Giselher Methodisierung und E-Learning Strangmeier, Reinhard Bankwitz, Johannes 353 a 2003 A parallel hybrid local search algorithm for the container loading problem 353 b 2004 Übernahmeangebote und sonstige öffentliche Angebote zum Erwerb von Aktien Ausgestaltungsmöglichkeiten und deren Beschränkung durch das Wertpapiererwerbs- und Übernahmegesetz Mack, Daniel Bortfeldt, Andreas Gehring, Hermann Wirtz, Harald Open Source, Netzeffekte und Standardisierung Maaß, Christian Scherm, Ewald Modesty Pays: Sometimes! Finus, Michael Nachhaltigkeit und Biodiversität Endres, Alfred Bertram, Regina Eine Heuristik für das dreidimensionale Strip-Packing-Problem Bortfeldt, Andreas Mack, Daniel Netzwerkökonomik Martiensen, Jörn Competitive versus cooperative Federalism: Is a fiscal equalization scheme necessary from an allocative point of view? Arnold, Volker Gefangenendilemma bei Übernahmeangeboten? Eine entscheidungs- und spieltheoretische Analyse unter Einbeziehung der verlängerten Annahmefrist gem. 16 Abs. 2 WpÜG Wirtz, Harald

17 Dynamic Planning of Pickup and Delivery Operations by means of Genetic Algorithms Möglichkeiten der Integration eines Zeitmanagements in das Blueprinting von Dienstleistungsprozessen Controlling im Stadtmarketing - Eine Analyse des Hagener Schaufensterwettbewerbs Ein Tabu Search-Verfahren zur Lösung des Timetabling-Problems an deutschen Grundschulen Die Bedeutung von Informationen, Garantien und Reputation bei integrativer Leistungserstellung The Influence of Control Systems on Innovation: An empirical Investigation Permit Trading and Stability of International Climate Agreements Zeitdiskrete vs. zeitstetige Modellierung von Preismechanismen zur Regulierung von Angebots- und Nachfragemengen Marktversagen auf dem Softwaremarkt? Zur Förderung der quelloffenen Softwareentwicklung Die Konzentration der Forschung als Weg in die Sackgasse? Neo-Institutionalistische Überlegungen zu 10 Jahren Anreizsystemforschung in der deutschsprachigen Betriebswirtschaftslehre Economic Analysis of Cross-Border Legal Uncertainty: the Example of the European Union Pankratz, Giselher Fließ, Sabine Lasshof, Britta Meckel, Monika Fließ, Sabine Wittko, Ole Desef, Thorsten Bortfeldt, Andreas Gehring, Hermann Prechtl, Anja Völker-Albert, Jan- Hendrik Littkemann, Jörn Derfuß, Klaus Altamirano-Cabrera, Juan-Carlos Finus, Michael Mazzoni, Thomas Christian Maaß Ewald Scherm Süß, Stefan Muth, Insa Wagner, Helmut Pension Reforms in the New EU Member States Wagner, Helmut Die Bundestrainer-Scorecard Zur Anwendbarkeit des Balanced Scorecard Konzepts in nicht-ökonomischen Fragestellungen Eisenberg, David Schulte, Klaus

18 Monetary Policy and Asset Prices: More Bad News for Benign Neglect Berger, Wolfram Kißmer, Friedrich Wagner, Helmut Zeitstetige Modellbildung am Beispiel einer volkswirtschaftlichen Produktionsstruktur Mazzoni, Thomas Economic Valuation of the Environment Endres, Alfred Netzwerkökonomik Eine vernachlässigte theoretische Perspektive in der Strategie-/Marketingforschung? Diversity management`s diffusion and design: a study of German DAX-companies and Top-50-U.S.-companies in Germany Fiscal Issues in the New EU Member Countries Prospects and Challenges Mobile Learning Modetrend oder wesentlicher Bestandteil lebenslangen Lernens? Zur Berücksichtigung von Unsicherheit in der Theorie der Zentralbankpolitik Maaß, Christian Scherm, Ewald Süß, Stefan Kleiner, Markus Wagner, Helmut Kuszpa, Maciej Scherm, Ewald Wagner, Helmut Effort, Trade, and Unemployment Altenburg, Lutz Brenken, Anke Do Abatement Quotas Lead to More Successful Climate Coalitions? Altamirano-Cabrera, Juan-Carlos Finus, Michael Dellink, Rob Continuous-Discrete Unscented Kalman Filtering Singer, Hermann Informationsbewertung im Spannungsfeld zwischen der Informationstheorie und der Betriebswirtschaftslehre The Rate Structure Pattern: An Analysis Pattern for the Flexible Parameterization of Charges, Fees and Prices Reucher, Elmar Pleß, Volker Pankratz, Giselher Bortfeldt, Andreas

Parallel greedy algorithms for packing unequal spheres into a cuboidal strip or a cuboid

Parallel greedy algorithms for packing unequal spheres into a cuboidal strip or a cuboid Parallel greedy algorithms for packing unequal spheres into a cuboidal strip or a cuboid Timo Kubach, Andreas Bortfeldt, Thomas Tilli and Hermann Gehring Diskussionsbeitrag Nr. 440 August 2009 Diskussionsbeiträge

More information

Product Quality and Environmental Standards: The Effect of an International Environmental Agreement on Tropical Timber Trade

Product Quality and Environmental Standards: The Effect of an International Environmental Agreement on Tropical Timber Trade Please scroll down for the English version Sehr geehrte Abonnentinnen und Abonnenten, wir freuen uns, Sie per Newsletter über die neuesten Entwicklungen des FIW-Projekts informieren zu dürfen. Dieses Mal

More information

- CURRICULUM VITAE - Julia Becker

- CURRICULUM VITAE - Julia Becker Georg-August-University of Göttingen Phone + 49 551 39 139 96 Department of Political Science Fax + 49 551 39 8426 Platz der Göttinger Sieben 3 D - 37073 Göttingen j.becker@sowi.uni-goettingen.de www.uni-goettingen.de/de/97905.html

More information

Chair of Financial Management

Chair of Financial Management Chair of Financial Management Current Doctoral Theses: Dipl.-Kfm. Markus Brendel (Research associate) Revisiting the causal impact of ownership concentration on firm s performance (Cumulative doctoral

More information

Name of pattern types 1 Process control patterns 2 Logic architectural patterns 3 Organizational patterns 4 Analytic patterns 5 Design patterns 6

Name of pattern types 1 Process control patterns 2 Logic architectural patterns 3 Organizational patterns 4 Analytic patterns 5 Design patterns 6 The Researches on Unified Pattern of Information System Deng Zhonghua,Guo Liang,Xia Yanping School of Information Management, Wuhan University Wuhan, Hubei, China 430072 Abstract: This paper discusses

More information

Designing and Implementing a Server Infrastructure MOC 20413

Designing and Implementing a Server Infrastructure MOC 20413 Designing and Implementing a Server Infrastructure MOC 20413 In dieser 5-tägigen Schulung erhalten Sie die Kenntnisse, welche benötigt werden, um eine physische und logische Windows Server 2012 Active

More information

Jahrbücher f. Nationalökonomie u. Statistik (Lucius & Lucius, Stuttgart 2012) Bd. (Vol.) 232/2

Jahrbücher f. Nationalökonomie u. Statistik (Lucius & Lucius, Stuttgart 2012) Bd. (Vol.) 232/2 Inhalt / Contents Abhandlungen / Original Papers Bellmann Lutz, Hans-Dieter Gerner, Further Training and Company-Level Pacts foremploymentingermany... 98-115 Egbert, Henrik, Andreas Hildenbrand, Der Coupon-Handelsansatz

More information

Curriculum Vitae. Contact details. Current positions. Personal. Education and qualications

Curriculum Vitae. Contact details. Current positions. Personal. Education and qualications Curriculum Vitae Contact details Klaus NOWOTNY University of Salzburg Residenzplatz 9 A-5010 Salzburg Austria Tel.: +43 (662) 8044-3722 Fax: +43 (662) 8044-623 E-mail: Klaus.Nowotny@sbg.ac.at Current positions

More information

Jahrbücher f. Nationalökonomie u. Statistik (Lucius & Lucius, Stuttgart 2010) Bd. (Vol.) 230/4

Jahrbücher f. Nationalökonomie u. Statistik (Lucius & Lucius, Stuttgart 2010) Bd. (Vol.) 230/4 Inhalt / Contents Abhandlungen / Original Papers Arntz, Melanie, Stephan L. Thomsen, Are Personal Budgets a Financially Sound Reform Option for the German Long-Term Care Insurance?... 378-402 Horbach,

More information

"Statistische Modellbildung"

Statistische Modellbildung Universität Dortmund 2. Herbstkolloquium des Graduiertenkollegs "Statistische Modellbildung" Zu diesem Kolloquium wird eingeladen am Freitag/Samstag, 25./26. November 2005, im UNIVERSITÄTSKOLLEG BOMMERHOLZ

More information

Strategic Planning at the Deutsche Bundesbank

Strategic Planning at the Deutsche Bundesbank Strategic Planning at the Deutsche Bundesbank Key aspects in Central Bank Governance 1. set of central bank tasks key aspects 5. stakeholders 2. rules for decision making bodies 4. transparency, credibility,

More information

Beurteilung von NewSmith Capital Partners

Beurteilung von NewSmith Capital Partners EFD Rohstoff 22. März 2005 Beurteilung von NewSmith Capital Partners Der durch den Bund und Kanton Zürich beigezogene Finanzberater NewSmith Capital Partners hat die vorgeschlagene Transaktion analysiert

More information

Introduction. Observation Patterns. Accounting Patterns. How to use Patterns

Introduction. Observation Patterns. Accounting Patterns. How to use Patterns Analysis Martin Fowler fowler@acm acm.org http://ourworld ourworld.compuserve.com/homepages/martin_fowler Page Martin Fowler 9//99 What we will cover Introduction Observation Accounting How to use Page

More information

Praktikumsprojekte im Forschungszentrum der Deutschen Bundesbank. Frankfurt am Main

Praktikumsprojekte im Forschungszentrum der Deutschen Bundesbank. Frankfurt am Main Praktikumsprojekte im Forschungszentrum der Deutschen Bundesbank Frankfurt am Main Zuletzt aktualisiert am 22.09.2015 Allgemeine Informationen zu den Praktikumsprojekten im Forschungszentrum der Deutschen

More information

Upgrade-Preisliste. Upgrade Price List

Upgrade-Preisliste. Upgrade Price List Upgrade-Preisliste Mit Firmware Features With list of firmware features Stand/As at: 10.09.2014 Änderungen und Irrtümer vorbehalten. This document is subject to changes. copyright: 2014 by NovaTec Kommunikationstechnik

More information

Chapter 3 Chapter 3 Service-Oriented Computing and SOA Lecture Note

Chapter 3 Chapter 3 Service-Oriented Computing and SOA Lecture Note Chapter 3 Chapter 3 Service-Oriented Computing and SOA Lecture Note Text book of CPET 545 Service-Oriented Architecture and Enterprise Application: SOA Principles of Service Design, by Thomas Erl, ISBN

More information

Internet business models: A contemporary reference framework

Internet business models: A contemporary reference framework Internet business models: A contemporary reference framework Working paper Ralf Wagner August 11, 2013 Abstract The Internet is becoming more and more important for businesses. A practical reference framework

More information

"A survey of the Private Health Insurance in Germany"

A survey of the Private Health Insurance in Germany "A survey of the Private Health Insurance in Germany" Rainer Fürhaupter, Claudia Brechtmann Germany Summary The paper deals with the main actuarial principles on which the calculation of premiums in the

More information

Produktfamilienentwicklung

Produktfamilienentwicklung Produktfamilienentwicklung Bericht über die ITEA-Projekte ESAPS, CAFÉ und Families Günter Böckle Siemens CT SE 3 Motivation Drei große ITEA Projekte über Produktfamilien- Engineering: ESAPS (1.7.99 30.6.01),

More information

An application of the put-call-parity to variance reduced Monte-Carlo option pricing

An application of the put-call-parity to variance reduced Monte-Carlo option pricing An application of the put-call-parity to variance reduced Monte-Carlo option pricing Armin Müller 1 Discussion paper No. 495 April 25, 2016 Diskussionsbeiträge der Fakultät für Wirtschaftswissenschaft

More information

SPICE auf der Überholspur. Vergleich von ISO (TR) 15504 und Automotive SPICE

SPICE auf der Überholspur. Vergleich von ISO (TR) 15504 und Automotive SPICE SPICE auf der Überholspur Vergleich von ISO (TR) 15504 und Automotive SPICE Historie Software Process Improvement and Capability determination 1994 1995 ISO 15504 Draft SPICE wird als Projekt der ISO zur

More information

AN OPTIONFORGERMANY? PROGRESSIVE TARIFFS FOR RESIDENTIAL ELECTRICITY. Dr. Kerstin Tews ktews@zedat.fu berlin.de

AN OPTIONFORGERMANY? PROGRESSIVE TARIFFS FOR RESIDENTIAL ELECTRICITY. Dr. Kerstin Tews ktews@zedat.fu berlin.de Forschungszentrum für Umweltpolitik/ Environmental Policy Research Centre Dr. Kerstin Tews ktews@zedat.fu berlin.de PROGRESSIVE TARIFFS FOR RESIDENTIAL ELECTRICITY CONSUMPTION. AN OPTIONFORGERMANY? Presentation

More information

ALWA-Befragungsdaten verknüpft mit administrativen Daten des IAB (ALWA-ADIAB)

ALWA-Befragungsdaten verknüpft mit administrativen Daten des IAB (ALWA-ADIAB) ALWA-Befragungsdaten verknüpft mit administrativen Daten des IAB (ALWA-ADIAB) Erster Workshop des German RLC Nürnberg 5. April 2012 Manfred Antoni Outline Data Process of record linkage Data access and

More information

The Impact of Bank Capital Regulation on Financing the Economy

The Impact of Bank Capital Regulation on Financing the Economy IW policy paper 27/2015 Contributions to the political debate by the Cologne Institute for Economic Research The Impact of Bank Capital Regulation on Financing the Economy Comments on the Public Consultation

More information

Service Engineering, Business Process Management and Design

Service Engineering, Business Process Management and Design 7 th INTERNATIONAL MULTIDISCIPLINARY CONFERENCE Baia Mare, Romania, May 17-18, 2007 ISSN-1224-3264 BUSINESS PROCESS MANAGEMENT SOFTWARE IN THE FIELD OF SERVICE ENGINEERING Helmut, Aschbacher DI (FH), university

More information

Financial Reinsurance with Applications in Life Reassurance

Financial Reinsurance with Applications in Life Reassurance Financial Reinsurance with Applications in Life Reassurance Reinhard Dehlinger Germany Summary The main reasons for the growing interest in Financial Reinsurance (Fin Re) concepts are the lack of capacity

More information

Research Report Deposit insurance suitable for Europe: Proposal for a three-stage deposit guarantee scheme with limited European liability

Research Report Deposit insurance suitable for Europe: Proposal for a three-stage deposit guarantee scheme with limited European liability econstor www.econstor.eu Der Open-Access-Publikationsserver der ZBW Leibniz-Informationszentrum Wirtschaft The Open Access Publication Server of the ZBW Leibniz Information Centre for Economics Krahnen,

More information

e-journal of Practical Business Research Business Process Benchmarking Implementierung

e-journal of Practical Business Research Business Process Benchmarking Implementierung e-journal of Practical Business Research Business Process Benchmarking Implementierung Jörg Puchan, Sophia Zapf, Fee Schubert-Stöcklein, Christian Willige puchan@hm.edu Erschienen im e-journal of Practical

More information

ida.com excellence in dependable automation

ida.com excellence in dependable automation IEC 61508 Maintenance Status IEC 61508 Maintenance Projekt ist aus dem zulässigen Zeitrahmen gelaufen Viele Baustellen auch durch neue Mitglieder (Frankreich, USA, IEC 61511 Team) Bestehende Anforderungen,

More information

Kapitel 2 Unternehmensarchitektur III

Kapitel 2 Unternehmensarchitektur III Kapitel 2 Unternehmensarchitektur III Software Architecture, Quality, and Testing FS 2015 Prof. Dr. Jana Köhler jana.koehler@hslu.ch IT Strategie Entwicklung "Foundation for Execution" "Because experts

More information

Does the capitalization of internally generated intangible assets according to IAS 38 really provide useful information?

Does the capitalization of internally generated intangible assets according to IAS 38 really provide useful information? Ekonomia Menedżerska 2009, nr 6, s. 7 16 Torsten Mindermann*, Gerrit Brösel** Does the capitalization of internally generated intangible assets according to IAS 38 really provide useful information? 1.

More information

Usability in SW-Engineering-Prozessen und in CMMI

Usability in SW-Engineering-Prozessen und in CMMI Workshop USABILITY VDE Prüf- und Zertifizierungsinstitut Strategiekreis i-12 Usability in SW-Engineering-Prozessen und in CMMI Helmut Thoma Schweizer Informatik Gesellschaft Lehrbeauftragter Universität

More information

Voraussetzungen/ Prerequisites *for English see below*

Voraussetzungen/ Prerequisites *for English see below* English Programme im akademischen Jahr 2013/2014 English Programme in the Academic Year 2013/2014 *for English see below* Im akademischen Jahr 2013/2014 freuen wir uns Ihnen erneut ein Programm mit englischsprachigen

More information

Publikationsverzeichnis

Publikationsverzeichnis Publikationsverzeichnis AUFSÄTZE IN REFERIERTEN ZEITSCHRIFTEN Publiziert in 2014 Maltritz, D. und Molchanov, A. (2014): Country Risk Determinants with Model Uncertainty. International Review of Economics

More information

Developments in the Austrian Surveying Education

Developments in the Austrian Surveying Education Gert STEINKELLNER, Austria Key words: University Curriculum, Advanced Technical College, Civil Engineer, Assistant Surveyor. ABSTRACT In Austria was a substantial change of surveying education during the

More information

The German Election Campaign in Times of Crisis

The German Election Campaign in Times of Crisis The German Election Campaign in Times of Crisis Rüdiger Schmitt-Beck 2013 EUDO Dissemination Conference Elections in Times of Crisis European University Institute, 28-29 November, 2013 Germany 2013: A

More information

Mit einem Auge auf den mathema/schen Horizont: Was der Lehrer braucht für die Zukun= seiner Schüler

Mit einem Auge auf den mathema/schen Horizont: Was der Lehrer braucht für die Zukun= seiner Schüler Mit einem Auge auf den mathema/schen Horizont: Was der Lehrer braucht für die Zukun= seiner Schüler Deborah Löwenberg Ball und Hyman Bass University of Michigan U.S.A. 43. Jahrestagung für DidakEk der

More information

Doctoral research assistant and lecturer in International Relations.

Doctoral research assistant and lecturer in International Relations. Moritz Weiß, Ph.D. Ludwig Maximilians University (LMU) Munich Geschwister Scholl Institute of Political Science Oettingenstr. 67, 80538 Munich E Mail: moritz.weiss@gsi.lmu.de Born on 30 April, 1977 in

More information

Making Simulation Work for the Organizational Design of Communication Centers: Challenges and Practical Experience

Making Simulation Work for the Organizational Design of Communication Centers: Challenges and Practical Experience UNIVERSITY OF BAYREUTH Lehrstuhl für Betriebswirtschaftslehre VII Wirtschaftsinformatik Making Simulation Work for the Organizational Design of Communication Centers: Challenges and Practical Experience

More information

HYPO TIROL BANK AG. EUR 5,750,000,000 Debt Issuance Programme (the "Programme")

HYPO TIROL BANK AG. EUR 5,750,000,000 Debt Issuance Programme (the Programme) Third Supplement dated 29 December 2015 to the Prospectus dated 9 June 2015 This document constitutes a supplement (the "Third Supplement") within the meaning of Article 16 of the Directive 2003/71/EC

More information

IAC-BOX Network Integration. IAC-BOX Network Integration IACBOX.COM. Version 2.0.1 English 24.07.2014

IAC-BOX Network Integration. IAC-BOX Network Integration IACBOX.COM. Version 2.0.1 English 24.07.2014 IAC-BOX Network Integration Version 2.0.1 English 24.07.2014 In this HOWTO the basic network infrastructure of the IAC-BOX is described. IAC-BOX Network Integration TITLE Contents Contents... 1 1. Hints...

More information

Investments in supplier-specific economies of scope with two different services and different supplier characters: two specialists

Investments in supplier-specific economies of scope with two different services and different supplier characters: two specialists Investments in supplier-specific economies of scope with two different services and different supplier characters: two specialists Günter Fandel a,* and Jan Trockel a Discussion paper No. 494 March 2016

More information

Deutsche Nachwuchswissenschaftler in den USA

Deutsche Nachwuchswissenschaftler in den USA Deutsche Nachwuchswissenschaftler in den USA Perspektiven der Hochschul- und Wissenschaftspolitik German Scientists in the United States: Results of the C R I S Online Survey Christoph F. Buechtemann und

More information

Productions Management II

Productions Management II Productions Management II - Lecture 6 - Supply Chain Management I Lecture Supervisor: M.Tech. Amit Garg ga@fir.rwth-aachen.de Pontdriesch 14/16 Tel.: 47705-439 Objectives of Lecture on SCM Overview on

More information

How To Write A Book

How To Write A Book Univ.-Prof. Dipl.-Ing. Dr. Gerhard Chroust, M.S. Curriculum Vitae (status Augsut 2015) 1 Personal Data: born: April 23, 1941 in Vienna, Austria married, 2 adult children business address: em. O. Univ.-Prof.

More information

Rückfax an / fax back to +49 (0)40 519 013 11 Senden an / send to: service@btl-services.de

Rückfax an / fax back to +49 (0)40 519 013 11 Senden an / send to: service@btl-services.de Rückfax an / fax back to +49 (0)40 519 013 11 Senden an / send to: service@btl-services.de Unternehmen / company Rechnungsanschrift / billing address Telefon / phone number E-Mail / e-mail address Website

More information

I. European Financial Integration and Banking in Germany

I. European Financial Integration and Banking in Germany I. European Financial Integration and Banking in Germany Prof. Dr. Detlev Hummel Chair of Banking and Finance Potsdam University, Germany Prof. Hummel, PoSA July 2008 1 Bank system in Germany ECB/ German

More information

TECHNISCHE UNIVERSITÄT DRESDEN Fakultät Wirtschaftswissenschaften

TECHNISCHE UNIVERSITÄT DRESDEN Fakultät Wirtschaftswissenschaften TECHNISCHE UNIVERSITÄT DRESDEN Fakultät Wirtschaftswissenschaften Dresdner Beiträge zu Quantitativen Verfahren Nr. 37/04 BLUEs for Default Probabilities von Konstantin Vogl und Robert Wania Herausgeber:

More information

How To Write The Ceres Software Development Guidelines

How To Write The Ceres Software Development Guidelines MEDIZINISCHE FAKULTÄT RHEINISCH-WESTFÄLISCHE TECHNISCHE HOCHSCHULE AACHEN INSTITUT FÜR MEDIZINISCHE INFORMATIK GESCHÄFTSFÜHRENDER DIREKTOR: UNIVERSITÄTSPROFESSOR DR. DR. KLAUS SPITZER The CERES Project

More information

Vorläufiges English Programme im akademischen Jahr 2015/2016 Preliminary English Programme in the Academic Year 2015/2016 *for English see below*

Vorläufiges English Programme im akademischen Jahr 2015/2016 Preliminary English Programme in the Academic Year 2015/2016 *for English see below* Vorläufiges English Programme im akademischen Jahr 2015/2016 Preliminary English Programme in the Academic Year 2015/2016 *for English see below* Im akademischen Jahr 2015/2016 freuen wir uns Ihnen erneut

More information

Vorläufiges English Programme im akademischen Jahr 2015/2016 Preliminary English Programme in the Academic Year 2015/2016 *for English see below*

Vorläufiges English Programme im akademischen Jahr 2015/2016 Preliminary English Programme in the Academic Year 2015/2016 *for English see below* Vorläufiges English Programme im akademischen Jahr 2015/2016 Preliminary English Programme in the Academic Year 2015/2016 *for English see below* Im akademischen Jahr 2015/2016 freuen wir uns Ihnen erneut

More information

Degrowth and the need to reform social security systems - What scope for Synergies

Degrowth and the need to reform social security systems - What scope for Synergies Group Assembly Process (GAP) - Stirring Paper Degrowth and the need to reform social security systems - What scope for Synergies by Kerstin Hötte Degrowth and social security systems are standing in an

More information

English Programme im akademischen Jahr 2014/2015 English Programme in the Academic Year 2014/2015 *for English see below*

English Programme im akademischen Jahr 2014/2015 English Programme in the Academic Year 2014/2015 *for English see below* English Programme im akademischen Jahr 2014/2015 English Programme in the Academic Year 2014/2015 *for English see below* Im akademischen Jahr 2014/2015 freuen wir uns Ihnen erneut ein Programm mit englischsprachigen

More information

It is also possible to combine courses from the English and the German programme, which is of course available for everyone!

It is also possible to combine courses from the English and the German programme, which is of course available for everyone! English Programme im akademischen Jahr 2015/2016 English Programme in the Academic Year 2015/2016 *for English see below* Im akademischen Jahr 2015/2016 freuen wir uns Ihnen erneut ein Programm mit englischsprachigen

More information

The Social System in Germany and the Role of Caritas. CAPSO: Caritas in Europe Promoting Together Solidarity

The Social System in Germany and the Role of Caritas. CAPSO: Caritas in Europe Promoting Together Solidarity The Social System in Germany and the Role of Caritas The German Social System: Legal basis Grundgesetz der Bundesrepublik Deutschland Basic Law for the Federal Republic of Germany Art. 20 (1) Die Bundesrepublik

More information

Microsoft Certified IT Professional (MCITP) MCTS: Windows 7, Configuration (070-680)

Microsoft Certified IT Professional (MCITP) MCTS: Windows 7, Configuration (070-680) Microsoft Office Specialist Office 2010 Specialist Expert Master Eines dieser Examen/One of these exams: Eines dieser Examen/One of these exams: Pflichtexamen/Compulsory exam: Word Core (Exam 077-881)

More information

Building an Architecture Model 1. 1. Entwerfen Sie mit AxiomSys ein Kontextdiagramm, das folgendermaßen aussieht:

Building an Architecture Model 1. 1. Entwerfen Sie mit AxiomSys ein Kontextdiagramm, das folgendermaßen aussieht: Building an Architecture Model 1 1. Entwerfen Sie mit AxiomSys ein Kontextdiagramm, das folgendermaßen aussieht: Wie Ihnen aus der vergangenen Lehrveranstaltung bekannt ist, bedeuten Sterne neben den Bezeichnungen,

More information

Search Engines Chapter 2 Architecture. 14.4.2011 Felix Naumann

Search Engines Chapter 2 Architecture. 14.4.2011 Felix Naumann Search Engines Chapter 2 Architecture 14.4.2011 Felix Naumann Overview 2 Basic Building Blocks Indexing Text Acquisition Text Transformation Index Creation Querying User Interaction Ranking Evaluation

More information

Master of Arts Program Sociology European Societies. Institute of Sociology Freie University Berlin

Master of Arts Program Sociology European Societies. Institute of Sociology Freie University Berlin Master of Arts Program Sociology European Societies Institute of Sociology Freie University Berlin Overview 1. Structure of the program 2. Thematic scope of modules 3. Master thesis requirements 4. Credits

More information

Cost-Benefit Analysis of Videoconferencing and Telepresence Systems in Virtual Project Environments: a Holistic Approach. D i p l o m a r b e i t

Cost-Benefit Analysis of Videoconferencing and Telepresence Systems in Virtual Project Environments: a Holistic Approach. D i p l o m a r b e i t Cost-Benefit Analysis of Videoconferencing and Telepresence Systems in Virtual Project Environments: a Holistic Approach D i p l o m a r b e i t zur Erlangung des Grades eines Diplom-Ökonomen der Wirtschaftswissenschaftlichen

More information

Zielgruppe Dieses Training eignet sich für IT-Professionals.

Zielgruppe Dieses Training eignet sich für IT-Professionals. Advanced Solutions of Microsoft Exchange Server 2013 MOC 20342 In diesem Kurs wird den Teilnehmern das Wissen vermittelt, eine Microsoft Exchange Server 2013 Umgebung zu konfigurieren und zu verwalten.

More information

Business Studies for Exchange Students at HT Berlin

Business Studies for Exchange Students at HT Berlin Department 3 Business Studies for Echange Students at HT Berlin Overview of courses lectured in English 25 October 2013 Business Studies for Echange Students in English - (undergraduates) I 1 International

More information

POTENTIAL AND LIMITS OF THE EGTC INSTRUMENT FOR ENHANCING INTEGRATION ACROSS BORDERS

POTENTIAL AND LIMITS OF THE EGTC INSTRUMENT FOR ENHANCING INTEGRATION ACROSS BORDERS POTENTIAL AND LIMITS OF THE EGTC INSTRUMENT FOR ENHANCING Sabine Zillmer and Maria Toptsidou Spatial Foresight GmbH 7, rue de Luxembourg L-7330 Heisdorf Luxembourg www.spatialforesight.eu Spatial Foresight

More information

Other activities. Research interests. Publications. Refereed journals. Chapters in books

Other activities. Research interests. Publications. Refereed journals. Chapters in books Curriculum Vitae Klaus NOWOTNY University of Salzburg Residenzplatz 9 A-5010 Salzburg Austria Tel.: +43 (662) 8044-3722 Fax: +43 (662) 8044-623 E-mail: Klaus.Nowotny@sbg.ac.at Current positions Since 03/2012:

More information

STELTSICHVOR. Webdesign-and-IT. TiloBreuer Luftstrase16 38116Braunschweig Tel: 05316095675 Mobil:01751603449 Fax: 05316095676

STELTSICHVOR. Webdesign-and-IT. TiloBreuer Luftstrase16 38116Braunschweig Tel: 05316095675 Mobil:01751603449 Fax: 05316095676 STELTSICHVOR Webdesign-and-IT TiloBreuer Luftstrase16 38116Braunschweig Tel: 05316095675 Mobil:01751603449 Fax: 05316095676 Ichfreuemich,dassSieInteresseanmeinenDienstleistungenhaben undbedankemichgleichzeitigfürihreinvestiertezeit.

More information

Adaptive Business Intelligence

Adaptive Business Intelligence Adaptive Business Intelligence Bearbeitet von Zbigniew Michalewicz, Martin Schmidt, Matthew Michalewicz, Constantin Chiriac 1. Auflage 2006. Buch. xiii, 246 S. Hardcover ISBN 978 3 540 32928 2 Format (B

More information

Transfers of securities to The Royal Bank of Scotland plc pursuant to Part VII of the UK Financial Services and Markets Act 2000 RBS plc

Transfers of securities to The Royal Bank of Scotland plc pursuant to Part VII of the UK Financial Services and Markets Act 2000 RBS plc Transfers of securities to The Royal Bank of Scotland plc pursuant to Part VII of the UK Financial Services and Markets Act 2000 On 6 February 2010, ABN AMRO Bank N.V. (registered with the Dutch Chamber

More information

Übungen zur Vorlesung Einführung in die Volkswirtschaftslehre VWL 1

Übungen zur Vorlesung Einführung in die Volkswirtschaftslehre VWL 1 Übungen zur Vorlesung Einführung in die Volkswirtschaftslehre VWL 1 Übungen Kapitel 31/38 Beat Spirig Aufgabe 31.4, UK capital outflow NCO = purchases of foreign assets by domestic residents purchases

More information

Management and optimization of multiple supply chains

Management and optimization of multiple supply chains Management and optimization of multiple supply chains J. Dorn Technische Universität Wien, Institut für Informationssysteme Paniglgasse 16, A-1040 Wien, Austria Phone ++43-1-58801-18426, Fax ++43-1-58801-18494

More information

Timebox Planning View der agile Ansatz für die visuelle Planung von System Engineering Projekt Portfolios

Timebox Planning View der agile Ansatz für die visuelle Planung von System Engineering Projekt Portfolios Agile Leadership Day 2015 Markus Giacomuzzi - Siemens Building Technologies Headquarters Zug Timebox Planning View der agile Ansatz für die visuelle Planung von System Engineering Projekt Portfolios structure

More information

Transfers of securities to The Royal Bank of Scotland plc pursuant to Part VII of the UK Financial Services and Markets Act 2000 RBS plc

Transfers of securities to The Royal Bank of Scotland plc pursuant to Part VII of the UK Financial Services and Markets Act 2000 RBS plc Transfers of securities to The Royal Bank of Scotland plc pursuant to Part VII of the UK Financial Services and Markets Act 2000 On 6 February 2010, ABN AMRO Bank N.V. (registered with the Dutch Chamber

More information

Key success factors in evaluation designs

Key success factors in evaluation designs AQS and SICI International Workshop: Sustaining school improvement after feedback Key success factors in evaluation designs Dr. Patricia Erbeldinger AQS, Bad Kreuznach, Germany Source: http://billramseyrealtors.com/wpcontent/uploads/2012/09/key-success.jpg

More information

Multipurpsoe Business Partner Certificates Guideline for the Business Partner

Multipurpsoe Business Partner Certificates Guideline for the Business Partner Multipurpsoe Business Partner Certificates Guideline for the Business Partner 15.05.2013 Guideline for the Business Partner, V1.3 Document Status Document details Siemens Topic Project name Document type

More information

Digicomp Microsoft Evolution Day 2015 1. MIM 2016 Oliver Ryf. Partner:

Digicomp Microsoft Evolution Day 2015 1. MIM 2016 Oliver Ryf. Partner: 1 MIM 2016 Oliver Ryf Partner: 2 Agenda Begrüssung Vorstellung Referent PowerShell Desired State Configuration F&A Weiterführende Kurse 3 Vorstellung Referent Seit 1991 IT-Trainer 1995 MCSE und MCT Seit

More information

Quality Ensuring Development of Software Processes

Quality Ensuring Development of Software Processes Quality Ensuring Development of Software Processes ALEXANDER FÖRSTER,GREGOR ENGELS Department of Computer Science University of Paderborn D-33095 Paderborn, Germany {alfo engels}@upb.de ABSTRACT: Software

More information

Evaluating OO-CASE tools: OO research meets practice

Evaluating OO-CASE tools: OO research meets practice Evaluating OO-CASE tools: OO research meets practice Danny Greefhorst, Matthijs Maat, Rob Maijers {greefhorst, maat, maijers}@serc.nl Software Engineering Research Centre - SERC PO Box 424 3500 AK Utrecht

More information

Formal Concept Analysis used for object-oriented software modelling Wolfgang Hesse FB Mathematik und Informatik, Univ. Marburg

Formal Concept Analysis used for object-oriented software modelling Wolfgang Hesse FB Mathematik und Informatik, Univ. Marburg FCA-SE 10 Formal Concept Analysis used for object-oriented software modelling Wolfgang Hesse FB Mathematik und Informatik, Univ. Marburg FCA-SE 20 Contents 1 The role of concepts in software development

More information

MARKUS ARNOLD Director Managerial Accounting Section Institute for Accounting University of Bern markus.arnold@iuc.unibe.ch

MARKUS ARNOLD Director Managerial Accounting Section Institute for Accounting University of Bern markus.arnold@iuc.unibe.ch MARKUS ARNOLD Director Managerial Accounting Section Institute for Accounting University of Bern markus.arnold@iuc.unibe.ch Institute for Accounting Home Address: University of Bern Engehaldenstr. 4 Grauholzstr.

More information

[2006] IEEE. Reprinted, with permission, from [M. Ye and K. Sandrasegaran, Teaching about Firewall Concepts using the inetwork Simulator, Information

[2006] IEEE. Reprinted, with permission, from [M. Ye and K. Sandrasegaran, Teaching about Firewall Concepts using the inetwork Simulator, Information [2006] IEEE. Reprinted, with permission, from [M. Ye and K. Sandrasegaran, Teaching about Firewall Concepts using the inetwork Simulator, Information Technology Based Higher Education and Training, 2006.

More information

Guarantees: Past, Present, Future?

Guarantees: Past, Present, Future? 16. Mai 2013 The Future of Life Insurance Guarantees: Past, Present, Future? Ralf Korn (TU Kaiserslautern, Fraunhofer ITWM, EI-QFM) Motivation I: Nov. 2011: DGVFM/DAV launched the Topic of the Year 2012

More information

Summary Suitability of the STOXX GC Pooling EUR Deferred Funding Rate as an alternative benchmark for the money market

Summary Suitability of the STOXX GC Pooling EUR Deferred Funding Rate as an alternative benchmark for the money market Summary Suitability of the STOXX GC Pooling EUR Deferred Funding Rate as an alternative benchmark for the money market An abridged version of a thesis by Jennifer Ertel (June 17,214) Sperrvermerk Die vorliegende

More information

RAT DER EUROPÄISCHEN UNION. Brüssel, den 2. März 2012 (06.03) (OR. en) 6051/12 INF 11 API 11 JUR 50. I/A-PUNKT-VERMERK Gruppe "Information"

RAT DER EUROPÄISCHEN UNION. Brüssel, den 2. März 2012 (06.03) (OR. en) 6051/12 INF 11 API 11 JUR 50. I/A-PUNKT-VERMERK Gruppe Information RAT DER EUROPÄISCHEN UNION Brüssel, den 2. März 2012 (06.03) (OR. en) 6051/12 INF 11 API 11 JUR 50 I/A-PUNKT-VERMERK der Gruppe "Information" für den AStV (2. Teil)/Rat Nr. Vordokument: 6050/12 Betr.:

More information

SPODAT - a data bank based on sport motorical test results to describe motor development

SPODAT - a data bank based on sport motorical test results to describe motor development IASI 9th Scientific Congress "Sports Information in the Nineties", Rom 07. - 10.6.1993; Poster and oral presentation; Session A: training and competition data SPODAT - a data bank based on sport motorical

More information

Integrating Jalopy code formatting in CVS repositories

Integrating Jalopy code formatting in CVS repositories Integrating Jalopy code formatting in CVS repositories A NOW guide Dr. Wolfgang Thronicke C-LAB Short Report Vol. 1 (2004) No. 2 Cooperative Computing & Communication Laboratory ISSN 1614-1172 C-LAB ist

More information

22. April 2010 Siemens Enterprise Communications

22. April 2010 Siemens Enterprise Communications Donnerstag, 26.04.2007 22. April 2010 Siemens Enterprise Communications GmbH & Co KG Copyright Siemens Copyright Enterprise Siemens Communications Enterprise Communications GmbH & KG 2007. 2010. All rights

More information

Programmierbeispiele zur Datenaufbereitung der Stichprobe der Integrierten Arbeitsmarktbiografien (SIAB) in Stata

Programmierbeispiele zur Datenaufbereitung der Stichprobe der Integrierten Arbeitsmarktbiografien (SIAB) in Stata 04/2013 Programmierbeispiele zur Datenaufbereitung der Stichprobe der Integrierten Arbeitsmarktbiografien (SIAB) in Stata Generierung von Querschnittdaten und biografischen Variablen August 2013 (2. aktualisierte

More information

Erich R. Utz. Modelling and Measurement Methods of Operational Risk in Banking. Herbert Utz Verlag München

Erich R. Utz. Modelling and Measurement Methods of Operational Risk in Banking. Herbert Utz Verlag München Erich R. Utz Modelling and Measurement Methods of Operational Risk in Banking Herbert Utz Verlag München Schriftenreihe für angewandtes Management herausgegeben von Prof. Dr. Dr. Christian Werner, Fachhochschule

More information

How to start up a software business within a cloud computing environment

How to start up a software business within a cloud computing environment Thomas Buchegger How to start up a software business within a cloud computing environment An evaluation of aspects from a business development perspective Anchor Academic Publishing disseminate knowledge

More information

Data Warehousing Metadata Management

Data Warehousing Metadata Management Data Warehousing Metadata Management Spring Term 2014 Dr. Andreas Geppert Credit Suisse geppert@acm.org Spring 2014 Slide 1 Outline of the Course Introduction DWH Architecture DWH-Design and multi-dimensional

More information

Data Warehousing Metadata Management

Data Warehousing Metadata Management Data Warehousing Metadata Management Spring Term 2014 Dr. Andreas Geppert Credit Suisse geppert@acm.org Spring 2014 Slide 1 Outline of the Course Introduction DWH Architecture DWH-Design and multi-dimensional

More information

Adaptive demand planning in a volatile business environment

Adaptive demand planning in a volatile business environment 2012 International Conference on Economics, Business and Marketing Management IPEDR vol.29 (2012) (2012) IACSIT Press, Singapore Adaptive demand planning in a volatile business environment Romana Traxler

More information

Zielgruppe Dieses Training eignet sich für System Engineers und an SCCM- Administratoren.

Zielgruppe Dieses Training eignet sich für System Engineers und an SCCM- Administratoren. Deploying System Center 2012 Configuration Manager - SCCM MOC 10748 In dieser Schulung lernen Sie die Planung und Bereitstellung einer System Center 2012 Configuration Manager-Hierarchie, einschließlich

More information

Project Management Institute Frankfurt Chapter Vice President Meetings Manfred Rieck, IBM Deutschland GmbH, Wilhelm-Fay-Straße 30-34 D-65936 Frankfurt

Project Management Institute Frankfurt Chapter Vice President Meetings Manfred Rieck, IBM Deutschland GmbH, Wilhelm-Fay-Straße 30-34 D-65936 Frankfurt 29. August 2006 Sehr geehrte(r) Kollege / Kollegin Hiermit lade ich Sie zum Membermeeting des PMI e.v. am 25.09.2006 ab 17:00 Uhr ein. Ort: (Anfahrskizze siehe Anlage 2) Dear Colleagues, I m glad to invite

More information

it-novum whitepaper August 2011 SAP and SugarCRM

it-novum whitepaper August 2011 SAP and SugarCRM it-novum whitepaper August 2011 SAP and SugarCRM Integrated, cross-system business processes in modern customer relation management through bi-directional data interchange between SAP and SugarCRM it-novum

More information

https://ir-cockpit.equitystory.com/cgi-bin/main.ssp?fn=voting_right_edit&voting_righ...

https://ir-cockpit.equitystory.com/cgi-bin/main.ssp?fn=voting_right_edit&voting_righ... Seite 1 von 23 DGAP Stimmrechtsmitteilung: Continental AG Continental AG: Veröffentlichung gemäß 26 Abs. 1 WpHG mit dem Ziel der europaweiten Verbreitung Veröffentlichung einer Stimmrechtsmitteilung übermittelt

More information

Business, Institute for Social Policy. Institute for Social Policy Welthandelsplatz.1 1020 Vienna Tel: +43-1-31336-4189 Helene.Dearing@wu.ac.

Business, Institute for Social Policy. Institute for Social Policy Welthandelsplatz.1 1020 Vienna Tel: +43-1-31336-4189 Helene.Dearing@wu.ac. CURRICULUM VITAE Helene Dearing Mag.rer.soc.oec. April 2015 PRESENT POSITION Research Assistant at the Vienna University of Economics and Business, Institute for Social Policy CONTACT Helene Dearing Institute

More information

Erfolgreiche Zusammenarbeit:

Erfolgreiche Zusammenarbeit: Erfolgreiche Zusammenarbeit: Agile Manager, Application Lifecycle Management und HP Quality Center Thomas Köppner, Technical Consultant, HP HP Agile Manager im Zusammenspiel mit HP Quality Center 2 Thomas

More information

Internet und Vertriebswege-Integration - auf dem Weg zur vollelektronischen Bank

Internet und Vertriebswege-Integration - auf dem Weg zur vollelektronischen Bank Internet und Vertriebswege-Integration - auf dem Weg zur vollelektronischen Bank Fraunhofer IAO 06. Februar 2001 Kai M. Morscheck Director Product Management Brokat AG, Stuttgart www.brokat.com Financial

More information

Implementing Data Models and Reports with Microsoft SQL Server

Implementing Data Models and Reports with Microsoft SQL Server Implementing Data Models and Reports with Microsoft SQL Server Dauer: 5 Tage Kursnummer: M20466 Überblick: Business Intelligence (BI) wird für Unternehmen von verschiedenen Größen aufgrund des dadurch

More information

Permanent Establishments in International Tax Law

Permanent Establishments in International Tax Law Schriftenreihe zum Internationalen Steuerrecht Herausgegeben von Univ.-Prof. Dr. Michael Lang Band 29 Permanent Establishments in International Tax Law herausgegeben von Hans-Jörgen Aigner Mario Züger

More information