I’m using a global OP Find with filters on names and big scope (depth of 5 or 6 in my network) for grabbing all specific operators I need to remember I set up (basically it is related to this and that and this, for those interested in the process I’m working on)
How can I share the content of the result across my network ?
I mean, my OP Find is global, and I’d need to get this result in different place (for further use)
Ya I have often wondered what other folks do for this sort of situation. My solution which works fine but IMO leaves something to be desired in elegance goes like this:
put op find or similar in a base COMP, probably higher up in network or wherever makes sense. terminate with a null.
give the base comp an op shortcut name.
reach the “global” null dat with op.SearchResults.op( 'RESULTS' )
You could either use a select DAT with that expression, or you could reference the dat directly using something like that as well.
Has anyone else come up with a more elegant solution to this?