ADempiere
ADempiere.netCommunity ChatWiki
develop
develop
  • ADempiere Documentation
  • About this Documentation
    • Copyright
    • Conventions Used
    • Contributors
    • Version Control
    • Getting Involved in the ADempiere Project
    • GNU Free Documentation License
  • Glossary
  • User Guide
    • Getting Started
      • About the Application
      • Launching the Application
      • Logging In
      • Finding Your Way Around the Java Client
        • The Application Menu
        • The Performance Dashboard
        • The Menu (Home) Tab
      • Finding Your Way Around the Web App
        • The Dashboard
      • Opening and Using Windows
        • The Tool Bar
        • Shortcut Keys
      • Entering Data - Fields and Buttons
        • Account Field
        • Assignment Field
        • Binary Data Field
        • Button Field
        • Color Field
        • Date Field
        • Date + Time Field
        • Untitled
        • Number Field
      • Dialogs and Forms
        • Account Dialog
        • Change Log or Record Info
        • Calculator Tool
        • Calendar Tool
        • Payment Dialog
      • Key Concepts
      • Workflow Activities
      • Workflow
      • Windows and Tabs
      • Reports and Processes
    • Garden World Demonstration Client
    • Untitled
    • System Administration
      • General Rules
        • System Rules
        • Security
          • Defining Users and Contacts
          • Roles and Managing Data Access
            • Dashboard Access
            • Role Access Update
        • Server
          • EMail Configuration
      • Managing the Client
        • Configuring the Client Password Reset
      • Managing Organizations
        • Document Status Indicators
      • Data
        • Data Import
    • Partner Relations
    • Revenue Recognition
    • Open Items
      • Dunning
    • Products & Material Management
      • Product Setup
        • Warehouse & Locators
        • Units of Measure
        • Asset Groups
        • Product Categories
        • Product Classifications, Classes and Groups
        • Product Attributes, Sets and Instances
          • Example - Using Product Attributes
        • Defining the Product
          • Product Types
          • Basic Product Setup
          • Product Bill of Materials
            • BOM Components
      • BOM Drop
    • Accounting & Performance Analysis
      • An Overview of Accounting in ADempiere
      • Accounting Setup
      • Calendar, Year and Periods
      • Tax Setup
      • Performance Measurement Setup
    • Assets and Asset Management
    • Manufacturing
      • Engineering Change Management
      • Product Configuration
      • Forecasting
    • Warehouse Management System
  • System Administration
    • Installation
      • System Requirements
      • Install ADempiere easily with Docker
      • Installing ADempiere Manually
        • Database Server Installation & Setup
        • Application Server Installation and Setup
        • Initialize the Database
        • Launch the Application Server
      • Securing Your ADempiere Installation
    • Upgrading and Migration
    • Database Maintenance
      • Database Backup and Restore
    • The Application Dictionary
      • Synchronize Changes with the Database
  • Developer Guide
    • Becoming a Developer
    • Software Development Procedure
    • ADempiere Version Control
    • ADempiere Best Practices
    • Development Environments
      • Creating WebUI Workspace using Eclipse Webtool
      • Customization Environment
Powered by GitBook
On this page
  1. System Administration

The Application Dictionary

The Application Dictionary defines the application, its windows and fields, the tables and columns and the processes that are used throughout.

PreviousDatabase Backup and RestoreNextSynchronize Changes with the Database

Last updated 4 years ago

The Application Dictionary in ADempiere is a powerful tool that allows the System Administrator to define the application's meta-data or how the application looks and behaves. Virtually every aspect of the application can be changed via the Application Dictionary. New functionality can be added by creating new entries in the Dictionary, often without the need for adding software. In fact, it is through the Application Dictionary that the ADempiere Developers add new functionaliy with every release.

There are many ways the application can be changed but the most common changes involve:

  • Adding tables and columns;

  • Adding windows, tabs and fields;

  • Changing the way data is displayed, or limiting values to lists; and

  • Creating reports and processes.

At the core of these changes is an "Entity Type". This is description of who owns the change and is responsible for it. There are two Entity Types that are reserved: Dictionary and Adempiere. These are used by the application developers and any entry in the application dictionary that uses them risks being overwritten at the next migration.

Another important concept is the "Element" which is a common definition of a field that includes the name, data type, references, description and comments associated with the field. This is a helpful tool as all this information can be set once and then applied everywhere the field is defined or used as a column. Further, any changes to the Element can be propagated to every field or column that uses that element.

The processes to add a new window with a single tab and some columns is quite simple:

  1. Create or select the Entity Type to use for every change

  2. Create Element definitions for the custom columns you will be adding

  3. Create a Table to hold the data

  4. Create Columns in the Table using the Elements from step 2.

  5. Create a new Window and add a Tab that draws data from the Table

  6. Create the Fields for the Columns and order them in the tab

  7. Add the Window to the menu

  8. Run the process to ensure users can see the new window.

  9. Log-out and in to see the changes

You can now use the window to collect and manage the data as in any other window.

This example is pretty trivial as it has no functionality associated with it. The real power of ADempiere comes from the processes that operate on the data. These processes do the work, the automation, that make an ERP system so valuable.

The following sections will outline the use of the Application Dictionary in detail.

Role Access Update