Please check we are getting error using the below code.
import refinitiv.data as rd
rd.open_session()
df = rd.get_data(
universe = ['.JTOPI'],
fields = ['TR.IndexJLConstituentRIC.change']
)
display(df)
@Vikram_2910
The field TR.IndexJLConstituentRIC.change is not applicable to this RIC.
rd.get_data(universe = ['.JTOPI'], fields = ['TR.IndexJLConstituentRIC'])
I found that the field names may be changed to the followings.
df = ld.get_data( universe = [".JTOPI"], fields = ["TR.IndexJLConstituentChangeDate","TR.IndexJLConstituentituentChange"] ) df