Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

CREATE MODULE

Synopsis

CREATE MODULE module_name

Description

Creates a new module in the Mendix project. Modules are the top-level organizational unit for all project documents including entities, microflows, pages, and enumerations. The module is created with default settings and an empty domain model.

Parameters

module_name
The name of the module to create. Must be a valid identifier (letters, digits, underscores; cannot start with a digit). If the name conflicts with a reserved keyword, enclose it in double quotes.

Examples

Create a module

CREATE MODULE OrderManagement;

Create multiple modules for a layered architecture

CREATE MODULE Sales;
CREATE MODULE Inventory;
CREATE MODULE Reporting;

See Also

CREATE FOLDER, MOVE, DROP MODULE