【发布时间】:2017-05-23 14:34:53
【问题描述】:
我是 BI Publisher 的新手,在尝试查看以下 SQL 代码生成的数据(在 SQL Developer 中成功运行)后收到错误“无法加载 XML”:
SELECT oh.order_number,
ol.line_number,
ol.creation_date,
ol.ORDERED_ITEM,
ol.line_id as ITEM_KEY
FROM ont.oe_order_lines_all ol,
ont.oe_order_headers_all oh
WHERE ol.header_id = oh.header_id
and ol.attribute4 <> 'COPY'
and ol.line_id in
(
SELECT to_number(item_key)
FROM APPS.WF_ITEM_ACTIVITY_STATUSES_V
WHERE activity_label = 'XXNM_BLOCK_ORDER_APPR_BLOCK'
and activity_status_code != 'COMPLETE'
)
and ol.flow_status_code <> 'CLOSED'
and NVL(ol.cancelled_flag,'N') != 'Y'
ORDER BY 1,2,3
我正在尝试创建示例数据来创建 BI Publisher 报表。我们的 OBIEE 版本是 11.1.7.140715。请就可能导致此错误的原因提供帮助。
【问题讨论】:
标签: bi-publisher