Monday, November 22, 2010

Dynamics AX Intelligent Data Management Framework

currently assessing whether the IDMF tool for Dynamics AX is worth
implementing at my current workplace.

if you don't know what it is, go here (you'll need your
partnersource/customersource login):
https://mbs.microsoft.com/partnersource/downloads/releases/ax_idmf.htm?printpage=false&stext=Data
Management Framework

here is a document i created which may help out, if you happen to be
doing the same thing.

http://cid-53c50a8f9ecf30c8.office.live.com/view.aspx/Public/Dynamics%20AX/Assessment%20of%20Data%20Management%20Framework.doc

Thursday, November 18, 2010

OnlyFetchActive on Form Datasource

this property on the datasource can speed things up especially if you
have one field that has lots of data stored in it and you still want
to show it on the form

if you need to show it on the form (on another tab preferably), you
can use a display method instead.

on the display method

display Memo memoDisplay(TableDS _tableDS)
{
;
if (formTableDS.RecId != _tableDS.RecId)
{
select firstonly log from formTableDS where
formTableDS.RecId == _tableDS.RecId;
}
return formTableDS.memo;
}

formTableDS is declared in the Class declaration of the form