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