Customizing model

Create your customization project

In Developer Studio you should create a new customization project. In this example the project is called Webinar. Right now you should use Target version 9.0-LAYER. You also need to point out a Build_Home directory.

Open up your project in Developer Studio and it should look similar to this.

Create a new Enumeration

We want to create a new Enumeration called CarFuelType, that we want to use in the new Entity CompanyCar. Create the enumeration in Developer Studio and it could look something like this:

Generate the code and deploy the new enumeration.

Create a new Entity

We creates a new entity called CompanyCar with a few attributes. We use the newly created enumeration for the attribute Fuel. The existing enumeration FndBoolean is used to implement the attribute Inspection.

Generate the code and deploy the new entity.

Customize an entity

Add the new reference from new entity CompanyCar to the existing entity PersonInfo. As you can see below you only need to add the new attributes and references. The other attributes is inherited from the original entity.

Generate the code and deploy the existing entity.