Issue calling Workspace Assembly Service factory across Maintenance Units
I am updating a customization to the Account Reconciliations solution to version 8.4 and have converted my custom business rules into a workspace assembly/assembly files.
I added a custom maintenance unit to the OneStream Financial Close workspace to build said assembly and I am now having issues calling my assembly, specifically, the workspace assembly service factory file I created is not getting recognized.
I found an instance of a button in the Reconciliation Manager MU where a button component calls upon the Integration assembly in the Integration MU using the following syntax:
{Workspace.Current.Integration.WSMU}{OnOpenDetailItemTransactionDrillbackClick}{ItemID=[|!SelectedReconItemID_RCM!|]}
I also have my Workspace Assembly Service that I created set on my custom maintenance unit:
So after adding my own custom button (to appear on the Account Recs UI) in the Reconciliation Manager MU, I followed the same logic for executing the call, below is an example:
{Workspace.Current.MyAssembly.WSMU}{MyFunction}{ReconID=|!SelectedReconID_RCM!|}
However, I have not been able to resolve the error I'm seeing when I press the button.
"Unable to find the Workspace Assembly Service Factory class for name 'Workspace.Current.MyAssembly.WSMU' in Workspace 'OneStream Financial Close' and Maintenance Unit ' '."
I'm assuming it may have to do with Maintenance Unit appearing blank in that error message.
Any help would be greatly appreciated!