cancel
Showing results for 
Search instead for 
Did you mean: 

Unable to retrieve "IntegrationRuntimeArtifacts" information from SAP CPI tenant via iflow

0 Kudos
1,003

Hi All,

I am trying to retrieve information from https://tenant_url/api/v1/IntegrationRuntimeArtifacts/ using Odata adapter .

I am getting below error : com.sap.gateway.core.ip.component.odata.exception.OsciException: : 501 : HTTP/1.1

Note : The iflow is working fine when I am trying to retrieve information related to "MessageProcessingLogs"

Regards

Vinay

Accepted Solutions (1)

Accepted Solutions (1)

Sriprasadsbhat
Active Contributor
0 Kudos

Hello Vinay,

For RuntimeArtifact, expand, order, select, top, skip, and inlineCount are not implemented.If you are looking for the data from this API please use HTTP adapter with below url and it works.

https://<TMN>/api/v1/IntegrationRuntimeArtifacts

Regards,

Sriprasad Shivaram Bhat

0 Kudos

Hi Sriprasad,

When I your suggestion is working! but I when I tried getting the Error Information,

https://<TMN>/api/v1/IntegrationRuntimeArtifacts('{Id}')/ErrorInformation/$value - This doesn't fetch the error Information. I tried using this URL by following this Blog .

Please let me know if there is any solution.

Thanks,

Sidharth VR

former_member85123
Discoverer
0 Kudos

I am able to use the below query -

https://xxxxx.cfapps.eu10.hana.ondemand.com/api/v1/IntegrationRuntimeArtifacts?$filter=Id eq 'abcde'

But the below query result in an error

https://xxxxx.cfapps.eu10.hana.ondemand.com/api/v1/IntegrationRuntimeArtifacts?$filter=DeployedOn gt datetime'2022-07-12T12:33:59'

Error Message :-

Bad Request Invalid filter expression: 'DeployedOn gt datetime'2022-07-12T12:33''.


Can we not put filter on DeployedOn ? Is there a document, which could tell us which attributes could be filtered and which could not be filtered ?

Answers (1)

Answers (1)

0 Kudos

Hi Sriprasad,

Thanks for the update.