If I run the below code using get_history the field DSPLY_NAME is not returned while when I run it using eikon I get the field value returned. Is it therefore in get_history not possible to mix up date and non date related items in a single api call?
import refinitiv.data as rd
# open session
rd.open_session()
df = rd.get_history(
universe=["AAPL.O"],
fields=["TR.Revenue.date","TR.Revenue","TR.GrossProfit","DSPLY_NAME"],
parameters={"Scale" : 6,"SDate" : 0,"EDate" : -3,"FRQ" : "FY", "Curn" : "EUR"}
)
df2 = rd.get_history(
universe=["AAPL.O"],
fields=["DSPLY_NAME]
)
image from code book (also a call to DSPLY_NAME only fails):