Monday, 13 April 2020

D365FO: How to check Standard Base Enum values of D365 FO which are not visible in AOT properties?


In D365FO, if you cannot find integer values of standard Base Enum.

You can easily find it on MS SQL Server using the following code.

select * from ENUMIDTABLE             
join ENUMVALUETABLE
ON ENUMVALUETABLE.ENUMID = ENUMIDTABLE.ID
where ENUMIDTABLE.NAME = 'InventTransType'



No comments:

Post a Comment