Hi Team, can you please explain the Error that the client is facing. They are pulling data for a list of ISINs and they are getting that error. Previously, for their bulk number of ISINs, when they remove the data item ['TR.NIIssuePricePctPrint','TR.NIIssuerUltParentTRBCEcoSec','TR.NIOfferPricePrintUniform'], the error is gone and the script works. However upon further testing, we can use the the 3 fields above for less number of ISINs.
Is this a limitation error since we did not find any documentation for that?
import refinitiv.data as rd
rd.open_session()
df = rd.get_data(
universe = ['XS2624942764', 'US09710H5182', 'XS2591444422'],
fields = [
#'TR.FiTicker',
'TR.LegalEntityIdentifier',
'TR.FiIssueDate',
'TR.FiCurrency',
#'TICKER',
#'TR.ExchangeTicker',
'TR.FiOriginalAmountIssued',
'TR.FiOrgID',
#'TR.OrgidCode',
'TR.FiParentOrgID',
#'TR.NACEClassification',
'TR.FiESGBondType',
#'TR.GreenBondFlag'#,
'TR.FiMaturityStandardYield',
'TR.NIIssuePricePctPrint',
'TR.NIIssuerUltParentTRBCEcoSec',
'TR.NIOfferPricePrintUniform']
)
display(df)