Transformation Event Handler reviewing pre-transformed (stage) and post-transformation data?
Hi, My colleagues and I are interested in reviewing pre-transformed data side-by-side with the records from post-transformation data, as we're looking to move our transformation process further upstream and we wanted to validate the accuracy of our new transformation process against OneStream's transformations. I've reviewed the examples in GolfStream in the transformation event handler and I understand how to review the stage data, but I'm unsure how to find the matching transactions after they get transformed. Has anyone done anything similar before and would be able to share insights into how I can review the data at the validate and match them to the records in stage? Thanks! Alex18Views0likes3CommentsDelete Cube root Workflow Profile ! !
I am unable to delete a Cube Root workflow for AOP due to an issue related to a workflow profile. The error occurs whenever I attempt to delete the workflow profile. I have already reset the scenario, checked all the data record tables, including the DataUnitCashStamp table, and even used a Custom Calculate BR to set the entity value to 0. I suspect that a form associated with this workflow profile was completed previously, and its log or reference still exists somewhere. Despite thorough checks, I am 100% certain that there is no data associated with this entity in any table. How can i delete the log associated with this workflow profile so i can be able to delete it ? I need to merge AOP and Forecast under the same suffix in the cube property, unless I can delete that workflow profile, i won't be able to do that. I appreciate the help !!34Views0likes1CommentExecute a Workflow multiple times with different periods from a BR
I am trying to automate a yearly load of data from a business rule. I want the rule to loop through a set of periods and run a specific workflow for that period. The workflow uses a connector rule in which I get the scenario and period of the workflow being run. THe issue I am facing is that I can get the WorkflowPK for the workflow/scenario/time that I want to run. But when I call BRApi.Import.Process.ExecuteParseAndTransform with that key, a workflow starts, but if I happen to be on that workflow in the session I am running it picks up the POV from where I am at. So if I want my business rule to run 3 periods (Jan - Mar). If I am on Dec, then it runs December every time. Below us how I get the WFPK and call the Dim wfClusterPk As WorkflowUnitClusterPk = BRApi.Workflow.General.GetWorkflowUnitClusterPk(si, wfProfileInfo.Name, wfScenarioName, wfTimeName) '--------------------------------- ' Parse and Transform: '--------------------------------- Dim ImportInfo As New LoadTransformProcessInfo ImportInfo = BRApi.Import.Process.ExecuteParseAndTransform(si, wfClusterPk, String.Empty, Nothing, TransformLoadMethodTypes.Replace, SourceDataOriginTypes.FromDirectConnection, False) Here is my connector rule that gets the scenario and the time; Dim wfPk As WorkflowUnitPk = BRApi.Workflow.General.GetWorkflowUnitPk(si) Dim wfProfileInfo As WorkflowProfileInfo = BRApi.Workflow.Metadata.GetProfile(si, wfPK.ProfileKey) 'Get the WF Time and WF Scenario from API wfTime = brapi.Finance.Members.GetMemberName(si, dimtypeid.Time, si.WorkflowClusterPk.TimeKey) wfScenario = ScenarioDimHelper.GetNameFromID(si, wfPk.ScenarioKey) Dim objTimeMemberSubComponents As TimeMemberSubComponents = BRApi.Finance.Time.GetSubComponentsFromName(si, wfTime) wfFiscalYr = objTimeMemberSubComponents.Year wfFiscalPer = objTimeMemberSubComponents.Month Any and all thoughts are appreciated. ScottSolved20Views0likes2CommentsAutomating BAI uploads in Workflow
Hello OneStream Community, Currently working on setting up an automated process to handle BAI file uploads directly into each specific bank workflow in our OneStream application. 1. BAI Parser & Data Source Configuration - We've installed the BAI Parser dashboard to view and manage all imported BAI files. The BAI data source has been configured and initial tests with sample files have been successful. 2. File Transfer & Business Rules - Plan is to automate the transfer of finalized BAI files from our system via FTP to the OneStream file system. This requires a BR to connect with the FTP site and currently developing a BR to facilitate this connection. Once the files are in OS, they'll be imported into the appropriate bank workflow. 3. SFTP Wrapper and Workflow Integration - After the initial FTP transfer, a separate BR will be implemented to securely retrieve and upload the BAI file into the bank workflows. Question: For those who have set up similar BAI automation processes, are there specific best practices or additional BR configurations that you would recommend? Any insight would be greatly appreciated.191Views0likes6CommentsData import from Stage to Cube
Hi, We successfully imported data from stage to cube. But while creating cube views, I am getting fewer records. Not all data is showing up in cube view. I checked the tables in the database; they have all the lines, but the cube view is importing only the first line. What can I do to get all the lines calculated in Cubeview? This account has 1343 records but cubeView fetches only 1st line.Workflow Sibling Import
Have a question regarding- " if two import workflow profiles are not siblings of the same input parent, but load to the same entity, scenario and time dimensions, the data loads and clears at the account level. " If the two import profiles are not sibling to the same input parent (like it is not sibling 1 and sibling 2) , how can we load to the same entity? Since, entity assignment is done at a parent input profile level, If 1 entity is assigned to parent 1 input profile, we cannot assign the same entity to parent profile 220Views0likes1CommentIntercompany Report for Non-consolidating entities
I am running into an issue with putting together intercompany reports. Basically, if an entity has an intercompany partner that is not a consolidating entity, no elimination would occur at the parent (as expected). However, this pair would still show up on my IC matching report. Has anyone dealt with this type of issue with the IC reporting and has any tips to put me in the right direction?40Views0likes5CommentsError executing a Process Cube (Parameter not recognized)
Hi Everyone. The issue is that I want to run the following Process, but upon execution, I receive the error shown below the code. I do not understand this error because a WFProfile is correctly sent in wfChildClusterPK, specifically 'PLP ARGENTINA.Export to Cube'. This Workflow does have an assigned entity, so I do not see what could be causing the error in this process. Dim pcProcessInfo As ProcessCubeProcessInfo = BRApi.DataQuality.Process.ExecuteProcessCube(si, wfChildClusterPk, StepClassificationTypes.ProcessCube, False) ' Summary: Business Rule error. DataQualityEventHandler. Unable to execute Business Rule 'DataQualityEventHandler'. Error processing Data Management Step 'CLEAR_PLP_WF'. Invalid parameter. Entity Filter, E#Root.WFProfileEntities. I am executing this process in another WFProfile because I want to create a complete workflow for everyone. However, the current process is the one causing this error.42Views0likes6CommentsLocate the Workflow Audit information
Hi, this was already asked in an old post, but there was no solution given. Where is the Workflow Audit information (like the one in the picture) stored? For context, I know that Lock History information can be retrieved using the WorkflowLockHistory Data Adapter method, and it's also stored in the WorkflowLockHistory application table. However, I'm having trouble finding the Workflow Audit information that isn't part of the Lock History. Specifically, I'm looking for details on who performed each workflow step, which is displayed in the workflow audit window but not returned by the WorkflowStatus Data Adapter method. Can anyone provide guidance on where to find this information?Solved35Views0likes1Comment