Table Inheritance

Today I will demonstrate you that how to do Table Inheritance in AX 2012.


Table Inheritance in AX 2012
1. Create a first table.
2. Go to the table property and set its SupportInheritance property to true.
3. Create a new Int64 field and name it InstanceRelationType.
4. Go to the table property and set its InstanceRelationType property to field InstanceRelationType which you created previously.
5. Create a second table.
6. Go to the second table property and set its SupportInheritance property to true.
7. Go to the second table property and set its extends property to name of first table.
8. Now add some filed in both table and insert values in second table and check first table.



Happy Daxing... :)

Comments