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>