Set Allow duplicates for new table indexes to Yes by default
When we create a new table index in previous version(ax2012) Allow duplicates is set to Yes. But it Operation365 it is set to No by default, which can cause some issues if developer forget to change it. Please make Yes as a default value.
File parameters support in SysOperation and RunBase
Current Dialog and SysOperationTempalte forms still contain old methods for working with files (filename..) and these frameworks(SysOperation and RunBase) were not updated to the new File approach. So right now, if you want to ask user for the file (in SysOperation or RunBase) you will need to...
Infolog is limited to 500 messages and easy copy is not available
Current infolog is showing only last 500 messages and deleting all other messages
Consider the following job
for(int i =1; i <= 502; i++) error(strFmt("line error %1", i));
for(int i =1; i <= 502; i++) info(strFmt("line info %1", i));
it will display only last...
Add query range type for the Full text CONTAINS statement
Currently we have the QueryRangeType::FullText(queryBuildRange.rangeType(QueryRangeType::FullText)) as a query range type to use Full Text search. It will be translated to FREETEXT SQL statement. The problem is FREETEXT SQL statement does not support wildcard characters (like *).
Can yo...
Missing fields in data entities
Quite often current data entities don’t contain all fields from the base table (for example LedgerJournalTrans table contains 200 fields, but data entity LedgerJournalLineEntity contains only 40 fields)
And that can cause a problem, because very often client wants to use some fiel...