E9: Keep PO Marked as Print As New

The solution I came up with was in two parts.
I made a customization on the UI that if the user manually changed this value, it would set a UD checkbox to true.
Then I had two data directives to watch for this change.
One look to see if the PrintAs value changed from N to C and if the UD checkbox was true then the data directive would leave PrintAs alone and clear the UD checkbox.
If PrintAs when from N to C and the UD checkbox was false then that meant the Epicor changed the value and the data directive would change it back to N.

Here is the code I have for the UI

private static void POHeader_AfterFieldChange(object sender, DataColumnChangeEventArgs args)
{
// ** Argument Properties and Uses **
// args.Row("[FieldName]")
// args.Column, args.ProposedValue, args.Row
// Add Event Handler Code

switch (args.Column.ColumnName)
{
case "PrintAs":
if (args.ProposedValue.ToString() == "C")
{
if (Convert.ToBoolean(edvPOHeader.dataView[0]["Approve"]) == true)
{
MessageBox.Show("Cannot change to 'Print Order As Changed' when PO is Approved");
}
else
{
edvPOHeader.dataView[0].BeginEdit();
edvPOHeader.dataView[0]["CheckBox03"] = true;
edvPOHeader.dataView[0].EndEdit();
}
}
if (args.ProposedValue.ToString() == "N")
{
if (Convert.ToBoolean(edvPOHeader.dataView[0]["CheckBox03"].ToString()))
{
edvPOHeader.dataView[0].BeginEdit();
edvPOHeader.dataView[0]["CheckBox03"] = false;
edvPOHeader.dataView[0].EndEdit();
}
}
break;
default:
break;


}

}


The syntax for the data directives are:
DD1
Condition: the ttPOHeader.PrintAs field has been changed from 'N' to 'C'
and the POHeader.CheckBox03 field of the changed row is equal to the false expression
Action: set the POHeader.PrintAs field of the changed row to the 'N' expression

DD2
Condition: the ttPOHeader.PrintAs field has been changed from 'N' to 'C'
and the POHeader.CheckBox03 field of the changed row is equal to the true expression
Action: set the POHeader.CheckBox03 field of the changed row to the false expression





Joe Rojas | Director of Information Technology | Mats Inc
dir: 781-573-0291 | cell: 781-408-9278 | fax: 781-232-5191

addr: 37 Shuman Ave | Stoughton | Ma | 02072-3734
jrojas@... | www.matsinc.com
Ask us about our clean, green and beautiful matting and flooring

[cid:973781.png@6cb4fd3b.419f2b59]
This message is intended only for the individual named. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately by e-mail if you have received this e-mail by mistake. Please note that any views or opinions presented in this email are solely those of the author and do not necessarily represent those of the company.


From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of Steve
Sent: Friday, January 17, 2014 2:07 PM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] E9: Keep PO Marked as Print As New


Thanks for the response. I will try the same thing.

Steve

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of Greg Payne
Sent: Friday, January 17, 2014 9:14 AM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] E9: Keep PO Marked as Print As New


I added a checkbox labeled allow change. If the buyer leaves unchecked, then I have a DD that sets the print as back to new when allow change is false.

Greg

From: vantage@yahoogroups.com<mailto:vantage@yahoogroups.com> [mailto:vantage@yahoogroups.com] On Behalf Of Steve
Sent: Friday, January 17, 2014 9:09 AM
To: vantage@yahoogroups.com<mailto:vantage@yahoogroups.com>
Subject: RE: [Vantage] E9: Keep PO Marked as Print As New


Does anyone have a fix for this?

Thanks

Steve

From: vantage@yahoogroups.com<mailto:vantage@yahoogroups.com> [mailto:vantage@yahoogroups.com] On Behalf Of Joe Rojas
Sent: Tuesday, December 10, 2013 1:52 PM
To: vantage@yahoogroups.com<mailto:vantage@yahoogroups.com>
Subject: RE: [Vantage] E9: Keep PO Marked as Print As New



