headcount_variance_by_region.xaction 987 Bytes
Newer Older
Thitichaipun Wutthisak committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39

<action-sequence>

	<name>headcount_variance_by_region.xaction</name>
	<version>1</version>
	<title>Regions and departments</title>
	<logging-level>debug</logging-level>
	<documentation>
		<author>James Dixon</author>
		<description>query rule test</description>
		<help>just testing...</help>
	</documentation>

	<inputs>
  </inputs>
  
	<outputs>
		<rule-result>
			<type>list</type>
		</rule-result>
	</outputs>
  <resources/>
  
  <actions> 
      <action-definition>

        <action-outputs>
          <rule-result type="list"/>
        </action-outputs>
        
        <component-name>SQLLookupRule</component-name>
        <action-type>rule</action-type>
      	<component-definition>
          <jndi>SampleData</jndi>
          <query><![CDATA[select REGION, (sum(CAST(ACTUAL AS FLOAT))*100/sum(CAST(BUDGET AS FLOAT)))-100 as VARIANCE from QUADRANT_ACTUALS group by REGION]]></query>
        </component-definition>
      </action-definition>
  </actions>
</action-sequence>