What adapters are present in Business service but not in operation?
I have looked through the documentation and can't seem to find anything on usage of adapters by service but not by operation and vice versa.
Any help would be great! Thanks :)
I have looked through the documentation and can't seem to find anything on usage of adapters by service but not by operation and vice versa.
Any help would be great! Thanks :)
Hey Maciej,
I'm not sure I follow the question. I don't know this for a fact but my general expectation is that an adapter on the service side would almost certainly have a corresponding adapter on the operation side. What are you looking for?
Hi Maciej,
You can execute this query to achieve what you want:
SELECT Name, Super, CASE WHEN Super [ 'InboundAdapter' THEN 'InboundAdapter' ELSE 'OutboundAdapter' END "Type" FROM "%Dictionary".ClassDefinition WHERE Super LIKE '%InboundAdapter%' OR Super LIKE '%OutboundAdapter%'
In the IRIS 2021.1
Thanks Cristiano!!