|  03.05.2019, 22:15 | #1 | 
| Участник | How to see enum values in D365 
			
			Источник: http://alexvoy.blogspot.com/2019/05/...s-in-d365.html ============== Enum values are unavailable anymore in D365. But we can still find them via SQL. There are two tables of our interest: EnumValueTable with actual values and EnumIdTable with IDs; the latter can be found by a given name, for example, for LedgerPostingType. USE [AxDB] GO SELECT * from ENUMVALUETABLE join ENUMIDTABLE on enumid = id and ENUMIDTABLE.NAME = 'LedgerPostingType' Voila Источник: http://alexvoy.blogspot.com/2019/05/...s-in-d365.html 
				__________________ Расскажите о новых и интересных блогах по Microsoft Dynamics, напишите личное сообщение администратору. | 
|  | 
|  | 
| 
 |