With great help of AndyD, Tabax now have an integration with browser and other tools. For example you can send a link to the specific purchase order via outlook, and when the link will be clicked, user will see purchase order you linked to.
You can also link to the specific parts of code. For example here tabax checks your access to development environment when you are navigating AOT link.
How to make it work:
Wednesday, April 25, 2007
Monday, April 23, 2007
SYS_ExpressionQueryBuilder
SYS_ExpressionQueryBuilder is an ExpressionBuilder for queries. Read more @ axaptapedia
InventTrans inventTrans;
QueryRun qr = SYS_ExpressionQueryBuilder::construct()
.dataSource(tableNum(InventTrans))
.count(fieldNum(InventTrans, RecID))
.groupBy(fieldNum(InventTrans, ItemID))
.between(fieldNum(InventTrans, DatePhysical), 01012006, 31122006)
.matches(fieldNum(InventTrans, Qty), '<0')
.exists(tableNum(InventDim))
.link(fieldNum(InventTrans, InventDimID),
fieldNum(InventDim, InventDimID))
.matches(fieldNum(InventDim, InventLocationID), condition)
.run();
;
while(qr.next())
{
inventTrans = qr.get(tableNum(InventTrans));
info(strFmt('%1: %2', inventTrans.ItemId, InventTrans.RecId));
}
Tuesday, April 03, 2007
Infolog stack trace
This extension allows to see stacktrace of infolog items and navigate through call stack. read more @axaptapedia