Salesforce Fact #872 | Query custom label translations

It is possible to query custom label translations using Tooling API and using the object ExternalStringLocalization.

Below is a sample query:

SELECT Id

  ,ExternalStringId

  ,ExternalString.Name

  ,ExternalString.Value

  ,Value

  ,Language 

FROM ExternalStringLocalization 

ORDER BY ExternalString.MasterLabel, Language

Reference: https://salesforce.stackexchange.com/questions/357686/can-i-query-for-custom-label-translationshttps://salesforce.stackexchange.com/questions/357686/can-i-query-for-custom-label-translations

Comments

Popular posts from this blog

Salesforce Fact #192 | Call batch apex from flow

Salesforce Fact #457 | Get current user role name in flow