Is it possible to add new ISO Code in Sage 200?

SOLVED

Hi all.

Nowadays it is possible to carry out sales and purchase transaction in digital currencies. However, these currencies such as BTC, ETH are not available yet in Sage 200. Is it possible to add new ISO code in Sage 200 programmatically? I have seen https://my.sage.co.uk/Sage200SDKDocs/html/DOC0002_Example.html#ADDING to add new currency. But this example is using existing ISO Code, not creating a new one. Any other way to create a new currency AND a new ISO Code? 

Thank you

Parents
  • +1
    verified answer

    I have successfully created new ISO Code.

    Sage.Accounting.SystemManager.CurrencyISOCode isoCode = Sage.Accounting.SystemManager.CurrencyISOCodeFactory.Factory.CreateNew();
    isoCode.Name = "Ethereum";
    isoCode.Code = "ETH";
    isoCode.Update();

Reply
  • +1
    verified answer

    I have successfully created new ISO Code.

    Sage.Accounting.SystemManager.CurrencyISOCode isoCode = Sage.Accounting.SystemManager.CurrencyISOCodeFactory.Factory.CreateNew();
    isoCode.Name = "Ethereum";
    isoCode.Code = "ETH";
    isoCode.Update();

Children
No Data