Hi,
Our process of pulling data is to pull TR.FiIssuerOrganization using ISIN of a security via ek.get_data and then use that org_id to perform another ek.get_data call to get all the fields needed for that organization.
However, we've been getting some cases where the information seemed incorrect. I'll be listing out several case examples:
1. ISIN="KR6066261AA9"
- Below is the data from isin pull
- ['KR6066261AA9', '165496', 'LGCRPS', 'LGCRP', 'S&I CORP']
- Below is the data from org_id pull
- ['165496', '3 Banken Portfolio-Mix A', '', 'http://www.sni.co.kr/', '82237731114', '', '', '', '', '', '', '', '', None, '', '', '4295881132', 'Austria', '2002-01-01', None, '', '', 'Service Company', 'Service - Other']
As you can see, the get_data pulled a Fund profile instead of S&I Corp.
2. ISIN=
- Below is the data from isin pull
- ['CND100045HT7', '75877', 'SHSHI', 'GEFRN', 'SHANGHAI SHIMAO CO LTD']
- Below is the data from org_id pull
- ['75877', 'Shanghai Shimao Co Ltd', 'http://www.shimaoco.com', '862120203388', '862120203399', 60102030, '600823', 15979976791.86, 2615, '', 'AAA', 'Real Estate Development', '', '2021-12-31', 149304753980, '4297714707', 'China', '1992-07-01', None, '', '', 'Other Financial', 'Real Estate Investment Trust']
As you can see, The ticker information of one doesn't match the other. (SHSHI != 600823)
3. ISIN="SGXF51098246"
- Below is the data from isin pull
- ['SGXF51098246', '42122', 'HPPS', 'HLDIN', 'HOTEL PROPERTIES LTD']
- Below is the data from org_id pull
- ['42122', 'Hotel Properties Ltd', 'https://www.hotelprop.com.sg/', '6567345250', '6567320347', 25301020, 'H15', 1788711560.93, '', '', '', 'Hotels, Resorts & Cruise Lines', None, '2020-12-31', 3388229000, '5042257290', 'Singapore', '1980-01-28', None, '', '', 'Service Company', 'Lodging']
As you can see, The ticker information of one doesn't match the other. (HPPS != H15)
I would consider Case2 and Case3 to be similar but these are the three cases we've observed so far and would like to know how we can pull the correct information.
Thank you so much for your time.