steve4king
IS-IT--Management
I know this isn't a fox question, but I've found the active members here to be quite sharp.
I'm using a 3rd party web app connector. They leave XML files open so that I can alter the mappings.
They have been pretty unresponsive when I try to work with them so I've started just modifying the program myself.
However, I'm not sure what language is used in the CDATA blocks for the data validation/translations, and so I've only been able to make generic changes.
Can anyone ID this so that I can look up the available functions? (repeated trial and error on live data isn't fun)
Thanks!
I'm using a 3rd party web app connector. They leave XML files open so that I can alter the mappings.
They have been pretty unresponsive when I try to work with them so I've started just modifying the program myself.
However, I'm not sure what language is used in the CDATA blocks for the data validation/translations, and so I've only been able to make generic changes.
Can anyone ID this so that I can look up the available functions? (repeated trial and error on live data isn't fun)
Code:
<?xml version="1.0" encoding="UTF-8"?>
<class>
<function>
<name>BillingStreet</name>
<translate language="formula" type="="><![CDATA[VALUE("BillAddress/Addr1") + " " + VALUE("BillAddress/Addr2") + " " + VALUE("BillAddress/Addr3") + " " + VALUE("BillAddress/Addr4") + " " + VALUE("BillAddress/Addr5")]]></translate>
</function>
<function>
<name>Name</name>
<translate language="formula" type="="><![CDATA[LEFT(VALUE("Name"),41)]]></translate>
</function>
<function>
<name>VALIDATEROW</name>
<translate language="formula" type="="><![CDATA[IF(OR(VALUE("ParentRef/ListID")==null, VALUE("ParentRef/ListID")==""),"true","false")]]></translate>
</function>
</class>
Thanks!