RE: How can I get View name for all the languages same as Entity or Field name in Dynamics 365 c#?
Hi Maulik,
there is a way for v9.x API (the below does not exist on v8.2):
api/data/v9.0/RetrieveSolutionComponentInstances(SolutionComponentName='LocalizedLabel',ColumnNames=['objectid'],ColumnValues=['a18e3a4a-429d-4a98-9466-f7aa7068b5c3'],SolutionName='ProjectService',RetrieveChangesOnly=false)
Please be aware about these 2 parameters:
Yellow = your savedqueryid
Green = the solution name of the solution owning the localized labels (this example is a PSA owned view)
If you need to find all the solution layers of the respective savedquery per API, you can use:
api/data/v9.0/RetrieveSolutionMetadataForComponent(SolutionComponentName='SavedQuery',ColumnNames=['savedqueryid'],ColumnValues=['a18e3a4a-429d-4a98-9466-f7aa7068b5c3'])
(this is also not available on v8.2)
Highlighting that these are not officially documented methods, so please use these being aware about that