0

我在 pentaho 中使用 CDE 插件我正在创建一个仪表板,其中包含 CDE 仪表板中的 xaction 的结果,谁能告诉我如何在 CDE 仪表板中得出 xaction 我将 xaction 作为组件包括在内,但在预览中没有结果,因为 xaction 产生

组件要求名称路径操作解决方案

我应该在这里输入什么

这是我的 xaction

<?xml version="1.0" encoding="UTF-8"?>
<action-sequence> 
  <title>nov12xaction</title>
  <version>1</version>
  <logging-level>ERROR</logging-level>
  <documentation> 
    <author>hussain</author>  
    <description>Empty blank action sequence document</description>  
    <help/>  
    <result-type>text</result-type>  
    <icon/> 
  </documentation>

  <inputs/>

  <outputs>
    <query_result type="result-set"/>
  </outputs>

  <resources/>

  <actions> 
    <action-definition>
      <component-name>SQLLookupRule</component-name>
      <action-type>Relational</action-type>
      <action-outputs>
        <query-result type="result-set" mapping="query_result"/>
      </action-outputs>
      <component-definition>
        <query><![CDATA[select * from student where pointer > 30;]]></query>
        <live><![CDATA[true]]></live>
        <driver><![CDATA[com.jdbc.odbc.Driver]]></driver>
        <connection><![CDATA[jdbc:mysql://localhost:3306/xactionstudy]]></connection>
        <user-id><![CDATA[root]]></user-id>
        <password><![CDATA[root]]></password>
      </component-definition>
    </action-definition>

  </actions> 
</action-sequence>
4

2 回答 2

0

我想我得到了正确的解决方案我试图为浏览器创建 URl,所以我设置了 solution=steel-wheels& path=dashboards& action=nov12xaction.xaction // 或任何操作名称

它很有效

于 2012-11-12T04:27:24.700 回答
0

将您的 xaction 放入 CDE 仪表板文件夹并使用执行 xaction 组件

于 2013-05-24T08:59:22.617 回答