Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

You receive System Message 6678 when a shipper is confirmed before the shipper is saved


Cause

If the Shippers (40.110.00) screen crashes after the Shipper is confirmed but before the Shipper is saved, the QtyConfirmShip value in the LotSerMst record is left populated causing System Message 6678.

↑ Back to the top


Resolution

Customize the screen:

 1. Open the Shipper (40.110.00) screen
 2. Start Customization Manager and then open Visual Basic Editor.
 3. Copy and paste the following code


Dim Needtosave As Boolean
Private Sub cmdCancelRelease_Click()
    Needtosave = False
End Sub

Private Sub cmdOKRelease_Click()
    Needtosave = True
End Sub

Private Sub frmRelease_Hide()
    If Needtosave = True Then
        Edit_Save
    End If
End Sub


 4.  Save the customization and close the screen.

↑ Back to the top


Keywords: kbmbsmigrate, kbmbspartner, kbsurveynew, kb

↑ Back to the top

Article Info
Article ID : 2953118
Revision : 2
Created on : 2/3/2017
Published on : 2/3/2017
Exists online : False
Views : 81