Known issue - Universal Report ORDER function error

When creating a Universal Report from a IBM® Planning Analytics for Microsoft Excel exploration in 2.0.100, an axis with the ORDER function applied may generate the following error:

Error pop-up after converting a universal report from an exploration view with the ORDER function applied

This error occurs because the MDX is generated without the cube name. The following is an example of an MDX without the cube name:

ORDER(

Unknown macro: {[plan_lines].[plan_lines].[line 1],[plan_lines].[plan_lines].[line 2],[plan_lines].[plan_lines].[line 3],[plan_lines].[plan_lines].[line 4],[plan_lines].[plan_lines].[line 5],[plan_lines].[plan_lines].[All Lines]}
, ([plan_time].[plan_time].[Q1-2004],[plan_version].[plan_version].[FY 2004 Budget],[plan_business_unit].[plan_business_unit].[10120],[plan_exchange_rates].[plan_exchange_rates].[local],[plan_department].[plan_department].[415],[plan_chart_of_accounts].[plan_chart_of_accounts].[64065]) , BASC)

To solve this issue, manually add the cube name in the MDX. The Universal Report can then be successfully created. The following is an example of the previously shown MDX with the cube name manually added:

ORDER(

Unknown macro: { [plan_lines].[plan_lines].[line 1], [plan_lines].[plan_lines].[line 2], [plan_lines].[plan_lines].[line 3], [plan_lines].[plan_lines].[line 4], [plan_lines].[plan_lines].[line 5], [plan_lines].[plan_lines].[All Lines] }
,
[plan_BudgetPlanLineItem].([plan_time].[plan_time].[Q1-2004],
[plan_version].[plan_version].[FY 2004 Budget],
[plan_business_unit].[plan_business_unit].[10120],
[plan_exchange_rates].[plan_exchange_rates].[local],
[plan_department].[plan_department].[415],
[plan_chart_of_accounts].[plan_chart_of_accounts].[64065]) , BASC), 500) DIMENSION PROPERTIES MEMBER_UNIQUE_NAME, MEMBER_NAME, MEMBER_CAPTION, LEVEL_NUMBER, CHILDREN_CARDINALITY ON 1
FROM [plan_BudgetPlanLineItem]
WHERE ([plan_version].[plan_version].[FY 2004 Budget] ,
[plan_business_unit].[plan_business_unit].[10120] ,
[plan_exchange_rates].[plan_exchange_rates].[local] ,
[plan_department].[plan_department].[415] ,
[plan_chart_of_accounts].[plan_chart_of_accounts].[64065]) DIMENSION PROPERTIES MEMBER_UNIQUE_NAME, MEMBER_NAME, MEMBER_CAPTION, LEVEL_NUMBER, CHILDREN_CARDINALITY ,
[plan_business_unit].[plan_business_unit].[BusinessUnit] ,
[plan_department].[plan_department].[Department] ,
[plan_chart_of_accounts].[plan_chart_of_accounts].[AccountName]