In database (general journal) we have information about posting type (POSTINGTYPE). Do you know what kind of posting is that:
0 |
14 |
59 |
60 |
61 |
71 |
74 |
82 |
83 |
84 |
91 |
92 |
93 |
94 |
107 |
109 |
203 |
236 |
Etykiety wierszy
Hi,
The values for extensible enums are stored in EnumValueTable. You can use this query to find the posting types corresponding to the enum values.
select * from ENUMVALUETABLE EVT JOIN ENUMIDTABLE EIT ON EIT.ID = EVT.ENUMID WHERE EIT.NAME = 'LedgerPostingType'