Command reference

FrePPLe provides a list of commands that perform actions on the database, the input data and/or the output data.

The commands can be accessed in three different ways:

This section provides an overview of the available actions:

The list can be extended with custom commands from extension modules.

Planning workflows

Generate a plan

This option runs the frePPLe planning engine with the input data from the database. The planning results are exported back into the database.

Two main plan types can be distinguished, based on whether you want to see demand OR material, lead time and capacity problems to be shown.

  • A constrained plan respects all enabled constraints. In case of shortages the demand is planned late or short. No any material or capacity shortages are present in the plan.

  • An unconstrained plan shows material, capacity and operation problems that prevent the demand from being planned in time. The demand is always met completely and on time.

In both the constrained and unconstrained plans you can select which constraints are considered during plan creation.

This command is available in the user interface, the command line and the web API:

  • Execution screen:

    Execution screen - Plan generation
  • Command line:

    frepplectl runplan --constraints=15 --plantype=1 --env=fcst,invplan,balancing,supply
    
    Deprecated:
    frepplectl frepple_run --constraints=15 --plantype=1 --env=fcst,invplan,balancing,supply
    
  • Web API:

    POST /execute/api/runplan/?constraint=15&plantype=1&env=fcst,invplan,balancing,supply
    
    Deprecated:
    POST /execute/api/frepple_run/?constraint=15&plantype=1&env=fcst,invplan,balancing,supply
    

Export a spreadsheet

This task allows you to download the complete model as a single spreadsheet file. The spreadsheet can be opened with Excel or Open Office.

A separate sheet in the workbook is used for each selected entity.

The exported file can be imported back with the task described just below.

This command is available only in the user interface:

  • Execution screen:

    Execution screen - Spreadsheet export

Import a spreadsheet

This task allows you to import an Excel spreadsheet.

A separate sheet in the workbook is used for each selected entity.

The sheet must have the right names - in English or your language. The first row in each sheet must contain the column names.

This command is available only in the user interface:

  • Execution screen:

    Execution screen - Spreadsheet import

Export plan result to folder

This task allows exporting data to a set of files in CSV or Excel format. The purpose of this task is to help the exchange of information with other systems.

The command can easily by customized to export the results you need.

The files are all placed in a folder UPLOADFILEFOLDER/export/, which can be configured per scenario with the UPLOADFILEFOLDER value in the djangosettings.py file.

The exported files can be accessed from the user interface, or through over a HTTP(S) web interface.

This command is available in the user interface, the command line and the web API:

  • Execution screen:

    Execution screen - Export plan data to folder
  • Command line:

    frepplectl exporttofolder
    
    Deprecated:
    frepplectl frepple_exporttofolder
    
  • Web API:

    Export the planning result files:
    POST /execute/api/exportfromfolder/
    
    Export the planning result files - deprecated:
    POST /execute/api/frepple_exportfromfolder/
    
    Retrieve one of the exported files:
    GET /execute/uploadtofolder/1/<filename>/
    

Import data files from folder

This task allows importing data from a set of CSV-formatted files (eventually GZ-compressed). The purpose of this task is to help the exchange of information with other systems.

The files are all placed in a folder that is configurable per scenario with the UPLOADFILEFOLDER in the djangosettings.py configuration file. The log file importfromfolder.log records all data imports, in addition to any data errors identified during their processing.

The data files to be imported must meet the following criteria:

  • The name must match the data object they store: eg demand.csv, item.csv, item.xlsx, item.csv.gz

  • The first line of the file should contain the field names.

  • The file should be in CSV or Excel format, and can optionally be compressed with GZ (eg demand.csv.gz).

  • Some specific notes on the CSV format:

    • The separator in your CSV-files varies with the chosen language: If in your language a comma is used as a decimal separator for numbers, the CSV file will use a semicolon (;) as delimiter. Otherwise a comma (,) is used. See http://en.wikipedia.org/wiki/Decimal_mark

    • The date format expected by frePPLe is ‘YYYY-MM-DD HH:MM:SS’.

    • The data file is expected to be encoded in the character encoding defined by the setting CSV_CHARSET (default UTF-8).

In this option you can see a list of files present in the specified folder, and download each file by clicking on the arrow down button, or delete a file by clicking on the red button. The arrow up button will give the user the possibility of selecting multiple files to upload to that folder.

