test ticket
04/05/2019, 02:01:37 PM
.+.
Shipment Dashboard
04/04/2019, 09:50:36 AM
Responded to Devin using this:
for each shiphead where
shiphead.cust-no = "ollies" and
shiphead.consol-ind
no-lock:
display
shiphead.cust-no
shiphead.branch
shiphead.dept
shiphead.id
shiphead.file-type
shiphead.export-date.
SteelRoads
04/03/2019, 09:02:19 AM
Rashi 6[diff]commit eb6e349a78eaa4e611d0f78ca4a713062e193a6e
Author: Gregory Livingston
Date: Wed Apr 3 09:02:03 2019 -0400
{TICKET:282}
steelroads - hotfix for 10-02-2137827
diff --git a/shapiro360/getSteelRoadsCont.p b/shapiro360/getSteelRoadsCont.p
index a37c152..cdd2307 100755
--- a/shapiro360/getSteelRoadsCont.p
+++ b/shapiro360/getSteelRoadsCont.p
@@ -92,7 +92,14 @@
if not available shiphead then
next FILE-LOOP.
- if TODAY > shiphead.arrival-date + 60 and
+ /*** hotfix - GML - 4/3/19 ***/
+ if shiphead.id = "2137827" then do:
+ if shiphead.arrival-date shiphead.arrival-date + 60 and
shiphead.arrival-date <> ? then do:
run solve-problem in this-procedure (input "SRTK").
next FILE-LOOP.[/diff]
FDSALES custom diff programming
03/15/2019, 03:26:30 PM
Not working from shap-exp-xenap1 imp/w-icomdt.w. Need to adjust the imp/shphd-diff.p call so that it can get an exclusive-lock on shiphead.
From: [email protected] <[email protected]>
Sent: Friday, March 15, 2019 15:20
To: Gregory Livingston <[email protected]>
Subject: FDSALES POD ETA update failure
2143718 - failed to update arrival-date-2/point of
delivery ETA
Export Ocean Automation Enhancement
01/28/2019, 10:49:54 AM
[quote]From: Tricia Gale
Sent: Monday, January 28, 2019 10:01 AM
To: Dawn Jahn <[email protected]>; MIS <[email protected]>
Subject: RE: AUTOMATION ISSUES
01-04-2143973
Thank you & best regards,
Tricia Gale
Global Logistics Specialist-Export | [email protected]
SHAPIRO We Deliver. Problem Solved.?
www.shapiro.com
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?
A 1215 E. Fort Avenue, Suite 201 | Baltimore, MD 21230
P 410.539.0540 Ext. 0270 | F 410.547.6935
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?
From: Dawn Jahn <[email protected]>
Sent: Monday, January 28, 2019 10:01 AM
To: Tricia Gale <[email protected]>; MIS <[email protected]>
Subject: RE: AUTOMATION ISSUES
File Number?
From: Tricia Gale
Sent: Monday, January 28, 2019 10:00 AM
To: MIS <[email protected]>
Subject: AUTOMATION ISSUES
Hello,
I have been trying to send myself a dock receipt from Automation for the last half hour.
It won?t come through when I email it to myself.[/quote]
The dock receipt won't print if you have no equipment lines. I added this in exp/f-docs.w:
[code] /*** check for equipment - GML - 1/28/19 ***/
find first bookeq where
bookeq.branch = shiphead.branch and
bookeq.dept = shiphead.dept and
bookeq.id = shiphead.id
no-lock no-error.
if not available bookeq then do:
message "You cannot print a Dock Receipt without any equipment lines."
view-as alert-box error.
return error.
end.[/code]
Five Below PO Feed to Shapiro
11/05/2018, 08:56:00 AM
FILE: 1541426161_NFI File Spec Document.pdf
I&K Exceptions
10/31/2018, 03:35:54 PM
As per Devin in "RE: IKTRALLC: BMM Exceptions Questions", I've added a change to cont-util to only re-run the exception for I&K if the volume decreases:
[code] /*** for IKTRALLC, count this as approved if the volume has not decreased - GML - 10/31/18 ***/
if not approved and
shiphead.cust-no = "IKTRALLC"
then do:
run imp/get-table-seq.p (
input shiphead.cust-no,
input "bookeq",
input "volume",
input rowid(bookeq),
output table-seq
).
find last difflog where
difflog.id = shiphead.id and
difflog.table-name = "bookeq" and
difflog.field-name = "volume" and
difflog.table-seq = table-seq and
difflog.appr-seq <> 0 and
decimal(difflog.new-val) <= bookeq.volume
no-lock no-error.
if available difflog then do:
assign approved = yes.
end.
end.[/code]