Trigger configuration - example on the trigger for COMPANY

The Configuration Register in the Teamogy system for configuring the Connector of a given entity is called CONNECTOR.RULE-COMPANY

Let's say there is a requirement to export each COMPANY after each save. The CONNECTOR.RULE-COMPANY register then carries a simple value:

true

In another case, the requirement is to manually export each COMPANY with a button that assigns the value of the property "extStatus" to the value "EXT.READY". The CONNECTOR.RULE-COMPANY registry will then look like this using the Magic function:

${evaluate:(${currentObject:properties.extStatus}=="EXT.READY") ? true : false}

From the above it can be seen that the system configurator has complete freedom in defining the condition when the trigger is triggered.