ContributionsMost RecentMost LikesSolutionsRe: Is that posible to export Task Activity or Error Logs with business rule? Hi! You can do a query directly to the system database tables to get the information. They are called "ErrorLog" and "TaskActivity". Something like: Select * from ErrorLog. If you need some exemple...Re: Display Text & Member Description value in Cubview without creating UD8 member Hi! Try this: XFMemberProperty(DimType=UD3, Member=MemberName, Property=Text2) It worked for me! Use a Finance Rule in a Data Management Hi All! I want to implement a Data Management that read and modifies data from the cube. The only problem is that the rule type Extensibility Rule does't have the option api.Data to be able to ...Re: Use a Finance Rule in a Data Management Hi SRichards, Thanks for your answer. In case helps someoneI found out another solution: I've used brapi.Utilities.ExecuteDataMgmtSequence(si, "DataManagemente_Name", Params) function. From an Ex...Re: Use a Finance Rule in a Data Management Hi Tom, You can use the ConfirmRuleInstanceInfo class to be able to have acces to the values that you need to use in your Extender rule. Vicent Re: Use a Finance Rule in a Data Management Sorry I was meaningBRApi.Finance.Data.GetDataCellUsingMemberScript() andBRApi.Finance.Data.SetDataCellsUsingMemberScript() Re: Use a Finance Rule in a Data Management Hi! I can useBRApi.Finance.Data.GetDataCellUsingMemberScript() andBRApi.Finance.Data.GetDataCellUsingMemberScript(). With this funtions I can do it directly with an Extencibility Rule not needing ...