Hello,
Is there a way for me to retrieve the list of all officiers in a company and each of their committee membership using the Codebook environment? I have raised this issue earlier, as it is possible to see a person being a member of different committees in the screener, but in the codebook we see only one committee per person. To give an example, I check company with RIC 3257.TW, Mr. Tao Lin Chang is member of 3 committees, (CSR Responsibility, Audit, Compensation) whereas with API it is only possible to see Audit committee. I use the following code to retrieve the data:
import refinitiv.data as rd
rd.open_session()
df = rd.get_data(
universe=['3257.TW'],
fields=[
'TR.ISIN',
'TR.CompanyName',
'TR.ODOfficerCommitteeName(odrnk=all, odshowAllCommittees=True)',
'TR.ODOfficerPermID(ODRnk=ALL)'
]
)
Which gives following result:
The help desk provided the below screenshots, showing the actual committee membership, but they could not provide the code that would produce this output:
Could you please help me to retrieve this information correctly with the codebook? Thank you very much.