bi publisher “Failed to Load XML” after trying to view data

我只是一个虾纸丫 提交于 2019-12-25 09:40:10

问题


I am new to BI Publisher and I am receiving the error "Failed to Load XML" after trying to view the data generated by the following SQL code (runs successfully in 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

I am trying to create sample data to create a BI Publisher report. Our OBIEE version is 11.1.7.140715. Please provide assistance with what might be causing this error.


回答1:


Issue was due to the query timing out in BI Publisher (which was not clearly stated in its error response or in the log file) but once we put an index on 'activity_status_code' view data completed without error.



来源:https://stackoverflow.com/questions/44137775/bi-publisher-failed-to-load-xml-after-trying-to-view-data

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!