Writing RPAS Special Procedures for RDF
Hi,
I would just like to ask how to create/register a special procedure in RPAS-RDF.
I'm trying to create a special procedure in RDF so I can run something like: mace -d <dom> -run -expression "mOutput<-Add(mInput1,mInput2)"
I created the Add.xml file under the RPAS_HOME/applib/resources folder which contains the following code:
<usage expression-name="Add" controller-name="assign">
<description>
Adds the value of 2 measures together
</description>
<lhs-args>
<arg component-name="mOutput" intersection="sku_str_" data-type="real"/>
</lhs-args>
<rhs-args>
<arg component-name="mInput1" intersection="sku_str_" data-type="real"/>
<arg component-name="mInput2" intersection="sku_str_" data-type="real"/>
</rhs-args>
<component-manifest>