web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

No record found.

News and Announcements icon
Community site session details

Community site session details

Session Id :

Record View Cache

Pooja Karki Profile Picture Pooja Karki 3,045
Today I will demonstrate you that how to use Record View Cache in AX 2012.

static void RecordViewCache(Args _args)
{
CustTrans custTrans;
RecordViewCache recordViewCache;
;

select nofetch custTrans
where custTrans.AccountNum == '4000';
recordViewCache = new RecordViewCache(custTrans);
select firstonly custTrans
where custTrans.AccountNum == '4000' &&
custTrans.CurrencyCode == 'USD';
}


Happy Daxing.. :)

This was originally posted here.

Comments

*This post is locked for comments