![]() |
#1 |
Участник
|
daxmy: Transaction Reorganizing
Источник: http://daxmy.blogspot.com/2007/07/tr...rganizing.html
============== Recently I have working on one interesting standard bug in AX 4.0 SP1. As far as I concerned, no hot fixes available for the particular bug description. Below is the link for all hot fixes (requires PartnerSource logon) Hot fixes List How to reproduce the scenario:
How to resolve:
while select vendTransOpenLocal where vendTransOpenLocal.AccountNum == vendTrans.AccountNum join specTransLocal where specTransLocal.RefTableId == vendTransOpenLocal.TableId && specTransLocal.RefRecId == vendTransOpenLocal.RecId { amountCurLocal += vendTransOpenLocal.AmountCur; } New Code: while select vendTransOpenLocal where vendTransOpenLocal.AccountNum == vendTrans.AccountNum join specTransLocal where specTransLocal.RefTableId == vendTransOpenLocal.TableId && specTransLocal.RefRecId == vendTransOpenLocal.RecId && specTransLocal.SpecTableId == common.TableId //source tableid && specTransLocal.SpecRecId == common.RecId //source recid { amountCurLocal += vendTransOpenLocal.AmountCur; } Updated on 25 July 2007: I just received june 2007 hot fixes and the bug was fixed. Источник: http://daxmy.blogspot.com/2007/07/tr...rganizing.html
__________________
Расскажите о новых и интересных блогах по Microsoft Dynamics, напишите личное сообщение администратору. |
|
|
|