Bond Obligor

Hello, I just saw this message on my Workspace. I was wondering if this was already implemented in the RDP API to use it with ISIN Bonds and find its ISIN Obligor?

screen-shot-2022-09-21-at-104248-pm.png

Tagged:

Best Answer

  • @ricardo.henriquez

    Thanks for reaching out to us.

    I assumed that you would like to get an Issuer ISIN from an ISIN bond.

    You can use the RDP DataGrid endpoint to retrieve TR.OrganizationId, and then get TR.ISIN from the retrieved TR.OrganizationId.

    The following code uses the Refinitiv Data Library for Python.

    df = rd.get_data(
        universe=['TH0646033215'], 
        fields=['TR.OrganizationId']
    )
    df1 = rd.get_data(
        universe=[df["Organization PermID"][0]], 
        fields=['TR.ISIN','TR.RIC']
    )
    display(df)
    display(df1)

    The output is:

    1663908298696.png

    I hope this will help.

Answers

  • Jirapongs, Thank you!

    This works fine. However, sometimes, the Organization PermID (as instrument) returns missing values for ISIN, RICs or both. If this is the case, how can I get more information about the issuer.

    Thanks,

  • @ricardo.henriquez

    Please share the sample ISINs that don't have the Organization PermID.

  • @Jirapongse it is actually on the second request (df1) that I am finding missing ISIN, RICS values.

    See for example Bond ISIN = XS2002532567 which has an Organization PermID = 5069404847 (BECTON DICKINSON EURO FINANCE SARL).

    However, searching for the bond directly on Workspace I found that the bond obligor is BECTON DICKINSON AND CO with an Organization PermID = 4295903533 and a RICs and ISIN.

    I would like to match as many bonds as possible to the issuer ISIN (no matter the tree structure) in order to get Financials and ESG scores.

    What would you recommend as the most straightway to do so?

    Thank you again!

  • @ricardo.henriquez

    I used the Data Item Browser tool to find another field that can provide 4295903533 for XS2002532567. I found this TR.FiOrganizationofRiskPermID field.

    1666752148496.png

    The code looks like this:

    df = rd.get_data(
        universe=['XS2002532567'], 
        fields=['TR.OrganizationId','TR.CDSISIN','TR.RIC','TR.FiOrganizationofRiskPermID']
    )
    df1 = rd.get_data(
        universe=[str(df["Organization of Risk PermID"][0])], 
        fields=['TR.ISIN','TR.RIC','TR.Commonname']
    )
    df1

    The output is:

    1666754840685.png

    However, I am not sure if this is a direct method or if it will work for all bond ISINs. Therefore, please contact the helpdesk support team directly via MyRefinitiv to verify this field and method.