MarcusHValued ContributorJoined 3 years ago367 Posts233 LikesLikes received77 SolutionsView All Badges
ContributionsMost RecentMost LikesSolutionsRe: Same Account Rolling to Different Parents Depending on Entity That is not possible because parent Account values do not exist in the database - the values you see in the parent Accounts are dynamically accumulated from the children members. And it is the same f...Re: Exporting Grid View Filter Results You can automate the the creation of the application zip file and specify what you want to include. It works at quite a high level so it might not give you the granularity that you want. If you searc...Re: Pull in Variables from another BR Would it be easier to get the environment name? Dim xfenv As New XFEnvironment() Dim appsettings As XFEnvironmentSettings = xfenv.GetAppServerConfigEnvironmentSettings() Dim environmentName As Str...Re: SetLiteralParameterValue issue on web Check that the user has Maintenance access to the Workspace that holds the parameter. Re: Data Import Step - Load validated records As rhankey says the best way is probably adding a TransformationEventHandler script and execute it at the end of the process. I would use a method rather than WriteTransformedData. The StageSummaryTa...Re: GetDataBufferUsingFormula Syntax looks OK - what's the error? Re: Add Reminder for Flip Sign Flag on Account Mapping During Load We use a TransformationEventHandler (as Ruben_Moya suggest). We update the maps before the transformation process starts to make sure all the relevant accounts have FlipSign enabled. Re: Mapping IC based if account is IC We look up the IsConsolidated property for the Target account using a BR like this: Dim tgtAcc As String = args.GetTarget("A#") Dim tgtAccID As Integer = BRApi.Finance.Members.GetMemberId(si, DimTy...Re: Security Report - Dashboard for Admin- Access I get the security groups into a dictionary keyed by the security group id. Then I read the workflow profile tables to get the security group id information and look up the name of the security group...Re: Load/Extract EventHandler The WcfEventHandler is normally used to intercept such calls but in my testing it is not fired when a metadata file is loaded or extracted. This page has a list of the service types that can be inter...