I am raising this on behalf of client. Why does this script/parameter format does not work?
import refinitiv.data as rd
rd.open_session()
df = rd.get_data(
universe = ['AAPL.O'],
fields = ['TR.F.TotRevenue'],
parameters={'ReportingState': 'Orig'},
)
Kindly note that I have given this below script (codebook) to the client and it works for him. What is wrong with the above script? Client also said that above script worked for his friend but not for him.
import refinitiv.data as rd
rd.open_session()
df = rd.get_data(
universe = ['AAPL.O'],
fields = ['TR.F.TotRevenue(ReportingState=Orig)']
)