ERROR : INSERT NOT ALLOWED WHILE IMPORTING ENTITY
Dynamics AX 365 - insert not allowed for fields
Data entity related
Solution 1:
1. Data entity and staging table those error fields shouldn't set property for AllowEdit and AllowEditOnCreate to "NO".
2. Change those field property to "Yes"
3. Rebuild solution and SYNC DB
4. Refresh entity List
Solution 2:
1. Code: this. skipDatasourceValidationField(FieldNum(<DS Name>, <DS Field Name>), true);
2. Write above on data entity methods (mapEntityToDatasource and intializedEntityDatasource
3. Rebuild solution.
1. ALWAYS DO REFRESH ENTITY LIST
2. GENERATE MAPPING
Comments
Post a Comment