0% found this document useful (0 votes)
112 views2 pages

Notes On Tables Inheritance D365fo

In Microsoft Dynamics AX 2012, tables can inherit fields from parent tables in a hierarchy. A base table contains common fields that all derived tables inherit. A derived table inherits the base fields and can contain additional unique fields. For a table to inherit from another, its SupportInheritance property must be set to yes and its Extends property must be set to the parent table. A type discriminator field of type int64 named InstanceRelationType must also be on the root table to enable inheritance between tables.

Uploaded by

Saibabu Akkala
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
112 views2 pages

Notes On Tables Inheritance D365fo

In Microsoft Dynamics AX 2012, tables can inherit fields from parent tables in a hierarchy. A base table contains common fields that all derived tables inherit. A derived table inherits the base fields and can contain additional unique fields. For a table to inherit from another, its SupportInheritance property must be set to yes and its Extends property must be set to the parent table. A type discriminator field of type int64 named InstanceRelationType must also be on the root table to enable inheritance between tables.

Uploaded by

Saibabu Akkala
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

In Microsoft Dynamics AX 2012, tables can inherit, or extend, from the tables that are situated above them in a

hierarchy. A base table contains fields that are common to all tables that derive from it. A derived table inherits these
fields, but also contains fields that are unique to its purpose. Each table contains the Support
Inheritance and Extends properties, which can be used to control table inheritance.

First we need understand that when we need to apply this inheritance methodology to tables. First we need to identify
the Parent table and its siblings like

Here ‘Basic Info’ is the Parent table containing fields that are required for its child table i.e. CompnayTable and
EmpTable. And these tables have their own fields as well.Now to design a Inheritance pattern we need to consider
following important things:
 

o We can only apply inheritance on regular tables not on Temp or Memory tables

o A type discriminator field must be defined on any table inheritance hierarchy created in the AOT. The field

must be defined as an int64 type on the root table, with the name of the field set to InstanceRelationType.

o The InstanceRelationType field of the root table is read-only and stores the TableIDs of record instances; it is

populated automatically by Microsoft Dynamics AX 2012.

o Also we can only set the table properties for the table inheritance only when there are no fields in the table.

o If these requirements are not met, a compilation error will occur when the table inheritance hierarchy is

compiled.
Let create parent Table ‘BasicInfo’

Advertisements
REPORT THIS AD

Setting its SuppourtInheritance Prpoerty to Yes

When you save and compile,it will give following error


For this we need to create a discriminator; name ‘InstanceRelationType’ and of type Int64.Now I have created a field
including discriminator

Finally I have set another table property ‘InstanceRelationType’ to ‘InstanceRelationType’  field

And when I compiled, the error is gone now.

Now we have to create Two child tables

EmpTable:

First I have set the ‘SupportInheritance Property to Yes.

Now for the child table to have the parent we need to set the ‘Extends’ property of child table to parent table value like

And finally added all fields.

You might also like