我是BI Publisher新手,我收到错误"无法加载XML"在尝试查看由以下SQL代码生成的数据(在SQL Developer中成功运行)之后:
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。请提供协助,说明可能导致此错误的原因。
答案 0 :(得分:0)
问题是由于BI Publisher中的查询超时(其错误响应或日志文件中没有明确说明),但是一旦我们在'activity_status_code'上放置索引,视图数据就完成了,没有错误。