...vent ID used as a search criteria?
We have a user who is trying to pull all the Buyback and Stock Split events for RIC 7203.T but it appears that the script is just outright pulling the data from 2000-latest for each field. For instance, a Buyback event with event ID <73016304666 > is returning values for TR.CATermsNewShares and TR.CATermsOldShares which indicate that an event is a Stock Split, which appears to be the data for a Stock Split Event with an event ID <73074895232>
Here's the script we are using:
import refinitiv.data as rd
rd.get_data(
universe=['7203.T'],
fields=[
'TR.CACorpActDate.capitalchangeeventid',
'TR.CARecordDate.capitalchangeeventid',
'TR.CAExDate.capitalchangeeventid',
'TR.CAAdjustmentType',
'TR.CACorpActEventType',
'TR.CAAnnouncementDate',
'TR.CACorpActDate',
'TR.CARecordDate',
'TR.CAEffectiveDate',
'TR.CAExDate',
'TR.CARescindedDate',
'TR.CATermsOldShares',
'TR.CATermsNewShares',
'TR.CATotalNewShares',
'TR.CASharesSought',
'TR.CASharesSoughtPercentage',
'TR.CACorpActDesc'
],
parameters={'sdate': '2000-01-01', 'edate': '0D', 'sorta':'TR.CACorpActDate'})
Analytics team has confirmed that they do not replicate the issue. In Eikon Excel this is not also replicable, the Buyback event ID <73016304666> does not return any value for TR.CATermsNewShares and TR.CATermsOldShares.