Forum Discussion
Thanks for the detailed feedback, Jack. Workspace.OFC.RCM.WSMU didn't work but did trigger a different error message along the lines of what you were describing. Here it is for reference.
On a related note, the way I've historically handled automating these functions for clients is through an Extensibility Rule called by a DM job. I would add the three Imports statements (rows 17-19) currently commented out and use some bits and pieces from those rules within my Extender Rule. In v9 these rules have moved into Assemblies so I can no longer use this exact methodology. Lines 20-34 are my attempt to find the appropriate rules within the RCM Assembly to accomplish what I had done previously.
I was thinking that line 29 (Workspace.OFC.RCM.Legacy.SolutionHelper) would replace line 17 (OneStream.BusinessRule.DashboardExtender.RCM_SolutionHelper), for example. Any guidance on how to solve this issue I am running into?
It's not that simple, and I don't have the necessary knowledge of the RCM package structure to be able to help. You might have to talk to Support - if this is a recurring need, it should be surfaced in the solution in a simple way...
- aricgresko7 days agoContributor III
Thank you for the confirmation. I ended up going a different, simpler route, by calling this method (BRApi.Utilities.ExecuteDataMgmtSequence) which executes an out-of-the-box DM sequence I found within RCM. I should have went the simple route out of the gate, but learned a few good things within this post, so thank you guys!
- RobbSalzmann7 days agoValued Contributor II
for future reference,
"I was thinking that line 29 (Workspace.OFC.RCM.Legacy.SolutionHelper) would replace line 17 (OneStream.BusinessRule.DashboardExtender.RCM_SolutionHelper), for example. Any guidance on how to solve this issue I am running into?"Those two lines refer to different parts of the solution You might need them both.
Workspace.OFC.RCM.Legacy.SolutionHelper- Refers to the classes in the RCM Assembly of the Reconciliation Manager maintenance Unit, in the Legacy/SolutionHelper folder.
OneStream.BusinessRule.DashboardExtender.RCM_SolutionHelper - Refers to the RCM_SolutionHelper business rule which features an 11,000 line Main Class and a few smaller classes at the bottom.