Need some advice/coding help..Vantage 8.03

Mike:

 

paste this code in Receipt.Update no condition, execute ABL code. It is pretty close to what Rob sent, but already has Part table. you should only have to change the checkbox.

 

the disable triggers and using the then next instead of conditions in the for each are things I got from a consultant that speeds up bpm execution.

 

Greg

 

 

/* limited life message */

 

Message " DEBUG in limited life message ".

 

 

 

Disable triggers for load of Part.

 

For each ttRcvDtl where ttRcvDtl.Company = cur-comp,

                                Each Part where ttRcvDtl.PartNum = Part.PartNum and Part.Company = cur-comp.

 

                If (Part.CheckBox01 = false ) then next.

 

                                Message " DEBUG  In the limited life message" + string(ttRcvDtl.PONum).

 

                                If (Part.CheckBox01 = true) Then Do:

                                                                define variable InfoMsg as character init ''.

 

                                                                InfoMsg = "Item " + part.Partnum + " has limited life ~n".

 

                                                {lib/PublishInfoMsg.i &InfoMsg = InfoMsg}.

                                End.

                               

 

End.

 

 

 

 

 

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com]
Sent: Friday, May 08, 2015 10:21 AM
To: 'vantage@yahoogroups.com'
Subject: [Vantage] RE: Need some advice/coding help..Vantage 8.03

 

 

Swap out the part table for the PO table and match on partnum.... This is on Receipt.Update

/* Execute Code Below: Material Certs are Required */
For Each ttRcvDtl Where ttRcvDtl.RowMod = 'A' and ttRcvDtl.ReceivedComplete = True no-Lock.
Find First PoDetail Where ttRcvDtl.Company = PoDetail.Company and ttRcvDtl.VendorNum = PoDetail.VendorNum and ttRcvDtl.PONum = PoDetail.PONUM no-Lock.
If PoDetail.CheckBox02 = True Then Do:
{lib/PublishInfoMsg.i &InfoMsg = "'Material Certs are Required on this part.'"}
End.
End.

Rob Bucek
Production Control Manager
PH: (715) 284-5376 ext 311
Mobile: (715)896-3119
FAX: (715)284-4084
[cid:1.234354861@...]<http://www.dsmfg.com/>
(Click the logo to view our site)<http://www.dsmfg.com/>

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com]
Sent: Friday, May 08, 2015 9:03 AM
To: vantage@yahoogroups.com
Subject: [Vantage] Need some advice/coding help..Vantage 8.03

All, I have a custom checkbox setup in the part master table which is used to identify if a part is a "limited life" material or not. When we receive parts in, I'd like for Vantage to check that field and flag our receiving part with a pop-up message or something similar that simply states that the part is "limited life". Can anyone give me an example or recommendation on how easiest to accomplish this?

Mike Abell
Information Technology Manager
Flexial - BOA Group - Cookeville, Tennessee
Office: 931.432.8408
Mobile: 615.418.3055
email: MAbell@...<mailto:MAbell@...>

[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."

All, I have a custom checkbox setup in the part master table which is used to identify if a part is a “limited life” material or not.  When we receive parts in, I’d like for Vantage to check that field and flag our receiving part with a pop-up message or something similar that simply states that the part is “limited life”.  Can anyone give me an example or recommendation on how easiest to accomplish this? 

 

Mike Abell

Information Technology Manager
Flexial - BOA Group - Cookeville, Tennessee
Office:   931.432.8408
Mobile:  615.418.3055
 
email:  MAbell@...

 

Swap out the part table for the PO table and match on partnum.... This is on Receipt.Update

/* Execute Code Below: Material Certs are Required */
For Each ttRcvDtl Where ttRcvDtl.RowMod = 'A' and ttRcvDtl.ReceivedComplete = True no-Lock.
Find First PoDetail Where ttRcvDtl.Company = PoDetail.Company and ttRcvDtl.VendorNum = PoDetail.VendorNum and ttRcvDtl.PONum = PoDetail.PONUM no-Lock.
If PoDetail.CheckBox02 = True Then Do:
{lib/PublishInfoMsg.i &InfoMsg = "'Material Certs are Required on this part.'"}
End.
End.

Rob Bucek
Production Control Manager
PH: (715) 284-5376 ext 311
Mobile: (715)896-3119
FAX: (715)284-4084
[cid:1.234354861@...]<http://www.dsmfg.com/>
(Click the logo to view our site)<http://www.dsmfg.com/>

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com]
Sent: Friday, May 08, 2015 9:03 AM
To: vantage@yahoogroups.com
Subject: [Vantage] Need some advice/coding help..Vantage 8.03


