I am using ADF 12.2.1.1 and develop EO, VO and publish to RESTful API. If a table only have one key column, I can use the key value to operate single row in RESTful API URL like:
http://127.0.0.1:7101/CVCLNP/rest/1/units/AB
But if the key value includes slash character '/' like A/B, the published URL is like http://127.0.0.1:7101/CVCLNP/rest/1/units/A%2FB
And visit this URL will get the incorrect key value: A instead of A/B.


For GET method I have a workaround that using parameter q to search the key value like http://127.0.0.1:7101/CVCLNP/rest/1/units/?q=UnitOfMeasure=A%2FB

But I cannot DELETE the key value A/B by RESTful API.
Is this a ADF limitation or bug?