The lot number is blank on the first detail line when you paste detail into Transfers (10.040.00) that includes a lot number

This article provides resolutions for the issue that the lot number will be blank on the first detail line when pasting detail into Transfers (10.040.00) that includes a lot number in Microsoft Dynamics SL.

Applies to:   Microsoft Dynamics SL
Original KB number:   2950081

Use one of the following resolutions as a workaround for this problem.

Resolution 1: Manually enter the line items.

Resolution 2: Close the screen and reopen after you paste and save the data and then input the lot number again.

Resolution 3: Use transaction import to bring in the detail lines.

Resolution 4: Add the following VBA code as a customization:

Private Sub Spread1_LineGotFocus(maintflg As Integer, retval As Integer)
Dim thebatnbr As String
thebatnbr = GetObjectValue("cBatNbrh")
If Trim$(thebatnbr) = "" Then
Call Edit_Save
End If
End Sub