Hi, Everyone.
The available physical qty shows '0'. But it should have some values.
I have checked the item transactions also it seems fine.
Now I am doing the constituency check.
Is there any other way to resolve this issue (code to update the corresponding values or some standard process) Kindly suggest.
thanks in advance.
Why do you think that there should be some quantity?
as i am technical person facing this issue and correct me if i wrong, if the inventory having the quantity with Physical inventory(ex-10qty) than it should shows Available physical(ex-10qty)?
What exactly do you mean by "inventory showing something"? Which table/form and fields are you looking at?
And then what you mean by "it" (in "it should show...").
Hi Otis, having Physical inventory doesn't mean that you must have Available physical inventory. Check this link, it will help you understand
Regards
social.technet.microsoft.com/.../6116.dynamics-ax-on-hand-inventory.aspx
2 physical and 2 reserved = 0 available. The screen shot is right, you have none available.
Interestingly the image on the post is not the image that was on the email alerting me to this post :-)
Hi, Adam
Already checked, the item does not have any reserved.
I knew adam, that image took for example purpose only, after that(croped the field) again I reposted.
Used this code to fix the issue,
static void Job_ InventSumRecalcItem(Args _args)
{
InventSumRecalcItem InventSumRecalcItem;
;
InventSumRecalcItem = new InventSumRecalcItem(“itemnumber”, true, checkfix::fix);
InventSumRecalcItem.updatenow();
}
Thanks for everyone