shipping data entry - summary package tracking customization

SUGGESTED

I would like to customize the Summary Package Tracking panel but the right-click customization option is not available.

I am trying to ensure the user enters tracking information into this panel before Accepting the shipment.  Any suggestions are appreciated.

Possibly a script on the Accept button that launches Summary Package Tracking and then runs the Accept function after closing Summary Package Tracking.  If this makes sense, how would I go about writing such a script?

Parents
  • 0
    SUGGESTED

    I created a vb script.  Here is the script.

    '******* 1/13/2023 Tracking number lookup and link to web site ship24 created by [email protected] *******

    Mas_Scr_Dbg = 0

    'If oSession.CompanyCode = "ABC" Then

    retval = oSession.AsObject(oSession.UI).Messagebox("""Tracking fired")

    Div=""
    Order=""
    InvoiceNo=""
    HedSeqNo=""
    Package=""
    TrackingNo=""

    retVal = oBusObj.GetValue("InvoiceNo$",InvoiceNo)
    retVal = oBusObj.GetValue("HeaderSeqNo$",HedSeqNo)
    retVal = oBusObj.GetValue("PackageNo$",Package)
    retVal = oBusObj.GetValue("TrackingID$",TrackingNo)
    'msgbox "Invoice=" & Invoiceno & " SeqNo = " & HedSeqNo & " Package = " & package & " Tracking = " & TrackingNo

    Link = "">www.ship24.com/tracking & TrackingNo & ""

    'msgbox Link

    CreateObject("WScript.Shell").Run(Link)

    'End if 'Close if not ABC company

Reply
  • 0
    SUGGESTED

    I created a vb script.  Here is the script.

    '******* 1/13/2023 Tracking number lookup and link to web site ship24 created by [email protected] *******

    Mas_Scr_Dbg = 0

    'If oSession.CompanyCode = "ABC" Then

    retval = oSession.AsObject(oSession.UI).Messagebox("""Tracking fired")

    Div=""
    Order=""
    InvoiceNo=""
    HedSeqNo=""
    Package=""
    TrackingNo=""

    retVal = oBusObj.GetValue("InvoiceNo$",InvoiceNo)
    retVal = oBusObj.GetValue("HeaderSeqNo$",HedSeqNo)
    retVal = oBusObj.GetValue("PackageNo$",Package)
    retVal = oBusObj.GetValue("TrackingID$",TrackingNo)
    'msgbox "Invoice=" & Invoiceno & " SeqNo = " & HedSeqNo & " Package = " & package & " Tracking = " & TrackingNo

    Link = "">www.ship24.com/tracking & TrackingNo & ""

    'msgbox Link

    CreateObject("WScript.Shell").Run(Link)

    'End if 'Close if not ABC company

Children