Sometimes an EForm is used to write to an AppXtender Easyfile application. When designing the EForm, there are 2 two situations you must be aware of in AppXtenderEasyfile.
All required fields in the Easyfile Application must be filled in on the EForm for the data to be accepted into AX. If the required fields do not have a mapping established and data is submitted to Easyfile, the entries will be rejected.
If the data type for an Easyfile field is a lookup list, the entry on the EForm must match one of the values in the Easyfile lookup list. While the entry will be accepted and written into the database table, the entry will never be found because it does not match any of the values in the lookup table.
It is therefore best to create either a static list containing the values or an SQL list entry pointing to the table holding the Easyfile values. This will force the user to choose an item guaranteed to match the corresponding Easyfile value.
...