Cool...
M. Manasa Reddy
ERP Specialist
T:1.832.303.7411 M:1.773.401.4126
2925 Briarpark, Suite 950, Houston, Texas, USA 77042
[Description: McCoy]www.mccoyglobal.com<http://www.mccoyglobal.com>
This message contains information that is privileged and confidential and is intended solely for the person or entity identified in the addressee field. If you have received this message in error, please notify us immediately by telephone and permanently destroy any and all copies, whether in paper or electronic format. Any dissemination or copying of this message, or any action taken as a result of the information contained in this message, by anyone other than the party for whom it is intended, is strictly prohibited.
From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of Rob Bucek
Sent: Thursday, January 24, 2013 11:18 AM
To: vantage@yahoogroups.com
Subject: [Vantage] RE: QA Module and E9 - 9.05.607B
Here's an example where if a machine is logged for reactive maintenance a BAM alert sends emails to maintenance, schedulers, and relevant production supervisors..
{ud/GlbAlert.i & TableName = "LaborDtl"}
Define Variable STime As decimal NO-UNDO.
Define Variable ClockIn as Decimal NO-UNDO.
Define Variable Active as Logical NO-UNDO.
Define Variable Email as Character NO-UNDO.
Assign ClockIn = LaborDtl.ClockInTime.
Assign Active = LaborDtl.ActiveTrans.
Find EmpBasic where LaborDtl.Company = EmpBasic.Company and LaborDtl.EmployeeNum = EmpBasic.EmpID no-lock.
If available EmpBasic Then Do:
If Active = Yes and EmpBasic.JCDept = "EQUIP" and LaborDtl.IndirectCode = "MNT" Then Do:
DEFINE VARIABLE EquipId AS CHARACTER NO-UNDO.
Assign EquipID = EmpBasic.FirstName.
Assign Email = EmpBasic.EMailAddress.
Assign Email-To = "XXXXXX@...<mailto:XXXXXX%40dsmfg.com>" + ";" + " XXXXXX @..." + ";" + " XXXXXX @..." + ";" + " XXXXXX @..." + ";" + " XXXXXX @..." + ";" + "bverhalen@...<mailto:bverhalen%40dsmfg.com>" + ";" + " XXXXXX @..." + ";" + " XXXXXX @...".
Assign Email-CC = empbasic.EMailAddress.
Assign Email-Subject = "MACHINE MAINTENANCE ALERT! :~t" + string(LaborDtl.EmployeeNum).
Assign Email-Text = "The following Machine has been logged for maintenance:~t" + string(LaborDtl.EmployeeNum)
+ "~n~t~t~t~t~t~t~tEquipmentID:~t" + string(EquipID) + " (" + string(EmpBasic.LastName) + ")"
+ "~n~t~t~t~t~t~t~t ClockIn:~t" + string(Time,"HH:MM:SS")
+ "~n~t~t~t~t~t~t~t Active:~t" + string(Active).
End.
Else Do:
If Active = No and EmpBasic.JCDept = "EQUIP" and LaborDtl.IndirectCode = "MNT" Then Do:
Assign ClockIn = LaborDtl.ClockOutTime.
Assign EquipID = EmpBasic.FirstName.
Assign Email = EmpBasic.EMailAddress.
Assign Email-To = " XXXXXX @..." + ";" + " XXXXXX @..." + ";" + " XXXXXX @..." + ";" + " XXXXXX @..." + ";" + " XXXXXX @...".
Assign Email-CC = empbasic.EMailAddress.
Assign Email-Subject = "MACHINE MAINTENANCE COMPLETE :~t" + string(LaborDtl.EmployeeNum).
Assign Email-Text = " The following Machine maintenance has been completed:~t" + string(LaborDtl.EmployeeNum)
+ "~n~t~t~t~t~t~t~tEquipmentID:~t" + string(EquipID) + " (" + string(EmpBasic.LastName) + ")"
+ "~n~t~t~t~t~t~t~t ClockOut:~t" + string(Time,"HH:MM:SS")
+ "~n~t~t~t~t~t~t~t Active:~t" + string(Active).
End.
Else Do:
Assign SendEmail = False.
End.
End.
End.
Rob Bucek
Production Control Manager
PH: (715) 284-5376 ext 311
Mobile: (715)896-4832
FAX: (715)284-4084
[cid:1.234354861@...<mailto:1.234354861%40web65412.mail.ac4.yahoo.com>]http://www.dsmfg.com/>
(Click the logo to view our site)http://www.dsmfg.com/>
From: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> [mailto:vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>] On Behalf Of Manasa Reddy
Sent: Thursday, January 24, 2013 10:37 AM
To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>
Subject: [Vantage] RE: QA Module and E9 - 9.05.607B
Greg and Rob,
Thanks for the information!
M. Manasa Reddy
ERP Specialist
T:1.832.303.7411 M:1.773.401.4126
2925 Briarpark, Suite 950, Houston, Texas, USA 77042
[Description: McCoy]www.mccoyglobal.comhttp://www.mccoyglobal.com>
This message contains information that is privileged and confidential and is intended solely for the person or entity identified in the addressee field. If you have received this message in error, please notify us immediately by telephone and permanently destroy any and all copies, whether in paper or electronic format. Any dissemination or copying of this message, or any action taken as a result of the information contained in this message, by anyone other than the party for whom it is intended, is strictly prohibited.
From: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> [mailto:vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>] On Behalf Of Greg Payne
Sent: Thursday, January 24, 2013 8:18 AM
To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>
Subject: [Vantage] RE: QA Module and E9 - 9.05.607B
Manasa:
We are currently writing the same kinds of alerts using BAMs. The one below is on RcvDtl with InspectedDate = Today and FailedQty > 0. We intent to alert the buyer, quality and team leader of the production area effected by the failure.
We are also working on one for DMR Rejections.
You will need the Global Alerts/Email Server Process running in your startup agent. You will need the ability to send emails from Epicor. If you have exchange then a receive connector set to allow anonymous relay from the Epicor server's ip address. If you have sendmail or postfix the process is similar.
There are pieces in here from other alerts for conditional CCs that I copied this from. Errors and the Messages show in the App Server log. I use a viewer, so I can keep the log open and just advance to the end or search for the DEBUG.
HTH
Greg Payne
----------------------------------------------------------
{ud/GlbAlert.i &TableName = "RcvDtl"}
ASSIGN SendEmail = FALSE.
/* format Email Text */
define variable TotQty as decimal no-undo initial 0.
define variable TotStd as decimal no-undo initial 0.
define variable CostAtStd as decimal no-undo initial 0.
define variable CostAtPO as decimal no-undo initial 0.
define variable POQty as decimal no-undo initial 0.
define variable STDVariance as decimal no-undo initial 0.
define variable STDMaterialCost as decimal no-undo initial 0.
define variable EmailAddress as Character no-undo initial '':U.
define variable UserName as Character no-undo initial '':U.
define variable vFrom as character no-undo initial '':U.
define variable vTo as character no-undo initial '':U.
define variable vCC as character no-undo initial '':U.
define variable vSubject as character no-undo initial '':U.
define variable vBody as character no-undo initial '':U.
/* You can reference any Changed data on the Table name on line 1 as OLDTablename.Fieldname */
Find UserFile where UserFile.DCDUserID = DCD-UserID no-lock no-error.
assign EMAIL-From = UserFile.EmailAddress.
Find PODetail no-lock where PODetail.company = RcvDtl.Company and PODetail.PONum = RcvDtl.PONum and PODetail.POLine = PODetail.POLine.
Find PORel no-lock where PORel.Company = RcvDtl.Company and PORel.PONum = RcvDtl.PONum and PORel.POLine = RcvDtl.POLine and PORel.PORelNum = RcvDtl.PORelNum.
Find Vendor no-lock where Vendor.company = PODetail.Company and Vendor.VendorNum = PODetail.VendorNum.
Find Part no-lock where Part.company = PODetail.Company and Part.PartNum = PODetail.PartNum.
Find PartClass no-lock where PartClass.company = PODetail.Company and PartClass.ClassID = Part.ClassID.
Find UserFile where UserFile.DCDUserID = PartClass.BuyerID no-lock no-error.
Find Reason no-lock where Reason.ReasonCode = RcvDtl.ReasonCode.
Message "DEBUG Email - PO Quantity = " + string(PODetail.XOrderQty).
Assign vBody = "Insp Failed on " + string(PODetail.PONum) + " by " + UserFile.Name +
/* "~n~n~tDMR Number " + string(DMRHead.DMRNum) + */
"~n~n~tReason Code " + RcvDtl.ReasonCode + " " + Reason.Description +
"~n~n~tVendor " + Vendor.VendorID +
"~n~n~tItem " + PODetail.PartNum + " " + PODetail.LineDesc +
"~n~n~tRelease Qty " + trim(string(PORel.ReceivedQty)) +
"~n~n~tPassed Qty " + trim(string(RcvDtl.PassedQty)) +
"~n~n~tFailed Qty " + trim(string(RcvDtl.FailedQty)) +
"~n~tPO Cost ~t" + string(PODetail.UnitCost,"$>>>,>>>,>>9.99") + "~tExtended Cost " + TRIM(string(PODetail.UnitCost * PODetail.XOrderQty,"$>>>,>>>,>>9.99")) +
"~n~n~tPurchase Order Number: " + string(PODetail.PONUM) + "~tLine Number: " + string(PODetail.POLine)+
"~n~n~tPart Number: " + PODetail.PartNum + "~tPart Class: " + Part.ClassID.
assign vTO = UserFile.EmailAddress
vCC = "info@...<mailto:info%40compulink.com>;materials@...<mailto:materials%40compulink.com>".
IF INDEX(Part.ProdCode,"OM1")<>0 then Assign vCC = vCC + ";team1mgr@...<mailto:team1mgr%40compulink.com>.".
IF INDEX(Part.ProdCode,"OM2")<>0 then Assign vCC = vCC + ";team2mgr@...<mailto:team2mgr%40compulink.com>.".
IF INDEX(Part.ProdCode,"OM3")<>0 then Assign vCC = vCC + ";team3mgr@...<mailto:team3mgr%40compulink.com>.".
/* if (CostAtPO - CostAtStd) > 50 then do:
assign vTO = vTO + ";info@...<mailto:info%40domain.com>;".
end.
*/
/* if (CostAtPO - CostAtStd) > 1000 then do:
assign vCC = vCC + "user@...<mailto:user%40domain.com>;".
end.
*/
Message "DEBUG Email - Inspected Date = " + string(RcvDtl.InspectedDate,"99/99/99").
EMAIL-To = vTO.
EMAIL-CC = vCC + EMAIL-From.
assign EMAIL-Subject = 'Part Failed Inspection: ' + PODetail.PartNum.
assign EMAIL-Text = vBody.
assign SendEmail = true.
From: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> [mailto:vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>] On Behalf Of Manasa Reddy
Sent: Wednesday, January 23, 2013 8:17 PM
To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>
Subject: [Vantage] QA Module and E9 - 9.05.607B
Some help from all of the customization gurus out there.
We want to be able to send emails to notify people of certain events that happen within the QA module.
What steps do we need to create/custom/program to have this work? We do not have global alerts set up so if we need to set up the email side that gets this going then we are starting from scratch.
We are willing to do a short conference call if that makes it easier to talk about this process.
TIA
Manasa
mreddy@...<mailto:mreddy%40mccoyglobal.com>mreddy@...<mailto:mreddy%40mccoyglobal.com>>
[Non-text portions of this message have been removed]
________________________________
CONFIDENTIALITY NOTICE
The information contained in this communication, including attachments, is privileged and confidential. It is intended only for the exclusive use of the addressee. If the reader of this message is not the intended recipient, or the employee or agent responsible for delivering it to the intended recipient, you are hereby notified that any dissemination, distribution or copying of this communication is strictly prohibited. If you have received this communication in error, please notify us at 727-578-6280 and immediately delete the communication.
"This (document/presentation) may contain technical data as defined in the International Traffic In Arms Regulations (ITAR) 22 CFR 120.10. Export of this material is restricted by the Arms Export Control Act (22 U.S.C. 2751 et seq.) and may not be exported to foreign persons without prior approval form the U.S. Department of State."
[Non-text portions of this message have been removed]
[Non-text portions of this message have been removed]
[Non-text portions of this message have been removed]
[Non-text portions of this message have been removed]
M. Manasa Reddy
ERP Specialist
T:1.832.303.7411 M:1.773.401.4126
2925 Briarpark, Suite 950, Houston, Texas, USA 77042
[Description: McCoy]www.mccoyglobal.com<http://www.mccoyglobal.com>
This message contains information that is privileged and confidential and is intended solely for the person or entity identified in the addressee field. If you have received this message in error, please notify us immediately by telephone and permanently destroy any and all copies, whether in paper or electronic format. Any dissemination or copying of this message, or any action taken as a result of the information contained in this message, by anyone other than the party for whom it is intended, is strictly prohibited.
From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of Rob Bucek
Sent: Thursday, January 24, 2013 11:18 AM
To: vantage@yahoogroups.com
Subject: [Vantage] RE: QA Module and E9 - 9.05.607B
Here's an example where if a machine is logged for reactive maintenance a BAM alert sends emails to maintenance, schedulers, and relevant production supervisors..
{ud/GlbAlert.i & TableName = "LaborDtl"}
Define Variable STime As decimal NO-UNDO.
Define Variable ClockIn as Decimal NO-UNDO.
Define Variable Active as Logical NO-UNDO.
Define Variable Email as Character NO-UNDO.
Assign ClockIn = LaborDtl.ClockInTime.
Assign Active = LaborDtl.ActiveTrans.
Find EmpBasic where LaborDtl.Company = EmpBasic.Company and LaborDtl.EmployeeNum = EmpBasic.EmpID no-lock.
If available EmpBasic Then Do:
If Active = Yes and EmpBasic.JCDept = "EQUIP" and LaborDtl.IndirectCode = "MNT" Then Do:
DEFINE VARIABLE EquipId AS CHARACTER NO-UNDO.
Assign EquipID = EmpBasic.FirstName.
Assign Email = EmpBasic.EMailAddress.
Assign Email-To = "XXXXXX@...<mailto:XXXXXX%40dsmfg.com>" + ";" + " XXXXXX @..." + ";" + " XXXXXX @..." + ";" + " XXXXXX @..." + ";" + " XXXXXX @..." + ";" + "bverhalen@...<mailto:bverhalen%40dsmfg.com>" + ";" + " XXXXXX @..." + ";" + " XXXXXX @...".
Assign Email-CC = empbasic.EMailAddress.
Assign Email-Subject = "MACHINE MAINTENANCE ALERT! :~t" + string(LaborDtl.EmployeeNum).
Assign Email-Text = "The following Machine has been logged for maintenance:~t" + string(LaborDtl.EmployeeNum)
+ "~n~t~t~t~t~t~t~tEquipmentID:~t" + string(EquipID) + " (" + string(EmpBasic.LastName) + ")"
+ "~n~t~t~t~t~t~t~t ClockIn:~t" + string(Time,"HH:MM:SS")
+ "~n~t~t~t~t~t~t~t Active:~t" + string(Active).
End.
Else Do:
If Active = No and EmpBasic.JCDept = "EQUIP" and LaborDtl.IndirectCode = "MNT" Then Do:
Assign ClockIn = LaborDtl.ClockOutTime.
Assign EquipID = EmpBasic.FirstName.
Assign Email = EmpBasic.EMailAddress.
Assign Email-To = " XXXXXX @..." + ";" + " XXXXXX @..." + ";" + " XXXXXX @..." + ";" + " XXXXXX @..." + ";" + " XXXXXX @...".
Assign Email-CC = empbasic.EMailAddress.
Assign Email-Subject = "MACHINE MAINTENANCE COMPLETE :~t" + string(LaborDtl.EmployeeNum).
Assign Email-Text = " The following Machine maintenance has been completed:~t" + string(LaborDtl.EmployeeNum)
+ "~n~t~t~t~t~t~t~tEquipmentID:~t" + string(EquipID) + " (" + string(EmpBasic.LastName) + ")"
+ "~n~t~t~t~t~t~t~t ClockOut:~t" + string(Time,"HH:MM:SS")
+ "~n~t~t~t~t~t~t~t Active:~t" + string(Active).
End.
Else Do:
Assign SendEmail = False.
End.
End.
End.
Rob Bucek
Production Control Manager
PH: (715) 284-5376 ext 311
Mobile: (715)896-4832
FAX: (715)284-4084
[cid:1.234354861@...<mailto:1.234354861%40web65412.mail.ac4.yahoo.com>]http://www.dsmfg.com/>
(Click the logo to view our site)http://www.dsmfg.com/>
From: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> [mailto:vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>] On Behalf Of Manasa Reddy
Sent: Thursday, January 24, 2013 10:37 AM
To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>
Subject: [Vantage] RE: QA Module and E9 - 9.05.607B
Greg and Rob,
Thanks for the information!
M. Manasa Reddy
ERP Specialist
T:1.832.303.7411 M:1.773.401.4126
2925 Briarpark, Suite 950, Houston, Texas, USA 77042
[Description: McCoy]www.mccoyglobal.comhttp://www.mccoyglobal.com>
This message contains information that is privileged and confidential and is intended solely for the person or entity identified in the addressee field. If you have received this message in error, please notify us immediately by telephone and permanently destroy any and all copies, whether in paper or electronic format. Any dissemination or copying of this message, or any action taken as a result of the information contained in this message, by anyone other than the party for whom it is intended, is strictly prohibited.
From: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> [mailto:vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>] On Behalf Of Greg Payne
Sent: Thursday, January 24, 2013 8:18 AM
To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>
Subject: [Vantage] RE: QA Module and E9 - 9.05.607B
Manasa:
We are currently writing the same kinds of alerts using BAMs. The one below is on RcvDtl with InspectedDate = Today and FailedQty > 0. We intent to alert the buyer, quality and team leader of the production area effected by the failure.
We are also working on one for DMR Rejections.
You will need the Global Alerts/Email Server Process running in your startup agent. You will need the ability to send emails from Epicor. If you have exchange then a receive connector set to allow anonymous relay from the Epicor server's ip address. If you have sendmail or postfix the process is similar.
There are pieces in here from other alerts for conditional CCs that I copied this from. Errors and the Messages show in the App Server log. I use a viewer, so I can keep the log open and just advance to the end or search for the DEBUG.
HTH
Greg Payne
----------------------------------------------------------
{ud/GlbAlert.i &TableName = "RcvDtl"}
ASSIGN SendEmail = FALSE.
/* format Email Text */
define variable TotQty as decimal no-undo initial 0.
define variable TotStd as decimal no-undo initial 0.
define variable CostAtStd as decimal no-undo initial 0.
define variable CostAtPO as decimal no-undo initial 0.
define variable POQty as decimal no-undo initial 0.
define variable STDVariance as decimal no-undo initial 0.
define variable STDMaterialCost as decimal no-undo initial 0.
define variable EmailAddress as Character no-undo initial '':U.
define variable UserName as Character no-undo initial '':U.
define variable vFrom as character no-undo initial '':U.
define variable vTo as character no-undo initial '':U.
define variable vCC as character no-undo initial '':U.
define variable vSubject as character no-undo initial '':U.
define variable vBody as character no-undo initial '':U.
/* You can reference any Changed data on the Table name on line 1 as OLDTablename.Fieldname */
Find UserFile where UserFile.DCDUserID = DCD-UserID no-lock no-error.
assign EMAIL-From = UserFile.EmailAddress.
Find PODetail no-lock where PODetail.company = RcvDtl.Company and PODetail.PONum = RcvDtl.PONum and PODetail.POLine = PODetail.POLine.
Find PORel no-lock where PORel.Company = RcvDtl.Company and PORel.PONum = RcvDtl.PONum and PORel.POLine = RcvDtl.POLine and PORel.PORelNum = RcvDtl.PORelNum.
Find Vendor no-lock where Vendor.company = PODetail.Company and Vendor.VendorNum = PODetail.VendorNum.
Find Part no-lock where Part.company = PODetail.Company and Part.PartNum = PODetail.PartNum.
Find PartClass no-lock where PartClass.company = PODetail.Company and PartClass.ClassID = Part.ClassID.
Find UserFile where UserFile.DCDUserID = PartClass.BuyerID no-lock no-error.
Find Reason no-lock where Reason.ReasonCode = RcvDtl.ReasonCode.
Message "DEBUG Email - PO Quantity = " + string(PODetail.XOrderQty).
Assign vBody = "Insp Failed on " + string(PODetail.PONum) + " by " + UserFile.Name +
/* "~n~n~tDMR Number " + string(DMRHead.DMRNum) + */
"~n~n~tReason Code " + RcvDtl.ReasonCode + " " + Reason.Description +
"~n~n~tVendor " + Vendor.VendorID +
"~n~n~tItem " + PODetail.PartNum + " " + PODetail.LineDesc +
"~n~n~tRelease Qty " + trim(string(PORel.ReceivedQty)) +
"~n~n~tPassed Qty " + trim(string(RcvDtl.PassedQty)) +
"~n~n~tFailed Qty " + trim(string(RcvDtl.FailedQty)) +
"~n~tPO Cost ~t" + string(PODetail.UnitCost,"$>>>,>>>,>>9.99") + "~tExtended Cost " + TRIM(string(PODetail.UnitCost * PODetail.XOrderQty,"$>>>,>>>,>>9.99")) +
"~n~n~tPurchase Order Number: " + string(PODetail.PONUM) + "~tLine Number: " + string(PODetail.POLine)+
"~n~n~tPart Number: " + PODetail.PartNum + "~tPart Class: " + Part.ClassID.
assign vTO = UserFile.EmailAddress
vCC = "info@...<mailto:info%40compulink.com>;materials@...<mailto:materials%40compulink.com>".
IF INDEX(Part.ProdCode,"OM1")<>0 then Assign vCC = vCC + ";team1mgr@...<mailto:team1mgr%40compulink.com>.".
IF INDEX(Part.ProdCode,"OM2")<>0 then Assign vCC = vCC + ";team2mgr@...<mailto:team2mgr%40compulink.com>.".
IF INDEX(Part.ProdCode,"OM3")<>0 then Assign vCC = vCC + ";team3mgr@...<mailto:team3mgr%40compulink.com>.".
/* if (CostAtPO - CostAtStd) > 50 then do:
assign vTO = vTO + ";info@...<mailto:info%40domain.com>;".
end.
*/
/* if (CostAtPO - CostAtStd) > 1000 then do:
assign vCC = vCC + "user@...<mailto:user%40domain.com>;".
end.
*/
Message "DEBUG Email - Inspected Date = " + string(RcvDtl.InspectedDate,"99/99/99").
EMAIL-To = vTO.
EMAIL-CC = vCC + EMAIL-From.
assign EMAIL-Subject = 'Part Failed Inspection: ' + PODetail.PartNum.
assign EMAIL-Text = vBody.
assign SendEmail = true.
From: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> [mailto:vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>] On Behalf Of Manasa Reddy
Sent: Wednesday, January 23, 2013 8:17 PM
To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>
Subject: [Vantage] QA Module and E9 - 9.05.607B
Some help from all of the customization gurus out there.
We want to be able to send emails to notify people of certain events that happen within the QA module.
What steps do we need to create/custom/program to have this work? We do not have global alerts set up so if we need to set up the email side that gets this going then we are starting from scratch.
We are willing to do a short conference call if that makes it easier to talk about this process.
TIA
Manasa
mreddy@...<mailto:mreddy%40mccoyglobal.com>mreddy@...<mailto:mreddy%40mccoyglobal.com>>
[Non-text portions of this message have been removed]
________________________________
CONFIDENTIALITY NOTICE
The information contained in this communication, including attachments, is privileged and confidential. It is intended only for the exclusive use of the addressee. If the reader of this message is not the intended recipient, or the employee or agent responsible for delivering it to the intended recipient, you are hereby notified that any dissemination, distribution or copying of this communication is strictly prohibited. If you have received this communication in error, please notify us at 727-578-6280 and immediately delete the communication.
"This (document/presentation) may contain technical data as defined in the International Traffic In Arms Regulations (ITAR) 22 CFR 120.10. Export of this material is restricted by the Arms Export Control Act (22 U.S.C. 2751 et seq.) and may not be exported to foreign persons without prior approval form the U.S. Department of State."
[Non-text portions of this message have been removed]
[Non-text portions of this message have been removed]
[Non-text portions of this message have been removed]
[Non-text portions of this message have been removed]