We are having trouble getting a new item to show on a requisition worksheet. Without any transaction currently in the system (SO or PO detail line), the program will not flag it as requiring replenishment. We have the Reorder Policy set to Fixed Quantity, a unit of measure, a stocking level below the reorder point. The minute we add it to a sales order, it shows up. What are we doing wrong. Thanks.
0
Comments
Hope this can be of any help.
Looking forward to your results.
Rgds
Geert Penners
http://www.gac.nl
NAV Freelance Consultant
We had the same problem and we posted an issue about this on the forum some weeks ago... I also got the response that the problem is linked to the setting of location obligated on the warehouse location card. Did you learn about a work around using the stock keeping units? If so, could you post this work around given to you by Microsoft. I was also about to make a post on the Microsoft site for this issue. So the answer could help me get the answer quicker.
Prins Hendrikplein 14
2518 JC DEN HAAG
The Netherlands
http://www.cane.nl
After further testing and researching, here is what I found:
You must set up SKUs if using Location Mandatory(the Location Mandatory is tied to SKUs) to be able to define requisition information necessary at the Location Level. Reason being is if you do not define the SKU, then you are setting a general replenishments for all locations based on the item card. With that said, you could be over/under stating each location based on the general item replenishment versus individual locations sku's. This is working as designed based on the information from development.
Your options are to either unmark the location mandatory option or change the code. You could possible review the code and make changes to not look at SKUs during this process.
An example was to set one location as the supply location and then tying this to Manufacturing Setup as the Component at Location. The biggest concern seems to be that in a multiple-location environment, you can get a lot of unwanted supply recommendations without SKUs at the Location level. I've included a little information as to what development gave an example of the code.
-
Thanks,
Jill
MBS Support Engineer
...................................
**PLEASE KEEP IN MIND THIS IS AN EXAMPLE, HAS NOT BEEN FULLY TESTED, AND CURRENTLY IS NOT SUPPORTED. PLEASE TEST BEFORE IMPLEMENTING LIVE**
The main problem is to decide when to start doing replenishment on a location.
Should we create replenishment orders for those locations with nothing on inventory and no demand for this item?
The solution has been designed to avoid this situation.
In the following change, the customer has to decide a "replenishment location". This is setup using the "Component at Location" field at the Manufacturing Setup.
In codeunit 99854, function DemandtoInvProfile the following code
IF SKU.FIND('-') THEN
REPEAT
CheckCreateItemDemand(InventoryProfile,SKU,OrderDate);
UNTIL SKU.NEXT = 0;
IF NOT SKU.GET('',Item."No.",'') AND
NOT InvtSetup."Location Mandatory"
THEN BEGIN
TempSKU.INIT;
TempSKU."Item No." := Item."No.";
TransferPlanningParameters(TempSKU);
CheckCreateItemDemand(InventoryProfile,TempSKU,OrderDate);
END;
should be changed to:
IF SKU.FIND('-') THEN BEGIN
REPEAT
CheckCreateItemDemand(InventoryProfile,SKU,OrderDate);
UNTIL SKU.NEXT = 0;
END ELSE
IF (ManufacturingSetup."Components at Location" <> '') OR
NOT InvtSetup."Location Mandatory"
THEN BEGIN
TempSKU.INIT;
TempSKU."Item No." := Item."No.";
TempSKU."Location Code" := ManufacturingSetup."Components at Location";
TransferPlanningParameters(TempSKU);
CheckCreateItemDemand(InventoryProfile,TempSKU,OrderDate);
END;
................................
They are not currently using SKUs and implementing that right now would be huge. I am curious if anyone has looked into the effects of unchecking the Locations Mandatory option in other areas? Also, what version is this associated with? We are dealing with 3.10 at this time. Does anyone know if this has been changed in Navision 4.0?
Thanks!