Hi,
I've run into an odd issue where I cannot run the following Python line below under a platform session. Time series values and other fields such as TR.InstrumentDescription work fine. Permissions team says permissions are correct.
rd.get_data(
[
'US10YT=RR',
'CA10YT=RR',
'GB10YT=RR',
'DE10YT=RR',
'EU10YT=RR',
'JP10YT=RR',
'CN10YT=RR',
],
fields='TR.FICOUNTRYNAME',
)
refinitiv.data._errors.RDError: Error code -1 | The access to field(s) denied. Requested universes: ['US10YT=RR', 'CA10YT=RR', 'GB10YT=RR', 'DE10YT=RR', 'EU10YT=RR', 'JP10YT=RR', 'CN10YT=RR']. Requested fields: ['TR.FICOUNTRYNAME']
In Excel, this data pull works fine.
=@RDP.Data("US10YT=RR","TR.FiCountryName","CH=Fd")
I can also pull the TR.FiCountryName field in a Desktop session (whether it is in Python or via the Excel add-in).
Thanks!