Hi,
The plot thickens, as they say… This makes no sense. One explanation would be that your rule, or the transformation method, is not run/used (if that is the case, I would not understand why...).
I think I have found a way for you to check what the OCT framework returns, for your objects. Here is an example that I just tried:
select * from table (doc_reference_object_api.Get_Key_Refs('ShopOrd', 'ORDER_NO=200142^RELEASE_NO=*^SEQUENCE_NO=*^'));
Above, replace the lu name and keyref with the one for your target object and see what is returned. For me, this data is returned:
SRC_LU_NAME TRANS_SRC_LU_NAME KEY_REF READ_
------------------ -------------------- ----------------------------------------------- -----
ShopOrd Shop Order ORDER_NO=200142^RELEASE_NO=*^SEQUENCE_NO=*^ FALSE
EngPartRevision Engineering Part Rev PART_NO=5000^PART_REV=^ TRUE
PartRevision Part Revision CONTRACT=501^ENG_CHG_LEVEL=1^PART_NO=5000^ TRUE
(sorry about the formatting, if you copy and paste it someplace it may look better)
If the query above works for you, that is it returns some data, you can add some debug/trace statements in your transformation method to see if the code actually runs. Don’t forget to enable server output.
Good luck!
/Mathias