cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Different currency in contract or license

Hello,
in Spider contract or in Spider license, I can see as a currency only EUR, not any other currency.
How can I activate them?
Thank you
Vlad 

(3) Replies

Hi Vlad,

 

As far as I know, the currency can only be changed within the database. Each Object has the "Currency" table.

Which currency would you like to change to? I will see If I can get more detailed information on changing values.

 

Kind regards,

James Ellis

Like the answer, please remember to "Accept as solution". Keep the Kudo's coming!
Hi James,
I would like to have an option in Currency code to choose from EUR, USD and GBP in drop down menu in the contract, license and maintenance, now I have only EUR.
Thank you
Vlad

Hi Vlad,

 

I have checked and got the result that you are looking for.

Note: This is self-managed and requires access to the SQL Database.

james_ellis_0-1586431463892.png

To achieve this, I have a sample statement for you:

INSERT INTO dbo.currency
VALUES	('USD','United States dollar','1.07'),
        ('GBP','Pound sterling','0.86');

This will need to be done for SpiderCore, SpiderAsset, SpiderLicence, and SpiderContract.

 

Kind regards,

James Ellis

Like the answer, please remember to "Accept as solution". Keep the Kudo's coming!