How can I get the Parent RIC (RIC of the Issuer) for a given ETF RIC?

For example the ETF 'Xtrackers II ESG Global Agg Bond UCITS ETF' has the RIC XBAE.DE. The issuer for this ETF is Deutsche Asset Management. Therefore using the XBAE.DE RIC how can I get the RIC for Deutsche Asset Management


I basically want to get the following information from the Overview page of an ETF:

1687353760900.png

Best Answer

  • m.bunkowski
    Answer ✓

    Hi @siddharth.marya

    Instead of Eikon Python library I recommend to use refinitiv-data library.

    That would not be a one step approach but you can do it in a few steps:

    import refinitiv.data as rd
    rd.open_session()
    result = rd.discovery.search(
    view = rd.discovery.Views.FUND_QUOTES,
    filter = "RIC eq 'XBAE.DE'",
    select = "IssuerAdvisorOrgId"
    )
    result
    # IssuerAdvisorOrgId
    # 0105339502|105645097|108431745

    Now we need to iterate over to see the names and we can choose the right one:

    ids = result['IssuerAdvisorOrgId'][0].split('|')
    for i in ids:
    print(rd.get_data(f'{i}@orgid';,'TR.CommonName'))

    # 105339502 Deutsche Asset Management London Ltd
    # 105645097 State Street Global Advisors Ltd
    # 108431745  DWS Investments UK Ltd


    rd.discovery.search(
    view = rd.discovery.Views.SEARCH_ALL,
    filter = "Orgid eq '108431745'",
    select = "RIC,Orgid,ParentCompanyOAPermID,CommonName,DTSimpleType"
    )

    The results is a private company so we can check it's parent

    1687443725165.png

    rd.discovery.search(
    view = rd.discovery.Views.SEARCH_ALL,
    filter = "OAPermID eq '5062367285'",
    select = "PrimaryRIC,Orgid,ParentCompanyOAPermID,CommonName,DTSimpleType"
    )

    1687443787893.png


Answers