Book Image

Apache OFBiz Development: The Beginner's Tutorial

By : Jonathon Wong, Rupert Howell
Book Image

Apache OFBiz Development: The Beginner's Tutorial

By: Jonathon Wong, Rupert Howell

Overview of this book

<p>Apache OFBiz (Open For Business) is versatile open-source enterprise automation software that powers many small and medium sized businesses around the world. It incorporates a number of mature applications such as ERP, e-Commerce, MRP and CRM.<br /><br />Built around an MVC framework with common logic, data model and process components, Ofbiz allows existing and bespoke applications to be added through a component-based architecture. Ofbiz includes a mature suite of enterprise applications that integrate and automate a company's many business needs.<br />&nbsp;<br />This easy-to-read book will quickly enable newcomers to get hands-on with OFBiz. It provides an overview of the main modules and employs illustrated examples that show readers how to build exemplary business applications rapidly. Covering the main aspects of the Model-View-Controller framework, the reader will gain a working knowledge of Widgets, Entities, and The Service Engine. The authors also describe how to tweak OFBiz, and offer valuable performance and development tips. By navigating through the flow of OFBiz and providing insight into the thousands of examples that already exist in the core code they have made this book a must-have for anyone looking to get started with OFBiz.</p>
Table of Contents (20 chapters)
Apache OFBiz Development
Credits
About the Authors
About the Reviewers
Preface
Simple Method User's Guide

View Entities


Generally speaking, a view entity is a collection of participating or member entities joined together by a number of relations. This collection forms a structure, where every member entity in a view entity is connected to the overall structure, no entity is left out. In short, a view entity provides a single view of a group of interconnected entities. This is very convenient for performing complex database queries that need to take such high-level views of data.

Technically speaking, a view entity could possibly be a complex hierarchy of relations between a number of member entities. The term hierarchy is used because the structure described by a view entity is not cyclical but is strictly top-down. This does not mean that a member entity will not be referenced more than once. A member entity can even be referenced in more than one level, say at a higher level and then again at a lower level, in effect giving the impression that the structure described is cyclical.

When we...