Special Functions For Reports: Difference between revisions

From OpenPetra Wiki
Jump to navigation Jump to search
(Created page with 'Here is list of the special functions that can be called from the reports. These functions compute the data on the server side and return them into the returnvalue of the report.…')
(No difference)

Revision as of 10:56, 6 July 2010

Here is list of the special functions that can be called from the reports. These functions compute the data on the server side and return them into the returnvalue of the report. The functions usually stay in: ICT\Petra\Server\lib\MReporting\MModule\Function.cs. They are called from the report xml file like this:

<calculation id="MakePartnerName" returns="PartnerNameAndKey" returnsFormat="text">
  <query>
    <queryDetail>
      <value text="NO-SQL"/>
      <value function="assign(PartnerNameAndKey, {PartnerKey})"/>
      <value function="assign(Amount, add({Amount1},{Amount2}))"/>
    </queryDetail>
  </query>
</calculation>