[英]Error when generating Excel report in Quality Center
我编写了SQL代码,从头到尾进行了良好的测试(所有可能的值),但是当“将报告生成到Excel”时,会弹出错误消息(“”不是有效的浮点值)。 实际上,我的值都不是有效的浮点值,到目前为止只是一个列表。 我关闭了后处理功能,因此它与任何宏均无关。 我如何克服这个错误,真正的问题是什么? SQL非常简单:
SELECT
run1.rn_run_name,
cycle.cy_cycle,
test.ts_name,
STEP.ST_STEP_NAME,
STEP.ST_STATUS
FROM (
SELECT
*
from run
where rownum =1 order by RN_EXECUTION_DATE desc
) run1
left join cycle on cycle.cy_cycle_id = run1.rn_cycle_id
left join step on run1.rn_run_id = step.st_run_id
left join test on step.st_test_id = ts_test_id
where cycle.cy_cycle_id is not null
and run1.rn_run_id is not null
and step.st_test_id is not null
and ts_test_id is not null
order by
cycle.cy_cycle,
test.ts_name,
run1.rn_run_name,
STEP.ST_STEP_ORDER
此问题已通过ALM补丁12修复。
声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.