There is an option to change cultures in cube views; is there any way to utilize cultures within parameters? We use culture as an shortened description alias and would like combo boxes that are linked to parameters to use the different culture.
ClinkscakeThere are many ways to use culture. I will list out two of them
1. Create XFString(MyAliasReportString, Culture=|!Enter Culture!|) under dashboard-> Strings
2.Dashboard XFBRString instead of XFString. Below example is to show how you can send some information to XFBR and get value in return by applying any logic.
if (args.FunctionName.XFEqualsIgnoreCase("GetUserCulture"))
Dim UI As UserInfo = BRApi.Security.Authorization.GetUser(si, si.UserName)
Dim U_Culture As String = UI.UserPreferences.Culture
Return U_Culture
End If