如何使用高级过滤器在正常查询表单中过滤财务维度。
答案 0 :(得分:0)
请参阅Filtering on account and dimension in Microsoft Dynamics AX 2012 and Microsoft Excel和Dimension Provider Class and Run-time dimension ranges。
基本上,您可以从包含分类帐维度的基表中为视图 String input = "i am happy. this is genius.";
String arr[] = input.split("\\.");
for (int i = 0; i < arr.length; i++) {
System.out.print(Character.toUpperCase(arr[i].trim().
charAt(0)) + arr[i].trim().substring(1) + ". ");
}
添加关系。
此外,this answer可能有所帮助。