Hi Team,
We have use Code like this one:
import refinitiv.data as rd
rd.open_session()
df = rd.get_data(
universe = ['LP68702800','LP68611492'],
fields = ['TR.ISIN', 'TR.FundName','TR.FundObjective','TR.FundRIESGEnviron','TR.FundRIESGGov','TR.FundRIESGSoc'],
)
display(df)
These fund RICs are active so we are curious why it only pulls <NA> data for data items 'TR.FundRIESGEnviron','TR.FundRIESGGov','TR.FundRIESGSoc' in API while we can pull the data in Excel using this formula: =@RDP.Data("LP68611492","TR.FundRIESGSoc;TR.FundRIESGGov;TR.FundRIESGEnviron","CH=Fd RH=IN",I5). May we know why or do we have an alternative code to pull data from data items:'TR.FundRIESGEnviron','TR.FundRIESGGov','TR.FundRIESGSoc