All, I have a custom checkbox setup in the part master table which is used to identify if a part is a "limited life" material or not. When we receive parts in, I'd like for Vantage to check that field and flag our receiving part with a pop-up message or something similar that simply states that the part is "limited life". Can anyone give me an example or recommendation on how easiest to accomplish this?

Mike Abell
Information Technology Manager
Flexial - BOA Group - Cookeville, Tennessee
Office: 931.432.8408
Mobile: 615.418.3055
email: MAbell@...<mailto:MAbell@...>




[Non-text portions of this message have been removed]
Create a BPM to handle when the receipt process occurs that checks the value of the part's "limited life" checkbox. If it is checked then do something else.

From: "Mike Abell mabell@... [vantage]" <vantage@yahoogroups.com>
To: "vantage@yahoogroups.com" <vantage@yahoogroups.com>
Sent: Friday, May 8, 2015 10:03 AM
Subject: [Vantage] Need some advice/coding help..Vantage 8.03



All, I have a custom checkbox setup in the part master table which is used to identify if a part is a “limited life” material or not.  When we receive parts in, I’d like for Vantage to check that field and flag our receiving part with a pop-up message or something similar that simply states that the part is “limited life”.  Can anyone give me an example or recommendation on how easiest to accomplish this? 
 
Mike Abell
Information Technology Manager
Flexial - BOA Group - Cookeville, Tennessee
Office:   931.432.8408
Mobile:  615.418.3055
 
email:  MAbell@...
 




Rob, thanks so much….

 

Mike Abell

Information Technology Manager
Flexial - BOA Group - Cookeville, Tennessee
Office:   931.432.8408
Mobile:  615.418.3055
 
email:  MAbell@...

 

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com]
Sent: Friday, May 08, 2015 9:21 AM
To: 'vantage@yahoogroups.com'
Subject: [Vantage] RE: Need some advice/coding help..Vantage 8.03

 

 

Swap out the part table for the PO table and match on partnum.... This is on Receipt.Update

/* Execute Code Below: Material Certs are Required */
For Each ttRcvDtl Where ttRcvDtl.RowMod = 'A' and ttRcvDtl.ReceivedComplete = True no-Lock.
Find First PoDetail Where ttRcvDtl.Company = PoDetail.Company and ttRcvDtl.VendorNum = PoDetail.VendorNum and ttRcvDtl.PONum = PoDetail.PONUM no-Lock.
If PoDetail.CheckBox02 = True Then Do:
{lib/PublishInfoMsg.i &InfoMsg = "'Material Certs are Required on this part.'"}
End.
End.

Rob Bucek
Production Control Manager
PH: (715) 284-5376 ext 311
Mobile: (715)896-3119
FAX: (715)284-4084
[cid:1.234354861@...]<http://www.dsmfg.com/>
(Click the logo to view our site)<http://www.dsmfg.com/>

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com]
Sent: Friday, May 08, 2015 9:03 AM
To: vantage@yahoogroups.com
Subject: [Vantage] Need some advice/coding help..Vantage 8.03

All, I have a custom checkbox setup in the part master table which is used to identify if a part is a "limited life" material or not. When we receive parts in, I'd like for Vantage to check that field and flag our receiving part with a pop-up message or something similar that simply states that the part is "limited life". Can anyone give me an example or recommendation on how easiest to accomplish this?

Mike Abell
Information Technology Manager
Flexial - BOA Group - Cookeville, Tennessee
Office: 931.432.8408
Mobile: 615.418.3055
email: MAbell@...<mailto:MAbell@...>

