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
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