This command is available in the user interface, the command line and the web API:

  • Execution screen:

    Execution screen - Import data files from folder
  • Command line:

    frepplectl importfromfolder
    
    Deprecated:
    frepplectl frepple_importfromfolder
    
  • Web API:

    Upload a data file:
    POST /execute/uploadtofolder/0/ with data files in multipart/form-data format
    
    Import the data files:
    POST /execute/api/importfromfolder/
    
    Import the data files - deprecated:
    POST /execute/api/frepple_importfromfolder/
    

Web service

In the Enterprise Edition users have the option to start and stop the web service which keeps the plan in memory.

Execution screen - Web service

Scenario management

This option allows a user to create copies of a dataset into a what-if scenario.

When the data is successfully copied, the status changes from ‘Free’ to ‘In use’.

When the user doesn’t need the what-if scenario any more, it can be released again.

The label of a scenario, which is displayed in the dropdown list in the upper right hand corner, can also be updated here.

This command is available in the user interface, the command line and the web API:

  • Execution screen:

    Execution screen - what-if scenarios
  • Command line:

    frepplectl scenario_copy db1 db2
    
    Deprecated:
    frepplectl frepple_copy db1 db2
    
  • Web API:

    POST /execute/api/scenario_copy/?copy=1&source=db1&destination=db2&force=1
    
    Deprecated:
    POST /execute/api/frepple_copy/?copy=1&source=db1&destination=db2&force=1
    

Back up database

This task dumps the contents of the current database schema to a flat file.

The file is created in the log folder configured in the configuration files djangosettings.py.

This option is not active for cloud users. We automatically manage the data backups for cloud users.

This command is available in the user interface, the command line and the web API:

  • Execution screen:

    Execution screen - backup
  • Command line:

    frepplectl backup
    
    Deprecated:
    frepplectl frepple_backup
    
  • Web API:

    POST /execute/api/backup/
    
    Deprecated:
    POST /execute/api/frepple_backup/
    

Empty the database

This will delete all data from the current scenario (except for some internal tables for users, permissions, task log, etc…).

This command is available in the user interface, the command line and the web API:

  • Execution screen:

    Execution screen - erase
  • Command line:

    frepplectl empty --models=input.demand,input.operationplan
    
    Deprecated:
    frepplectl frepple_flush --models=input.demand,input.operationplan
    
  • Web API:

    POST /execute/api/frepple_flush/?models=input.demand,input.operationplan
    
    Deprecated:
    POST /execute/api/empty/?models=input.demand,input.operationplan
    

Administrator commands

Load a dataset in the database

A number of demo datasets are packaged with frePPLe. Using this action you can load one of those in the database.

The dataset is loaded incrementally in the database, without erasing any previous data. In most cases you’ll want to erase the data before loading any of these datasets.

You can use the dumpdata command to export a model to the appropriate format and create your own predefined datasets.

This command is available in the user interface, the command line and the web API:

  • Execution screen:

    Execution screen - load a dataset
  • Command line:

    frepplectl loaddata manufacturing_demo
    
  • Web API:

    POST /execute/api/loaddata/?fixture=manufacturing_demo
    

Generate time buckets

A number of output reports are displaying the plan results aggregated into time buckets. These time buckets are defined with the tables dates and bucket dates. This tasks allows you to populate these tables in an easy way.

This command is available in the user interface, the command line and the web API:

  • Execution screen:

    Execution screen - generate time buckets
  • Command line:

    frepplectl createbuckets --start=2012-01-01 --end=2020-01-01 --weekstart=1
    
    Deprecated:
    frepplectl frepple_createbuckets --start=2012-01-01 --end=2020-01-01 --weekstart=1
    
  • Web API:

    POST /execute/api/createbuckets/?start=2012-01-01&end=2020-01-01&weekstart=1
    
    Deprecated:
    POST /execute/api/frepple_createbuckets/?start=2012-01-01&end=2020-01-01&weekstart=1
    

Create the PostgreSQL database(s)

This command will create the PostgreSQl databases for frePPLe.

If the database already exists you will be prompted to confirm whether you really to loose all data in the existing database. When confirmed that database will dropped and recreated.

This command is available on the command line only:

# Create all scenario databases
frepplectl create_database