[Non-text portions of this message have been removed]

Ted, this seems the simplest route…How can I tell what gets fired when we receive the part in?

 

Mike Abell

Information Technology Manager
Flexial - BOA Group - Cookeville, Tennessee
Office:   931.432.8408
Mobile:  615.418.3055
 
email:  MAbell@...

 

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com]
Sent: Friday, May 08, 2015 9:22 AM
To: vantage@yahoogroups.com
Subject: Re: [Vantage] Need some advice/coding help..Vantage 8.03

 

 

Create a BPM to handle when the receipt process occurs that checks the value of the part's "limited life" checkbox. If it is checked then do something else.


From: "Mike Abell mabell@... [vantage]" <vantage@yahoogroups.com>
To: "vantage@yahoogroups.com" <vantage@yahoogroups.com>
Sent: Friday, May 8, 2015 10:03 AM
Subject: [Vantage] Need some advice/coding help..Vantage 8.03

 

 

All, I have a custom checkbox setup in the part master table which is used to identify if a part is a “limited life” material or not.  When we receive parts in, I’d like for Vantage to check that field and flag our receiving part with a pop-up message or something similar that simply states that the part is “limited life”.  Can anyone give me an example or recommendation on how easiest to accomplish this? 

 

Mike Abell

Information Technology Manager
Flexial - BOA Group - Cookeville, Tennessee
Office:   931.432.8408
Mobile:  615.418.3055
 
email:  MAbell@...

 

 

 

Run a trace during the receipt process. to see which BO method is triggered.


From: "Mike Abell mabell@... [vantage]" <vantage@yahoogroups.com>
To: "vantage@yahoogroups.com" <vantage@yahoogroups.com>
Sent: Friday, May 8, 2015 10:35 AM
Subject: RE: [Vantage] Need some advice/coding help..Vantage 8.03

#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 #ygrps-yiv-991512119yiv7334641610 --

#ygrps-yiv-991512119yiv7334641610 .ygrps-yiv-991512119yiv7334641610ygrp-photo-title{
clear:both;font-size:smaller;height:15px;overflow:hidden;text-align:center;width:75px;}
#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 div.ygrps-yiv-991512119yiv7334641610ygrp-photo{
background-position:center;background-repeat:no-repeat;background-color:white;border:1px solid black;height:62px;width:62px;}

#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 div.ygrps-yiv-991512119yiv7334641610photo-title
a,
#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 div.ygrps-yiv-991512119yiv7334641610photo-title a:active,
#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 div.ygrps-yiv-991512119yiv7334641610photo-title a:hover,
#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 div.ygrps-yiv-991512119yiv7334641610photo-title a:visited {
text-decoration:none;}

#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 div.ygrps-yiv-991512119yiv7334641610attach-table div.ygrps-yiv-991512119yiv7334641610attach-row {
clear:both;}

#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 div.ygrps-yiv-991512119yiv7334641610attach-table div.ygrps-yiv-991512119yiv7334641610attach-row div {
float:left;}

#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 p {
clear:both;padding:15px 0 3px 0;overflow:hidden;}

#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 div.ygrps-yiv-991512119yiv7334641610ygrp-file {
width:30px;}
#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 div.ygrps-yiv-991512119yiv7334641610attach-table div.ygrps-yiv-991512119yiv7334641610attach-row div div a {
text-decoration:none;}

#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 div.ygrps-yiv-991512119yiv7334641610attach-table div.ygrps-yiv-991512119yiv7334641610attach-row div div span {
font-weight:normal;}

#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 div.ygrps-yiv-991512119yiv7334641610ygrp-file-title {
font-weight:bold;}
#ygrps-yiv-991512119 #ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 #ygrps-yiv-991512119yiv7334641610

