in a purchase order ...... there are three line in purchase lines .. Say for example there are Quantity 24, 80,120.frist line qty is 24,Second is 80. Here comes the senario.... that second is greater than the frist 80 > 24,when comes to third 120.... the system is totalling the frist and second n checks wheather third qty entered is greater or what.... eg : 120> 104(24+80).if it greater it is not throwing Item Tracking error.Else it is throwing Item Tracking error .....eg.: instead of 120 if i enter 100.....it throwing Item tracking error like
Microsoft Business Solutions-Navision
Item tracking defined for the Purchase Line accounts for more than the quantity you have entered.
You must adjust the existing item tracking and then reenter the new quantity.
OK
They had done some customization in the form for item tracking ..... but am confused and am trying right from morning..... but not got anything................... kindly guide me.......
0
Comments
Get with your NAV partner. Explain the situation. It will require a code change to fix it.
As far As my knowledge i think the sound looking something different rather than line no. filter.
Check standard db and then check the modification you might have done in your db.
http://ssdynamics.co.in
Microsoft Business Solutions-Navision
Item tracking defined for the Purchase Line accounts for more than the quantity you have entered.
You must adjust the existing item tracking and then reenter the new quantity.
OK
system trying to add the quantity of each line and checking wheather the quantity which is about to be entered is greater.
for eg::
frist is 10 second is 12
10+12= 22 . when am trying to enter third quantity which is 10 ... it is popping up an Item tracking error not alowwing to enter quantity value less than the total value of 22 (10 +12). if am entering more than 22 it is accepting the errror is not popping up....
I had gone through the code by debugging it .... I had found that there is a code written for Item tracking in reservation management (Codeunit)... where they are checking condition for this error....
F HandleItemTracking THEN
IF QtyToRelease <> 0 THEN BEGIN
IF ItemTrackingHandling = ItemTrackingHandling::None THEN
IF DeleteAll THEN BEGIN
ERROR(Text010,ReservEntry.TextCaption);
END
ELSE
ERROR(Text008,ReservEntry.TextCaption);
IF ItemTrackingHandling = ItemTrackingHandling::Match THEN
ERROR(Text009,CurrentSerialNo,CurrentLotNo,ABS(QtyToRelease));
END;
If am blocking this code (but i had not did it till now in LIVE DB)... it is not throwing error .... i think it is default navision standared code... i need to wheather i need to block the above code(i dont think so) ... i dint get where it is actualling suming the quantity, instead of counting .... an any body can give a proper solution.... kindly expecting your help... as am breaking my head on this issue for the past 2 days..... please advice me......
Thanks in advance
or get the person who did the modification to correct it.