Global entities (SaveDataPerCompany==No) across Multiple Legal Entities (Companies) in AX 2012 R2/R3

Hi,

I am simply trying to figure out which all entities in AX are global i.e. available across all the legal entities and which entities are not global i.e. present across all the legal entities. Below is the scenario with example:

  1. Like we have “MainAccounts” table which stores data that is available globally across all the legal entities. Similarly we have the address table “LogisticsPostalAddress” for customers / vendors,etc.

  2. However, the tables, CustTable / VendTable does not contain data that will be available across all the legal entities.

My Question: Is there any documentation OR any way where-in we can get what all entities are global in AX i.e. entities share data across all the legal entities in AX. Rather then going to the table level and checking out the “SaveDataPerCompany”.

Would appreciate if someone can provide valuable input.

Regards,

Muneeb

Table properties are save in table DictTable

You can iterate over all tables and export data.

DictTable dictTable;

while (dictTable)
{

// Extract Properties

}

Hi Nuno,

Thank you so much.

I got the required information by using the above details.

Regards,

Muneeb