How to use Not Exists Join in Axapta 2012
Views (29263)
You can use Not Exists Join in Axapta 2012 following way.
LedgerTable ledgerTable;
LedgerTrans ledgerTrans;
while select AccountNum, Name from ledgerTable
notExists join * from ledgerTrans where (ledgerTable.AccountNum == ledgerTrans.AccountNum)
LedgerTable ledgerTable;
LedgerTrans ledgerTrans;
while select AccountNum, Name from ledgerTable
notExists join * from ledgerTrans where (ledgerTable.AccountNum == ledgerTrans.AccountNum)
This was originally posted here.

Like
Report
*This post is locked for comments