|
|
Hi Paul,
Thanks for your reply.
Yeah, it was the problem of Account settings. I have solved that one with your suggestion. Now I got another issue. The issue is:
Actually I am using Mysql as our Database server. The problem is when I try to receive inventory for a product, it is showing "right value is null, can't compare null with Big decimal". So, I added bit code in InventoryServices.xml#balanceInventoryitems :
<if-empty field="inventoryItem.quantityOnHandTotal"> <set field="inventoryItem.quantityOnHandTotal" value="0" type="BigDecimal"/> </if-empty>
for just resolving the issue(to check whether we can make inventory if we avoid null comparison problem). Now, the null comparison problem got resolved. But, the product inventory values( total Quantity On Hand, Available to Promise) are still getting displayed as empty(null).
Is this a problem with MySql DB?. I hope so, because I tried with Derby DB, it's working fine. If it's problem with MySql, can you please give me suggestion to resolve this?. It's the important issue we got to resolve ASAP, as we are using the Mysql DB and unless we make the inventory for a product we can't proceed to fulfill order.
Thanks in advance.
|