Best Practices - Data Classes

The purpose of this document is to provide best practices when developing a data class in native mode.

Class name

Make sure you use the same code consistently throughout the development process. A data class should have the same code as the main data table.
Example: If the data table code is "MYCODE", use "MYCODE" for the data class code.

Class property names

Class information

A class implements standard Create, Read, Update, and Delete (CRUD) methods, as well as custom methods. Make sure it only contains data that is relevant to these methods.

Parent / Child classes

Developing a class for mobile and desktop

Unit tests