Work Arounds
Test Mail through Axpert Properties over web not displaying any message
If there is no message or trace, when setting up the office 365 email account through Axpert Properties in web then the following can be tried out. Open the Microsoft 365 admin center and go to Users > Active users. Select the user, and in the flyout ...
Error in Excel Import : Unable to connect to Excel, make sure given file is an valid Excel file
This issue could be due to OLEDB driver missing in the respective system, where the application is running. It can be downloaded from the below link and installed. https://www.microsoft.com/en-us/download/confirmation.aspx?id=13255 [Access database ...
Error: License / App key invalid. Please contact Agile Support Team
It could be due to following reasons. User may be trying to refresh the partner license using old exe. Use of latest exe may fix this problem The license may be originally activated from one windows login and user may be trying to refresh the same ...
Error: Please try later... when login from specific IPs
It may be possible that the source IP may be lengthier than 20 characters and axpert will fail to insert in connections, axaudit tables. The login trace in such scenarios would show up something like below and to resolve this, the IP field width has ...
Not able to activate license in one machine but working in other machines
It may be due to system locale settings in Regional Settings, where "Beta: Use Unicode UTF-8 for worldwide language support" is turned on. This needs to be turned off to make axpert license activation work.
Error when saving the card configuration from home page.
To check if "carddetails" (clob) field available in axusers table and add it manually, if missing.
Report (Iview) is not working for a specific user but for others it is working
It may be due to custom views sometimes and delete the record in "axcustomviews" table for the user whom it is not working. eg. delete from axcustomviews where name = ‘<iviewname>’ and username = '<username>'
How to concatenate image data in Postgres to use in fast report
Define your own aggregate to do binary concatenation and use it sql. https://stackoverflow.com/questions/10194117/append-binary-content-to-bytea-column-in-postgresql-database eg. CREATE AGGREGATE bytea_add(bytea) ( sfunc = byteacat, stype = bytea, ...