question

Upvote
Accepted
38 4 9 17

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

rdp-apibondsisin
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvotes
Accepted
79.1k 250 52 74

@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.


1663908298696.png (25.7 KiB)
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvotes
38 4 9 17

@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,

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

@ricardo.henriquez

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

Upvotes
38 4 9 17

@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!

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvote
79.1k 250 52 74

@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.


1666752148496.png (41.7 KiB)
1666754840685.png (30.2 KiB)
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.