Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

BSH files should follow the same convention as Java files.

Entity Definitions

Entity Names

Entities are named in accordance with the Java naming conventions for classes (e.g. ExampleEntity).
The physical database names TODO: entity names (including maximum length)
Database table names should never be longer than 30 characters. Since database table names are are generated by the system by applying the Java naming convention of constants to the entity names (e.g. ExampleEntity => EXAMPLE_ENTITY).
Important: database table names should never be longer than 30 characters, so you have to keep this in mind when you define a new entity name.
For example: the name FinancialsImportProductInventory entity name "AnExampleOfALongEntityName" (that is is 26 characters long) is transformed into the database table name FINANCIALS_IMPORT_PRODUCT_INVENTORY, that AN_EXAMPLE_OF_A_LONG_ENTITY_NAME, that is 32 characters long and exceeds the maximum length of 30 characters and so it is not a good choice.

Entity Field Names

TODO: field names, pk/fk names (including maximum length)
Entity fields are named in accordance with the Java naming conventions for fields (e.g. exampleField).
 

TODO: view-entity names and conventions 

...