I’ll give that a shot.

Thanks Arul!

From: vantage@yahoogroups.com<mailto:vantage@yahoogroups.com> [mailto:vantage@yahoogroups.com] On Behalf Of Arul Shankar
Sent: Tuesday, December 10, 2013 2:44 PM
To: vantage@yahoogroups.com<mailto:vantage@yahoogroups.com>
Subject: Re: [Vantage] E9: Keep PO Marked as Print As New

Hi Joe,

It's changed by PO Print program and not BO. Try with Data Directive.

Regards,

Arul

On Wednesday, 11 December 2013 6:06 AM, Joe Rojas <jrojas@...<mailto:jrojas@...>> wrote:

Hello,

In 9.05.702, after you print a purchase orders, the "Print Options" flag
toggles to "Print Order As Changed" automatically.

We would like this to stay as "Print Order As New" unless manually
toggled.

I know that last part might be tricky but I'm having a hard time
figuring out what triggers this toggle.

All my tracing is not showing anything that changes this value.

Any idea where I can find where this is triggered?

I did a BO trace and added an AfterAdapter message box with no luck.

Joe Rojas | Director of Information Technology | Mats Inc
dir: 781-573-0291 | cell: 781-408-9278 | fax: 781-232-5191
jrojas@...<mailto:jrojas@...> | www.matsinc.com<http://www.matsinc.com> Ask us about our clean, green and beautiful matting and flooring

This message is intended only for the individual named. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately by e-mail if you have received this e-mail by mistake. Please note that any views or opinions presented in this email are solely those of the author and do not necessarily represent those of the company.

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

Joe Rojas | Director of Information Technology | Mats Inc
dir: 781-573-0291 | cell: 781-408-9278 | fax: 781-232-5191
jrojas@...<mailto:jrojas@...> | www.matsinc.com<http://www.matsinc.com> Ask us about our clean, green and beautiful matting and flooring

This message is intended only for the individual named. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately by e-mail if you have received this e-mail by mistake. Please note that any views or opinions presented in this email are solely those of the author and do not necessarily represent those of the company.

[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]
Hello,



In 9.05.702, after you print a purchase orders, the "Print Options" flag
toggles to "Print Order As Changed" automatically.

We would like this to stay as "Print Order As New" unless manually
toggled.

I know that last part might be tricky but I'm having a hard time
figuring out what triggers this toggle.

All my tracing is not showing anything that changes this value.



Any idea where I can find where this is triggered?

I did a BO trace and added an AfterAdapter message box with no luck.








Joe Rojas | Director of Information Technology | Mats Inc
dir: 781-573-0291 | cell: 781-408-9278 | fax: 781-232-5191
jrojas@... | www.matsinc.com Ask us about our clean, green and beautiful matting and flooring


This message is intended only for the individual named. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately by e-mail if you have received this e-mail by mistake. Please note that any views or opinions presented in this email are solely those of the author and do not necessarily represent those of the company.


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

It's changed by PO Print program and not BO. Try with Data Directive.

Regards,
Arul



On Wednesday, 11 December 2013 6:06 AM, Joe Rojas <jrojas@...> wrote:
 
<div id="ygrps-yiv-1638566903yiv5070513636ygrp-text">
  
  
  <div>Hello,<br clear="none">

In 9.05.702, after you print a purchase orders, the "Print Options" flag
toggles to "Print Order As Changed" automatically.

We would like this to stay as "Print Order As New" unless manually
toggled.

I know that last part might be tricky but I'm having a hard time
figuring out what triggers this toggle.

All my tracing is not showing anything that changes this value.

Any idea where I can find where this is triggered?

I did a BO trace and added an AfterAdapter message box with no luck.





Joe Rojas | Director of Information Technology | Mats Inc
dir: 781-573-0291 | cell: 781-408-9278 | fax: 781-232-5191
jrojas@... | www.matsinc.com Ask us about our clean, green and beautiful matting and flooring

