Catch All Strategy question
I have to define catch all strategy across multiple operating units. When I defined the view for operating unit 1 I set the org id as follows:
exec mo_global.init('AR');exec mo_global.set_policy_context('S','5052');The next one has to be for a different operating unit and surely the org id must also be set:
exec mo_global.init('AR');exec mo_global.set_policy_context('S','5001');My issue is that I can only define one view and one strategy for the catch all strategy so how am I supposed to build the view if I have to set it to two differnt operating units?