whic Table contain currency decimal name in Microsoft Dynamic GP

480 Views Asked by At

Which table currency decimal values contain.Please provide Microsoft dynamic gp table name. By using this way we can set the Decimal values in GP Tools->setup->Financial->Multicurrency.

2

There are 2 best solutions below

0
On

look in the table CM20200 for column DECPLCUR , it contains decimal places for a currency id

0
On
USE TWO

SELECT * 
FROM sysobjects o, syscolumns c
WHERE o.id = c.id AND o.type = 'U' 
AND c.name = 'DECPLCUR'
ORDER BY o.name

The above sql script will give you all the tables that have the decimal places field in the 'TWO' test company database.