Archives

Posts Tagged ‘Event Handler’

Below are some sample ways of constructing email body in Syteline event system. BODY( SUBSTITUTE(“We have a new customer. Please see customer number {0} for customer: {1}.”, FP(“custNum”), FP(“custName”) ) ) This uses the common SUBSTITUTE function and use object property as parameter value. BODY( IF( P(“POCost”) > 10000, GC(StdApprovalMessageBody), GC(StdRejectionMessageBody) ) ) Notice the […]

May 24th, 2014 | Filed under Development

To extract the Event System metadata, please do the following: On the Syteline utility server, go to <install drive>:\program files\Infor\Syteline Double-click on AppMetadataTransport.exe On the first few forms of the wizard, enter the appropriate information (e.g., select to export the metadata to an XML file, pick the appropriate configuration, browse to enter an export file […]

Nov 18th, 2013 | Filed under Application, Development

In Syteline, there are many ways to default field value.  The most simple way is to use the default value property of the field component.  But if you need to set the default value based on some other field value, that simple property value would not cut it. Syteline Application Case We want to default […]

Mar 23rd, 2010 | Filed under Development, SQL, VB .Net

In Syteline form, quite often, you would need to assign some field value, base on another field value entered. Business case: Let say in Customer Order, for certain payment terms, you would not allow partial shipment.  So in the CO header form, when user select certain payment term, you want the system automatically uncheck the […]

Feb 17th, 2010 | Filed under Development, VB .Net

Each component in Syteline form can have its own right click menu, and this right click menu is customizable. See the sample, the “Ship To” field has a standard right click menu, with “Add”, “Detail”, “Find” and “Help” menu items. If you look into the component property of “Ship To” field, you can see the […]

Oct 12th, 2009 | Filed under Development, VB .Net