filtered #ygrps-yiv-991512119yiv7334641610 {font-family:Helvetica;panose-1:2 11 6 4 2 2 2 2 2 4;}
#ygrps-yiv-991512119 filtered #ygrps-yiv-991512119yiv7334641610 {font-family:Wingdings;panose-1:5 0 0 0 0 0 0 0 0 0;}
#ygrps-yiv-991512119 filtered #ygrps-yiv-991512119yiv7334641610 {panose-1:2 4 5 3 5 4 6 3 2 4;}
#ygrps-yiv-991512119 filtered #ygrps-yiv-991512119yiv7334641610 {font-family:Calibri;panose-1:2 15 5 2 2 2 4 3 2 4;}
#ygrps-yiv-991512119 filtered #ygrps-yiv-991512119yiv7334641610 {font-family:Consolas;panose-1:2 11 6 9 2 2 4 3 2 4;}
#ygrps-yiv-991512119 filtered #ygrps-yiv-991512119yiv7334641610 {font-family:Verdana;panose-1:2 11 6 4 3 5 4 4 2 4;}
#ygrps-yiv-991512119 filtered #ygrps-yiv-991512119yiv7334641610 {font-family:Signature;}
#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610
#ygrps-yiv-991512119yiv7334641610 p.ygrps-yiv-991512119yiv7334641610MsoNormal, #ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 li.ygrps-yiv-991512119yiv7334641610MsoNormal, #ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 div.ygrps-yiv-991512119yiv7334641610MsoNormal
{margin:0in;margin-bottom:.0001pt;font-size:12.0pt;}
#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 a:link, #ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 span.ygrps-yiv-991512119yiv7334641610MsoHyperlink
{color:blue;text-decoration:underline;}
#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 a:visited, #ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 span.ygrps-yiv-991512119yiv7334641610MsoHyperlinkFollowed
{color:purple;text-decoration:underline;}
#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 p
{margin-right:0in;margin-left:0in;font-size:12.0pt;}
#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 code
{}
#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 pre
{margin:0in;margin-bottom:.0001pt;font-size:10.0pt;}
#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 tt
{}
#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 span.ygrps-yiv-991512119yiv7334641610cat
{}
#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 span.ygrps-yiv-991512119yiv7334641610ct
{}
#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 span.ygrps-yiv-991512119yiv7334641610HTMLPreformattedChar
{font-family:Consolas;}
#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 p.ygrps-yiv-991512119yiv7334641610attach, #ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 li.ygrps-yiv-991512119yiv7334641610attach, #ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 div.ygrps-yiv-991512119yiv7334641610attach
{margin-right:0in;margin-left:0in;font-size:9.0pt;}
#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 p.ygrps-yiv-991512119yiv7334641610bold, #ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 li.ygrps-yiv-991512119yiv7334641610bold, #ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 div.ygrps-yiv-991512119yiv7334641610bold
{margin-right:0in;margin-left:0in;font-size:10.0pt;font-weight:bold;}
#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 p.ygrps-yiv-991512119yiv7334641610green, #ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 li.ygrps-yiv-991512119yiv7334641610green, #ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 div.ygrps-yiv-991512119yiv7334641610green
{margin-right:0in;margin-left:0in;font-size:12.0pt;color:#628C2A;}
#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 p.ygrps-yiv-991512119yiv7334641610replbq, #ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 li.ygrps-yiv-991512119yiv7334641610replbq, #ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 div.ygrps-yiv-991512119yiv7334641610replbq
{margin:3.0pt;font-size:12.0pt;}
#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 p.ygrps-yiv-991512119yiv7334641610ad, #ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 li.ygrps-yiv-991512119yiv7334641610ad, #ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 div.ygrps-yiv-991512119yiv7334641610ad
{margin-right:0in;margin-left:0in;font-size:12.0pt;}
#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 p.ygrps-yiv-991512119yiv7334641610underline, #ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 li.ygrps-yiv-991512119yiv7334641610underline, #ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 div.ygrps-yiv-991512119yiv7334641610underline
{margin-right:0in;margin-left:0in;font-size:12.0pt;}
#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 span.ygrps-yiv-991512119yiv7334641610yshortcuts
{}
#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 p.ygrps-yiv-991512119yiv7334641610ad1, #ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 li.ygrps-yiv-991512119yiv7334641610ad1, #ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 div.ygrps-yiv-991512119yiv7334641610ad1
{margin-right:0in;margin-left:0in;font-size:12.0pt;}
#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 p.ygrps-yiv-991512119yiv7334641610ad2, #ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 li.ygrps-yiv-991512119yiv7334641610ad2, #ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 div.ygrps-yiv-991512119yiv7334641610ad2
{margin-right:0in;margin-bottom:7.5pt;margin-left:0in;font-size:12.0pt;}
#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 p.ygrps-yiv-991512119yiv7334641610underline1, #ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 li.ygrps-yiv-991512119yiv7334641610underline1, #ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 div.ygrps-yiv-991512119yiv7334641610underline1
{margin-right:0in;margin-left:0in;font-size:12.0pt;text-decoration:underline;}
#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 span.ygrps-yiv-991512119yiv7334641610yshortcuts1
{font-weight:bold;}
#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 span.ygrps-yiv-991512119yiv7334641610yshortcuts2
{font-weight:normal;}
#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 span.ygrps-yiv-991512119yiv7334641610EmailStyle36
{color:#1F497D;}
#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 .ygrps-yiv-991512119yiv7334641610MsoChpDefault
{font-size:10.0pt;}
#ygrps-yiv-991512119 filtered #ygrps-yiv-991512119yiv7334641610 {margin:1.0in 1.0in 1.0in 1.0in;}
#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 div.ygrps-yiv-991512119yiv7334641610WordSection1
{}
#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610
filtered #ygrps-yiv-991512119yiv7334641610 {}
#ygrps-yiv-991512119 filtered #ygrps-yiv-991512119yiv7334641610 {font-family:Symbol;}
#ygrps-yiv-991512119 filtered #ygrps-yiv-991512119yiv7334641610 {}
#ygrps-yiv-991512119 filtered #ygrps-yiv-991512119yiv7334641610 {font-family:Wingdings;}
#ygrps-yiv-991512119 filtered #ygrps-yiv-991512119yiv7334641610 {font-family:Wingdings;}
#ygrps-yiv-991512119 filtered #ygrps-yiv-991512119yiv7334641610 {font-family:Wingdings;}
#ygrps-yiv-991512119 filtered #ygrps-yiv-991512119yiv7334641610 {font-family:Wingdings;}
#ygrps-yiv-991512119 filtered #ygrps-yiv-991512119yiv7334641610 {font-family:Wingdings;}
#ygrps-yiv-991512119 filtered #ygrps-yiv-991512119yiv7334641610 {font-family:Wingdings;}
#ygrps-yiv-991512119 filtered #ygrps-yiv-991512119yiv7334641610 {font-family:Wingdings;}
#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 ol
{margin-bottom:0in;}
#ygrps-yiv-991512119 #ygrps-yiv-991512119yiv7334641610 ul
{margin-bottom:0in;}
#ygrps-yiv-991512119



Ted, this seems the simplest route…How can I tell what gets fired when we receive the part in?
 
Mike Abell
Information Technology Manager
Flexial - BOA Group - Cookeville, Tennessee
Office:   931.432.8408
Mobile:  615.418.3055
 
email:  MAbell@...
 


From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com]
Sent: Friday, May 08, 2015 9:22 AM
To: vantage@yahoogroups.com
Subject: Re: [Vantage] Need some advice/coding help..Vantage 8.03
 
 
Create a BPM to handle when the receipt process occurs that checks the value of the part's "limited life" checkbox. If it is checked then do something else.

From: "Mike Abell mabell@... [vantage]" <vantage@yahoogroups.com>
To: "vantage@yahoogroups.com" <vantage@yahoogroups.com>
Sent: Friday, May 8, 2015 10:03 AM
Subject: [Vantage] Need some advice/coding help..Vantage 8.03
 
 
All, I have a custom checkbox setup in the part master table which is used to identify if a part is a “limited life” material or not.  When we receive parts in, I’d like for Vantage to check that field and flag our receiving part with a pop-up message or something similar that simply states that the part is “limited life”.  Can anyone give me an example or recommendation on how easiest to accomplish this? 
 
Mike Abell
Information Technology Manager
Flexial - BOA Group - Cookeville, Tennessee
Office:   931.432.8408
Mobile:  615.418.3055
 
email:  MAbell@...