Hi,
It seems like you have done what you can using the built-in features. Since I don't know the Manufacturing area I cannot say if you have missed any existing Object Connection Transformation rule.
Object Connection Transformation is nice, and solves many problems that we previously used to solve with proper business logic (specific code). We can even support returning multiple records by using purpose-made transformation rules (PL/SQL methods, you probably already use some of them), when a simple column-to-column mapping is not enough.
It has limits though. For example, Object Connection Transformation rules cannot be "chained". That is, the "output" from one rule cannot be used as "input" to another. It might be possible to achieve that, in theory, but it might also cause problems. At any rate, it's not available now.
So, what do you do? If you have found all the available Object Connection Transformation rules that fits your use case, there is one more option: custom events. It more work but, more or less, you can get whatever media or document connection "flow" wherever you like. Basically, you need to figure out the trigger point, that is the point in time when you want the media (for example) to "flow" to some other object. Then you create a custom event (which uses Oracle table triggers in the background), with code added to it via an event action. The code can do whatever you want. Again, more work and, when working with custom events/triggers you can sometimes get the dreaded "mutating table" problem, but that's possible to workaround (there are several posts on that here on IFS Community).
So that would be my advice, to use custom events. I don't have any ready-made ones that "flow" (copy or move) media or document connections, so you need to figure that out yourself or have someone else do it for you.
A more long-term solution is to ask for new Object Connection Transformation rules to be developed by IFS, but that will not help you now. In case you anyway want to ask for it, use the Ideas section here on IFS Community.
Good luck!
Thanks for the info! I figured I was running into uncharted territory when some of the LUs didn’t have MediaLibrary enabled by default in the first place. I’ll look into setting up some Custom Events.
I’ll definitely ask in the Ideas section about new connection rules as well, I think there’s benefit for the Manufacturing side to be able to have these connections.
Great! And one more thing: although most "flow" scenarios can be solved by using Object Connection Transformation, there are a few where the right solution is to actually copy a media or document connection to the object. That's where you don't want the connection to your object to change even if things change in the source.