This message is intended only for the individual named. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately by e-mail if you have received this e-mail by mistake. Please note that any views or opinions presented in this email are solely those of the author and do not necessarily represent those of the company.

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

</div>
 


<div style="color:#fff;height:0;"></div></div>
#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636 -- #ygrps-yiv-1638566903yiv5070513636ygrp-mkp { border:1px solid #d8d8d8;font-family:Arial;margin:10px 0;padding:0 10px;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636ygrp-mkp hr {
border:1px solid #d8d8d8;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636ygrp-mkp #ygrps-yiv-1638566903yiv5070513636hd {
color:#628c2a;font-size:85%;font-weight:700;line-height:122%;margin:10px 0;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636ygrp-mkp #ygrps-yiv-1638566903yiv5070513636ads {
margin-bottom:10px;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636ygrp-mkp .ygrps-yiv-1638566903yiv5070513636ad {
padding:0 0;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636ygrp-mkp .ygrps-yiv-1638566903yiv5070513636ad p {
margin:0;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636ygrp-mkp .ygrps-yiv-1638566903yiv5070513636ad a {
color:#0000ff;text-decoration:none;}
#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636ygrp-sponsor #ygrps-yiv-1638566903yiv5070513636ygrp-lc {
font-family:Arial;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636ygrp-sponsor #ygrps-yiv-1638566903yiv5070513636ygrp-lc #ygrps-yiv-1638566903yiv5070513636hd {
margin:10px 0px;font-weight:700;font-size:78%;line-height:122%;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636ygrp-sponsor #ygrps-yiv-1638566903yiv5070513636ygrp-lc .ygrps-yiv-1638566903yiv5070513636ad {
margin-bottom:10px;padding:0 0;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636actions {
font-family:Verdana;font-size:11px;padding:10px 0;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636activity {
background-color:#e0ecee;float:left;font-family:Verdana;font-size:10px;padding:10px;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636activity span {
font-weight:700;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636activity span:first-child {
text-transform:uppercase;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636activity span a {
color:#5085b6;text-decoration:none;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636activity span span {
color:#ff7900;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636activity span .ygrps-yiv-1638566903yiv5070513636underline {
text-decoration:underline;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 .ygrps-yiv-1638566903yiv5070513636attach {
clear:both;display:table;font-family:Arial;font-size:12px;padding:10px 0;width:400px;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 .ygrps-yiv-1638566903yiv5070513636attach div a {
text-decoration:none;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 .ygrps-yiv-1638566903yiv5070513636attach img {
border:none;padding-right:5px;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 .ygrps-yiv-1638566903yiv5070513636attach label {
display:block;margin-bottom:5px;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 .ygrps-yiv-1638566903yiv5070513636attach label a {
text-decoration:none;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 blockquote {
margin:0 0 0 4px;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 .ygrps-yiv-1638566903yiv5070513636bold {
font-family:Arial;font-size:13px;font-weight:700;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 .ygrps-yiv-1638566903yiv5070513636bold a {
text-decoration:none;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 dd.ygrps-yiv-1638566903yiv5070513636last p a {
font-family:Verdana;font-weight:700;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 dd.ygrps-yiv-1638566903yiv5070513636last p span {
margin-right:10px;font-family:Verdana;font-weight:700;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 dd.ygrps-yiv-1638566903yiv5070513636last p span.ygrps-yiv-1638566903yiv5070513636yshortcuts {
margin-right:0;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 div.ygrps-yiv-1638566903yiv5070513636attach-table div div a {
text-decoration:none;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 div.ygrps-yiv-1638566903yiv5070513636attach-table {
width:400px;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 div.ygrps-yiv-1638566903yiv5070513636file-title a, #ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 div.ygrps-yiv-1638566903yiv5070513636file-title a:active, #ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 div.ygrps-yiv-1638566903yiv5070513636file-title a:hover, #ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 div.ygrps-yiv-1638566903yiv5070513636file-title a:visited {
text-decoration:none;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 div.ygrps-yiv-1638566903yiv5070513636photo-title a, #ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 div.ygrps-yiv-1638566903yiv5070513636photo-title a:active, #ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 div.ygrps-yiv-1638566903yiv5070513636photo-title a:hover, #ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 div.ygrps-yiv-1638566903yiv5070513636photo-title a:visited {
text-decoration:none;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 div#ygrps-yiv-1638566903yiv5070513636ygrp-mlmsg #ygrps-yiv-1638566903yiv5070513636ygrp-msg p a span.ygrps-yiv-1638566903yiv5070513636yshortcuts {
font-family:Verdana;font-size:10px;font-weight:normal;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 .ygrps-yiv-1638566903yiv5070513636green {
color:#628c2a;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 .ygrps-yiv-1638566903yiv5070513636MsoNormal {
margin:0 0 0 0;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 o {
font-size:0;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636photos div {
float:left;width:72px;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636photos div div {
border:1px solid #666666;height:62px;overflow:hidden;width:62px;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636photos div label {
color:#666666;font-size:10px;overflow:hidden;text-align:center;white-space:nowrap;width:64px;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636reco-category {
font-size:77%;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636reco-desc {
font-size:77%;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 .ygrps-yiv-1638566903yiv5070513636replbq {
margin:4px;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636ygrp-actbar div a:first-child {
margin-right:2px;padding-right:5px;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636ygrp-mlmsg {
font-size:13px;font-family:Arial, helvetica, clean, sans-serif;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636ygrp-mlmsg table {
font-size:inherit;font:100%;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636ygrp-mlmsg select, #ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 input, #ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 textarea {
font:99% Arial, Helvetica, clean, sans-serif;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636ygrp-mlmsg pre, #ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 code {
font:115% monospace;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636ygrp-mlmsg * {
line-height:1.22em;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636ygrp-mlmsg #ygrps-yiv-1638566903yiv5070513636logo {
padding-bottom:10px;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636ygrp-msg p a {
font-family:Verdana;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636ygrp-msg p#ygrps-yiv-1638566903yiv5070513636attach-count span {
color:#1E66AE;font-weight:700;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636ygrp-reco #ygrps-yiv-1638566903yiv5070513636reco-head {
color:#ff7900;font-weight:700;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636ygrp-reco {
margin-bottom:20px;padding:0px;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636ygrp-sponsor #ygrps-yiv-1638566903yiv5070513636ov li a {
font-size:130%;text-decoration:none;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636ygrp-sponsor #ygrps-yiv-1638566903yiv5070513636ov li {
font-size:77%;list-style-type:square;padding:6px 0;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636ygrp-sponsor #ygrps-yiv-1638566903yiv5070513636ov ul {
margin:0;padding:0 0 0 8px;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636ygrp-text {
font-family:Georgia;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636ygrp-text p {
margin:0 0 1em 0;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636ygrp-text tt {
font-size:120%;}

#ygrps-yiv-1638566903 #ygrps-yiv-1638566903yiv5070513636 #ygrps-yiv-1638566903yiv5070513636ygrp-vital ul li:last-child {
border-right:none !important;}
#ygrps-yiv-1638566903



I’ll give that a shot.

Thanks Arul!



From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of Arul Shankar
Sent: Tuesday, December 10, 2013 2:44 PM
To: vantage@yahoogroups.com
Subject: Re: [Vantage] E9: Keep PO Marked as Print As New





Hi Joe,



It's changed by PO Print program and not BO. Try with Data Directive.



Regards,

Arul





On Wednesday, 11 December 2013 6:06 AM, Joe Rojas <jrojas@...> wrote:



Hello,

In 9.05.702, after you print a purchase orders, the "Print Options" flag
toggles to "Print Order As Changed" automatically.

We would like this to stay as "Print Order As New" unless manually
toggled.

I know that last part might be tricky but I'm having a hard time
figuring out what triggers this toggle.

All my tracing is not showing anything that changes this value.

Any idea where I can find where this is triggered?

I did a BO trace and added an AfterAdapter message box with no luck.





Joe Rojas | Director of Information Technology | Mats Inc
dir: 781-573-0291 | cell: 781-408-9278 | fax: 781-232-5191
jrojas@... | www.matsinc.com Ask us about our clean, green and beautiful matting and flooring

This message is intended only for the individual named. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately by e-mail if you have received this e-mail by mistake. Please note that any views or opinions presented in this email are solely those of the author and do not necessarily represent those of the company.

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












Joe Rojas | Director of Information Technology | Mats Inc
dir: 781-573-0291 | cell: 781-408-9278 | fax: 781-232-5191
jrojas@... | www.matsinc.com Ask us about our clean, green and beautiful matting and flooring


This message is intended only for the individual named. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately by e-mail if you have received this e-mail by mistake. Please note that any views or opinions presented in this email are solely those of the author and do not necessarily represent those of the company.


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

Does anyone have a fix for this?

 

Thanks

 

Steve

 

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of Joe Rojas
Sent: Tuesday, December 10, 2013 1:52 PM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] E9: Keep PO Marked as Print As New

 

 

I’ll give that a shot.

Thanks Arul!

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of Arul Shankar
Sent: Tuesday, December 10, 2013 2:44 PM
To: vantage@yahoogroups.com
Subject: Re: [Vantage] E9: Keep PO Marked as Print As New

Hi Joe,

It's changed by PO Print program and not BO. Try with Data Directive.

Regards,

Arul

On Wednesday, 11 December 2013 6:06 AM, Joe Rojas <jrojas@...> wrote:

Hello,

In 9.05.702, after you print a purchase orders, the "Print Options" flag
toggles to "Print Order As Changed" automatically.

We would like this to stay as "Print Order As New" unless manually
toggled.

I know that last part might be tricky but I'm having a hard time
figuring out what triggers this toggle.

All my tracing is not showing anything that changes this value.

Any idea where I can find where this is triggered?

I did a BO trace and added an AfterAdapter message box with no luck.

Joe Rojas | Director of Information Technology | Mats Inc
dir: 781-573-0291 | cell: 781-408-9278 | fax: 781-232-5191
jrojas@... | www.matsinc.com Ask us about our clean, green and beautiful matting and flooring

This message is intended only for the individual named. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately by e-mail if you have received this e-mail by mistake. Please note that any views or opinions presented in this email are solely those of the author and do not necessarily represent those of the company.

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

Joe Rojas | Director of Information Technology | Mats Inc
dir: 781-573-0291 | cell: 781-408-9278 | fax: 781-232-5191
jrojas@... | www.matsinc.com Ask us about our clean, green and beautiful matting and flooring

This message is intended only for the individual named. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately by e-mail if you have received this e-mail by mistake. Please note that any views or opinions presented in this email are solely those of the author and do not necessarily represent those of the company.

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

I added a checkbox labeled allow change. If the buyer leaves unchecked, then I have a DD that sets the print as back to new when allow change is false.

 

Greg

 

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of Steve
Sent: Friday, January 17, 2014 9:09 AM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] E9: Keep PO Marked as Print As New

 

 

Does anyone have a fix for this?

 

Thanks

 

Steve

 

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of Joe Rojas
Sent: Tuesday, December 10, 2013 1:52 PM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] E9: Keep PO Marked as Print As New

 

 

I’ll give that a shot.

Thanks Arul!

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of Arul Shankar
Sent: Tuesday, December 10, 2013 2:44 PM
To: vantage@yahoogroups.com
Subject: Re: [Vantage] E9: Keep PO Marked as Print As New

Hi Joe,

It's changed by PO Print program and not BO. Try with Data Directive.

Regards,

Arul

On Wednesday, 11 December 2013 6:06 AM, Joe Rojas <jrojas@...> wrote:

Hello,

In 9.05.702, after you print a purchase orders, the "Print Options" flag
toggles to "Print Order As Changed" automatically.

We would like this to stay as "Print Order As New" unless manually
toggled.

I know that last part might be tricky but I'm having a hard time
figuring out what triggers this toggle.

All my tracing is not showing anything that changes this value.

Any idea where I can find where this is triggered?

I did a BO trace and added an AfterAdapter message box with no luck.

Joe Rojas | Director of Information Technology | Mats Inc
dir: 781-573-0291 | cell: 781-408-9278 | fax: 781-232-5191
jrojas@... | www.matsinc.com Ask us about our clean, green and beautiful matting and flooring

This message is intended only for the individual named. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately by e-mail if you have received this e-mail by mistake. Please note that any views or opinions presented in this email are solely those of the author and do not necessarily represent those of the company.

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

Joe Rojas | Director of Information Technology | Mats Inc
dir: 781-573-0291 | cell: 781-408-9278 | fax: 781-232-5191
jrojas@... | www.matsinc.com Ask us about our clean, green and beautiful matting and flooring

This message is intended only for the individual named. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately by e-mail if you have received this e-mail by mistake. Please note that any views or opinions presented in this email are solely those of the author and do not necessarily represent those of the company.

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

Thanks for the response. I will try the same thing.

 

Steve

 

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of Greg Payne
Sent: Friday, January 17, 2014 9:14 AM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] E9: Keep PO Marked as Print As New

 

 

I added a checkbox labeled allow change. If the buyer leaves unchecked, then I have a DD that sets the print as back to new when allow change is false.

 

Greg

 

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of Steve
Sent: Friday, January 17, 2014 9:09 AM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] E9: Keep PO Marked as Print As New

 

 

Does anyone have a fix for this?

 

Thanks

 

Steve

 

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of Joe Rojas
Sent: Tuesday, December 10, 2013 1:52 PM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] E9: Keep PO Marked as Print As New

 

 

I’ll give that a shot.

Thanks Arul!

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of Arul Shankar
Sent: Tuesday, December 10, 2013 2:44 PM
To: vantage@yahoogroups.com
Subject: Re: [Vantage] E9: Keep PO Marked as Print As New

Hi Joe,

It's changed by PO Print program and not BO. Try with Data Directive.

Regards,

Arul

On Wednesday, 11 December 2013 6:06 AM, Joe Rojas <jrojas@...> wrote:

Hello,

In 9.05.702, after you print a purchase orders, the "Print Options" flag
toggles to "Print Order As Changed" automatically.

We would like this to stay as "Print Order As New" unless manually
toggled.

I know that last part might be tricky but I'm having a hard time
figuring out what triggers this toggle.

All my tracing is not showing anything that changes this value.

Any idea where I can find where this is triggered?

I did a BO trace and added an AfterAdapter message box with no luck.

Joe Rojas | Director of Information Technology | Mats Inc
dir: 781-573-0291 | cell: 781-408-9278 | fax: 781-232-5191
jrojas@... | www.matsinc.com Ask us about our clean, green and beautiful matting and flooring

This message is intended only for the individual named. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately by e-mail if you have received this e-mail by mistake. Please note that any views or opinions presented in this email are solely those of the author and do not necessarily represent those of the company.

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

Joe Rojas | Director of Information Technology | Mats Inc
dir: 781-573-0291 | cell: 781-408-9278 | fax: 781-232-5191
jrojas@... | www.matsinc.com Ask us about our clean, green and beautiful matting and flooring

This message is intended only for the individual named. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately by e-mail if you have received this e-mail by mistake. Please note that any views or opinions presented in this email are solely those of the author and do not necessarily represent those of the company.

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