We try to move our dividend extraction code from eikon API to rdp platform .
With eikon API we had this code :
df,err = ek.get_data("VOD.L", ["TR.ISINCode","TR.DivExDate", "TR.DivRecordDate", "TR.DivPayDate", "TR.DivUnadjustedGross", "TR.DivCurr"], params)
We tried this code but it doesn't work :
df = rdp.get_reference_data(universe='VOD.L', fields= ["TR.ISINCode","TR.DivExDate", "TR.DivRecordDate", "TR.DivPayDate", "TR.DivUnadjustedGross", "TR.DivCurr"],parameters= params)
Could you give us the function to use in rdp.