Localizing Display Names of Custom Properties

IT Asset Management (Cloud)

Execute the following in SQL Server Management Studio against your FNMSCompliance database, once the custom properties already exist in the database.

Note: If you are using a cloud-based implementation of IT Asset Management, you do not have direct access to the database, and you cannot "do it yourself". However, you may use this section to understand and specify your requirements. You can then send a support request to Flexera specifying all the details you require, and your custom property will be added on your behalf.
EXEC dbo.CustomPropertyUpdateDisplayName
        @Name = 'My-Unique-Name',
        @CultureType = 'ISOCultureCode',
        @DisplayNameInPage = 'Prompt value',
        @DisplayNameInReport = 'Column header'
        
where
Type Value
@Name Mandatory. The internal name (in code and database) of your custom property, declared when you added it to the database. Never localize this internal name.
@CultureType Mandatory. A five-character ISO culture name (enclosed in single quotation marks). The permitted values are available at http://msdn.microsoft.com/en-us/goglobal/bb896001.aspx. This is the culture for the localized values in this declaration. Notice that localized values are only displayed in IT Asset Management when your enterprise has installed the corresponding language pack that provides localized values for the factory-supplied controls as well.
@DisplayNameInPage Mandatory. This is the localized label (enclosed in single quotation marks) displayed on the tab in the web interface for IT Asset Management when the culture setting for the interface matched the one you declare in CultureType.
@DisplayNameInReport Mandatory. The localized label (enclosed in single quotation marks) that is available for you to include in custom reports that display this custom property.
You can repeat this procedure as often as required to define localized display names in all cultures in use in your enterprise.
Tip: The appearance of the web interface for different locales is controlled in two separate places:
  • The formatting of dates and numeric values is taken from the settings on your web browser.
  • To change the language presented in the web interface, go to the My IT Asset Preferences page (Administration > IT Asset Management Settings > My IT Asset Preferences). Options for other languages are only present when your enterprise has purchased appropriate language pack options.
This separation allows for the common case where a single language (such as English) may have different date formats (such as 12/31/19 and 31/12/19) in different parts of the world.

IT Asset Management (Cloud)

Current