# Recreate only a single database
frepplectl create_database --database=scenario3

Create or migrate the database schema

Update the database structure to the latest release

This command is available on the command line only:

# Migrate the main database
frepplectl migrate

# Migrate a scenario database
frepplectl migrate --database=scenario1

Restore a database backup

This command is available on the command line only:

frepplectl restore database_dump_file

Deprecated:
frepplectl frepple_restore database_dump_file

Create a new superuser

This command creates a new user with full access rights.

This action is possible in the user interface and the command line:

Change a user’s password

This command changes the password of a certain user.

This action is possible in the user interface and the command line:

Remove all database objects

This command completely empties all tables in the database, including all log, users, user preferences, permissions, etc…

A complete reset of the database is not very common. In most situations the command described above to empty the database is sufficient. It empties the data tables, but leaves the important configuration information intact.

This command is available on the command line only:

frepplectl flush

Load an XML data file

This command loads an XML file into the database.

This command is available on the command line only:

frepplectl loadxml myfile

Developer commands

Database shell prompt

This command runs an interactive SQL session on the PostgreSQL database.

frepplectl dbshell --database=default

Python command prompt

This command runs an interactive Python interpreter session.

frepplectl shell

Dump a frozen dataset

Outputs to standard output all data in the database (or a part of it).

When the output file of this command is placed in a fixtures subfolder it can be used by the loaddata command described above. We recommend you review and cleanse the output carefully, to avoid that the frozen dataset contains unnecessary data.

frepplectl dumpdata --database=scenario1

Run the test suite

Run the test suite for the user interface.

frepplectl test freppledb

Run the Python web server

Runs a production web server for environments with very few users. For a more scalable solution, deploying frePPLe on Apache with mod_wsgi is required.

frepplectl runwebserver

Deprecated:
frepplectl frepple_runserver

Run the development web server

Run a development web server, which automatically reloads when code is changed.

For production use this web server doesn’t scale enough.

frepplectl runserver

Generate a sample model

Populate the database with a configurable dataset. Command line arguments control the depth and complexity of the bill of material, the number of resources and their average load, the average lead times, the number of demands.

The command thus allows to quickly generate a sample model, and to verify its scalability with varying size and complexity.

This command is intended for academic and research purposes. The script can easily be updated to create sample models in the structure you wish.

frepplectl createmodel --level=3 --cluster=100 --demand=10

Deprecated:
frepplectl frepple_createmodel --level=3 --cluster=100 --demand=10

Estimate historical forecast accuracy

This command estimates the forecast accuracy over the past periods.

This is achieved by turning back the clock a number of buckets ago. We compute the forecast with the demand history we would have had available at that time. Comparing the actual sales and the forecasted sales in that period allows us to measure the forecast accuracy. This calculation is then repeated for each bucket to follow.

This command is intended for academic and research purposes. The script can easily be updated to perform more advanced forecast accuracy studies.

frepplectl forecast_simulation

Deprecated:
frepplectl frepple_forecastsimulation

Simulate the execution of the plan

This command simulates the execution of the plan. The command allows detailed studies of the stability and robustness of the plan in the presence of various disturbances.

The command iterates over a number of time periods and performs the following steps in each period:

  1. Advance the current date

  2. Call a custom function “start_bucket”

  3. Open new sales orders from customers
    Custom code can be added here to represent the typical ordering pattern of customers, and the occasional rush orders.
  4. Generate a constrained frePPLe plan

  5. Confirm new purchase orders from the frePPLe plan

  6. Confirm new production orders from the frePPLe plan

  7. Confirm new distribution orders from the frePPLe plan

  8. Receive material from purchase orders
    Custom code can be added here to simulate late or early deliveries from your suppliers.
  9. Finish production from manufacturing orders
    Custom code can be added here to simulate production delays, machine breakdowns, rework and other production disturbances.
  10. Receive material from distribution orders
    Custom code can be added here to simulate late or early deliveries between locations in the warehouse.
  11. Ship open sales orders to customers

  12. Call a custom function “end_bucket”
    This function will typically be used to collect performance statistics of the period just simulated.

This command is intended for academic and research purposes. The script needs to be tailored carefully to model a realistic level of disturbances in your model and collect the performance metrics that are relevant.

frepplectl simulation

Deprecated:
frepplectl frepple_simulation