Hi,
One of our clients was having an issue where creating a PO from a Blanket PO would cause the item tracking information to not auto-create the Expiration Date. It was tracked down to this MBS bug fix code, but we can't find any reference to this. We would like to comment it out to solve the issue, but we don't know why it was added. Has anyone else seen this before?
//<MBS_8567996>
{
IF PurchBlanketOrderLine."Expected Receipt Date" <> 0D THEN
PurchOrderLine.VALIDATE("Expected Receipt Date",PurchBlanketOrderLine."Expected Receipt Date")
ELSE
PurchOrderLine.VALIDATE("Order Date",PurchOrderHeader."Order Date");
}
IF PurchBlanketOrderLine."Expected Receipt Date" <> 0D THEN
PurchOrderLine.VALIDATE("Expected Receipt Date",PurchBlanketOrderLine."Expected Receipt Date");
//</MBS_8567996>
0
Comments
http://support.microsoft.com/kb/892595
-Jon
P.S. I Googled PurchBlanketOrderLine."Expected Receipt Date" and came up with two other fixes that look like the same code snippet you referenced.