There is a method that you need to put a BPM on
Quote -> Create Order
*
*
SalesOrder -> Create Order From Quote
On SalesOrder upate the code should be on Pre-Processing
*
*
*Jose C Gomez*
Software Engineer
*
*
*checkout my new blog <http://www.usdoingstuff.com> *
*
*T: 904.469.1524 mobile
E: jose@...
http://www.josecgomez.com
<http://www.linkedin.com/in/josecgomez> <http://www.facebook.com/josegomez>
<http://www.google.com/profiles/jose.gomez> <http://www.twitter.com/joc85>
<http://www.josecgomez.com/professional-resume/>
<http://www.josecgomez.com/feed/>
<http://www.usdoingstuff.com>
*Quis custodiet ipsos custodes?*
Quote -> Create Order
*
*
SalesOrder -> Create Order From Quote
On SalesOrder upate the code should be on Pre-Processing
*
*
*Jose C Gomez*
Software Engineer
*
*
*checkout my new blog <http://www.usdoingstuff.com> *
*
*T: 904.469.1524 mobile
E: jose@...
http://www.josecgomez.com
<http://www.linkedin.com/in/josecgomez> <http://www.facebook.com/josegomez>
<http://www.google.com/profiles/jose.gomez> <http://www.twitter.com/joc85>
<http://www.josecgomez.com/professional-resume/>
<http://www.josecgomez.com/feed/>
<http://www.usdoingstuff.com>
*Quis custodiet ipsos custodes?*
On Tue, Jul 19, 2011 at 3:50 AM, Chris Thompson <chriselectrix@...>wrote:
> **
>
>
> Ok, I think i have found where it is going wrong but I have no idea how to
> correct the problem.
>
> It only seems to not work when I re-load an order which has been created by
>
> winning a quote.
>
> If I create a quote and add a part where Part.Checkbox01 = True,
> QuoteDtl.Checkbox01 = True which is correct and the part number field
> changes
> colour based on a row rule (where if QuoteDtl.Checkbox01= True then....).
>
> If I save the quote, close the screen, re-open the screen and re-open the
> quote,
> the tick box still remains.
>
> Likewise, if I create an order and add a part where Part.Checkbox01 = True,
> then
> OrderDtl.Checkbox01 is populated with a tick, and the part number field
> changes
> colour based on my row rule.
>
> If I save the order, close the order entry screen, re-open the screen and
> re-load the order, the tick box will still be populated.
>
> HOWEVER - If I create a quote (with a part where Checkbox01 = True), then
> create
> an order in the quote screen by winning the task and choosing create order,
> when
> I load the newly created order in the order entry screen, the tick box for
> the
> part isn't populated (which is right - I know I need another BPM but I
> can't
> work out what I need to use and where I need to use it).
>
> If I then make a change to the newly created order and save the order, the
> SalesOrder.Update is called (which is exactly the same code as below). This
> acts
> as a double check so it checks the parts on the order -vs- the parts where
> checkbox01 = true. If it finds a part on the order, it put a tick in the
> appropriate checkbox and changes the row colour accordingly.
>
> However, when you close the order entry screen and re-open it loading the
> order
> above, the OrderDtl.Checkbox01 that was populated is now empty (False) and
> the
> row is not coloured. This is incorrect.
>
> ________________________________
> From: Chris Thompson <chriselectrix@...>
> To: vantage@yahoogroups.com
>
> Sent: Tue, 19 July, 2011 8:08:56
> Subject: Re: [Vantage] How to display Part.Checkbox01 on Order/Quote Entry
> screen
>
>
> Yes I have another BPM/directive that was written by Epicor.
>
> There is nothing in there that I can see that would cause it to revert.
>
> It only works whilst you have that order loaded. As soon as you close the
> order
> screen and go back in, it goes.
>
> It's nothing to do with the temp tables is it?
>
> ________________________________
> From: Jose Gomez <jose@...>
> To: vantage@yahoogroups.com
> Sent: Mon, 18 July, 2011 15:46:31
> Subject: Re: [Vantage] How to display Part.Checkbox01 on Order/Quote Entry
> screen
>
> That doesn't make sense if it works once it works for ever, do you have a
> data directive or other BPM's on that method"?
>
> *Jose C Gomez*
> *Software Engineer*
> *
> *
> *
> *
>
> On Mon, Jul 18, 2011 at 8:45 AM, Chris Thompson <chriselectrix@...
> >wrote:
>
> > **
> >
> >
> > Actually I have this code - dont know where I got the other code from ...
> >
> >
> > FOR EACH ttOrderDtl:
> > FIND FIRST PART WHERE Part.PartNum = ttOrderDtl.PartNum
> > NO-ERROR.
> > IF AVAILABLE Part THEN DO:
> > Assign ttOrderDtl.Checkbox01=Part.Checkbox01.
> > END.
> > END.
> >
> > So are you saying I should try this? ...
> >
> > FOR EACH ttOrderDtl:
> > FIND FIRST PART WHERE Part.Company = ttOrderDtl.Company AND Part.PartNum
> =
> > ttOrderDtl.PartNum
> > NO-ERROR.
> > IF AVAILABLE Part THEN DO:
> > Assign ttOrderDtl.Checkbox01=Part.Checkbox01.
> > END.
> > END.
> >
> > Why would it only work temporarily and then when you go back into the
> > screen/order the checkbox01 is no long populated?
> >
> > ________________________________
> > From: Kevin Simon <simstrak@...>
> > To: vantage@yahoogroups.com
> > Sent: Mon, 18 July, 2011 13:34:12
> > Subject: RE: [Vantage] How to display Part.Checkbox01 on Order/Quote
> Entry
> > screen
> >
> >
> > Chris,
> >
> > You are not setting CheckBox01 in the code, you are only setting
> > Character01.
> >
> > Also, you should always include the company on your FIND statements:
> >
> > FIND FIRST PART WHERE Part.Company = ttOrderDtl.Company AND �
> >
> > HTH,
> >
> > Kevin Simon
> >
> > From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf
> > Of
> > Chris Thompson
> > Sent: Monday, July 18, 2011 5:56 AM
> > To: vantage@yahoogroups.com; jose@...
> > Subject: Re: [Vantage] How to display Part.Checkbox01 on Order/Quote
> Entry
> > screen
> >
> > Hi Jose
> >
> > I have noticed an issue with my BPM and hopefully you will be able to
> help.
> >
> > Im using this code on SalesOrder.Update
> >
> > FOR EACH ttOrderDtl:
> > FIND FIRST PART WHERE Part.PartNum = ttOrderDtl.PartNum
> > NO-ERROR.
> > IF AVAILABLE Part THEN DO:
> > Assign ttOrderDtl.Character1=Part.Character01.
> > END.
> > END.
> >
> > The purpose of this code it just to double check that Part.CheckBox01 is
> > assigned correctly to OrderDtl.Checkbox01 when the order is saved.
> >
> > It works sometimes, however, when you close the order screen and go back
> > into
> > it, the OrderDtl.Checkbox01 is set to false when it was previously set to
> > true.
> >
> > It doesnt seem to be saving the OrderDtl.Checkbox01 state. It only seems
> to
> > be
> > temporarily holding this information whilst the screen is open.
> >
> > Any suggestions would be greatly appreciated.
> >
> > Thanks.
> >
> > ________________________________
> > From: Jose Gomez <jose@... <mailto:jose%40josecgomez.com> >
> > To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
> > Sent: Thu, 30 June, 2011 14:26:29
> > Subject: Re: [Vantage] How to display Part.Checkbox01 on Order/Quote
> Entry
> > screen
> >
> > In post processing you have the OrderNumber available as a data set so
> > using
> > similar code as before (this code must be run in post processing.
> >
> > FOR EACH OrderDtl where OrderDtl.OrderNum=orderNum: (this orderNum should
> > be
> > an available parameter)
> > FIND FIRST Part where Part.PartNum=OrderDtl.PartNum No-ERROR.
> > IF AVAILABLE PART THEN DO:
> > ASSIGN OrderDtl.CheckBox01 = Part.CheckBox01.
> > END.
> > END.
> >
> > *Jose C Gomez*
> > *Software Engineer*
> > *
> > *
> > *checkout my new blog <http://www.usdoingstuff.com> *
> > *
> > *T: 904.469.1524 mobile
> > E: jose@... <mailto:jose%40josecgomez.com>
> > http://www.josecgomez.com
> > <http://www.linkedin.com/in/josecgomez> <
> http://www.facebook.com/josegomez
> > >
> > <http://www.google.com/profiles/jose.gomez> <
> http://www.twitter.com/joc85>
> > <http://www.josecgomez.com/professional-resume/>
> > <http://www.josecgomez.com/feed/>
> > <http://www.usdoingstuff.com>
> >
> > *Quis custodiet ipsos custodes?*
> >
> > On Thu, Jun 30, 2011 at 7:06 AM, Jose Gomez <jose@...
> > <mailto:jose%40josecgomez.com> > wrote:
> >
> > > tt = temp table
> > >
> > > Sent from mobile
> > > On Jun 30, 2011 6:37 AM, "Chris Thompson" <chriselectrix@...
> > ><mailto:chriselectrix%40ymail.com> > wrote:
> > > > Hi
> > > >
> > > > I am getting closer.
> > > >
> > > > I now have it so if you are on Quote entry or Order Entry and type in
> a
> > > part
> > > > that has Part.Checkbox01 = True, then it will in turn populate
> > > > QuoteDtl.Checkbox01 or OrderDtl.Checkbox01 to suit.
> > > >
> > > > My difficulty now is if I change quote into an order (by ticking
> create
> > > order
> > > > from the task list).
> > > >
> > > > I have found Quote.CreateOrder BO which is where I believe I should
> be
> > > doing the
> > > > code for this.
> > > >
> > > > The code needs to somehow locate the new order that has been created
> by
> > > ticking
> > > > create order then copy then populate the OrderDtl.Checkbox01 with the
> > > > appropriate true/false.
> > > >
> > > > This can either be done by pushing it from QuoteDtl.Checkbox01 or the
> > > simpler
> > > > way (possibly) would be to check against Part.Checkbox01 again and
> > > populate the
> > > > checkbox that way.
> > > >
> > > > How do I do this?
> > > >
> > > > Also out of interest, what does tt mean before table names?
> > > >
> > > >
> > > >
> > > > ________________________________
> > > > From: Jose Gomez <jose@... <mailto:jose%40josecgomez.com>
> >
> > > > To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
> > > > Sent: Wed, 29 June, 2011 17:11:34
> > > > Subject: Re: [Vantage] How to display Part.Checkbox01 on Order/Quote
> > > Entry
> > > > screen
> > > >
> > > > Depending on what data set you have available I am not sure look and
> > see
> > > > what data sets you ahve available on that method. Shoyld be at the
> top
> > of
> > > > the code window.
> > > >
> > > > *Jose C Gomez*
> > > > *Software Engineer*
> > > > *
> > > > *
> > > > *checkout my new blog <http://www.usdoingstuff.com> *
> > > > *
> > > > *T: 904.469.1524 mobile
> > > > E: jose@... <mailto:jose%40josecgomez.com>
> > > > http://www.josecgomez.com
> > > > <http://www.linkedin.com/in/josecgomez> <
> > > http://www.facebook.com/josegomez>
> > > > <http://www.google.com/profiles/jose.gomez> <
> > > http://www.twitter.com/joc85>
> > > > <http://www.josecgomez.com/professional-resume/>
> > > > <http://www.josecgomez.com/feed/>
> > > > <http://www.usdoingstuff.com>
> > > >
> > > > *Quis custodiet ipsos custodes?*
> > > >
> > > >
> > > >
> > > > On Wed, Jun 29, 2011 at 11:41 AM, Chris Thompson <
> > > chriselectrix@... <mailto:chriselectrix%40ymail.com> >wrote:
> > > >
> > > >> **
> > > >>
> > > >>
> > > >> Do you know if I would need to change anything to get it to work for
> > > Quote
> > > >> >
> > > >> Order?
> > > >>
> > > >> ________________________________
> > > >> From: Jose Gomez <jose@... <mailto:jose%40josecgomez.com
> >
> > >
> > > >> To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
> > > >> Sent: Wed, 29 June, 2011 16:16:41
> > > >>
> > > >> Subject: Re: [Vantage] How to display Part.Checkbox01 on Order/Quote
> > > Entry
> > > >> screen
> > > >>
> > > >> There is a method for turning Quote into an order hook on that the
> > same
> > > >> way.
> > > >> It should be fine with what you did. I forgot about that method.
> > > >>
> > > >> *Jose C Gomez*
> > > >> *Software Engineer*
> > > >> *
> > > >> *
> > > >> *checkout my new blog <http://www.usdoingstuff.com> *
> > > >> *
> > > >> *T: 904.469.1524 mobile
> > > >> E: jose@... <mailto:jose%40josecgomez.com>
> > > >> http://www.josecgomez.com
> > > >> <http://www.linkedin.com/in/josecgomez> <
> > > http://www.facebook.com/josegomez
> > > >> >
> > > >> <http://www.google.com/profiles/jose.gomez> <
> > > >> http://www.twitter.com/joc85>
> > > >> <http://www.josecgomez.com/professional-resume/>
> > > >> <http://www.josecgomez.com/feed/>
> > > >> <http://www.usdoingstuff.com>
> > > >>
> > > >> *Quis custodiet ipsos custodes?*
> > > >>
> > > >> On Wed, Jun 29, 2011 at 11:13 AM, Chris Thompson <
> > > chriselectrix@... <mailto:chriselectrix%40ymail.com>
> > > >> >wrote:
> > > >>
> > > >> > **
> > > >> >
> > > >> >
> > > >> > I have it working now. I am using it on SalesOrder.ChangePartNum.
> > > >> >
> > > >> > Will it be sufficient here or will it need to go elsewhere?
> > > >> >
> > > >> > What happens if a quote is turned into an order?
> > > >> >
> > > >> >
> > > >> > ________________________________
> > > >> > From: Jose Gomez <jose@... <mailto:
> jose%40josecgomez.com>
> > >
> > > >> > To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
> > > >> > Sent: Wed, 29 June, 2011 15:42:06
> > > >> >
> > > >> > Subject: Re: [Vantage] How to display Part.Checkbox01 on
> Order/Quote
> > > >> Entry
> > > >> > screen
> > > >> >
> > > >> > You may or may not have a ttOrderDtl available on post processing
> > > GetNew
> > > >> so
> > > >> > try and run a few info messags as i suggested to make sure you do
> > have
> > > it
> > > >> >
> > > >> > Add
> > > >> > {lib\PublishInfoMsg.i &InfoMsg = "'TTORderLineNum ' +
> > > >> > STRING(ttOrderDtl.OrderLine) "}.
> > > >> >
> > > >> > *Jose C Gomez*
> > > >> > *Software Engineer*
> > > >> > *
> > > >> > *
> > > >> > *checkout my new blog <http://www.usdoingstuff.com> *
> > > >> > *
> > > >> > *T: 904.469.1524 mobile
> > > >> > E: jose@... <mailto:jose%40josecgomez.com>
> > > >> > http://www.josecgomez.com
> > > >> > <http://www.linkedin.com/in/josecgomez> <
> > > >> http://www.facebook.com/josegomez
> > > >> > >
> > > >> > <http://www.google.com/profiles/jose.gomez> <
> > > >> > http://www.twitter.com/joc85>
> > > >> > <http://www.josecgomez.com/professional-resume/>
> > > >> > <http://www.josecgomez.com/feed/>
> > > >> > <http://www.usdoingstuff.com>
> > > >> >
> > > >> > *Quis custodiet ipsos custodes?*
> > > >> >
> > > >> > On Wed, Jun 29, 2011 at 10:39 AM, Jose Gomez <jose@...
> > ><mailto:jose%40josecgomez.com> >
> > > >> wrote:
> > > >> >
> > > >> > > Did it validate correctly? Are you getting an error? Try adding
> a
> > > few
> > > >> > info
> > > >> > > messages in your code to make sure it is being called
> > > >> > >
> > > >> > > {lib\PublishInfoMsg.i &InfoMsg = "'MSG ' + Part.Character04 "}.
> > > >> > >
> > > >> > >
> > > >> > > *Jose C Gomez*
> > > >> > > *Software Engineer*
> > > >> > > *
> > > >> > > *
> > > >> > > *checkout my new blog <http://www.usdoingstuff.com> *
> > > >> > > *
> > > >> > > *T: 904.469.1524 mobile
> > > >> > > E: jose@... <mailto:jose%40josecgomez.com>
> > > >> > > http://www.josecgomez.com
> > > >> > > <http://www.linkedin.com/in/josecgomez> <
> > > >> > http://www.facebook.com/josegomez>
> > > >> > > <http://www.google.com/profiles/jose.gomez> <
> > > >> > http://www.twitter.com/joc85>
> > > >> > > <http://www.josecgomez.com/professional-resume/>
> > > >> > ><http://www.josecgomez.com/feed/>
> > > >> > > <http://www.usdoingstuff.com>
> > > >> > >
> > > >> > > *Quis custodiet ipsos custodes?*
> > > >> > >
> > > >> > >
> > > >> > >
> > > >> > > On Wed, Jun 29, 2011 at 10:34 AM, Chris Thompson
> > > >> > ><chriselectrix@... <mailto:chriselectrix%40ymail.com>
> > >wrote:
> > > >> > >
> > > >> > >> **
> > > >> > >>
> > > >> > >>
> > > >> > >> I tried you suggestion ...
> > > >> > >>
> > > >> > >> SalesOrder.GetNewOrderDtl Post-Processing
> > > >> > >>
> > > >> > >> ... and it didnt work.
> > > >> > >>
> > > >> > >>
> > > >> > >> ________________________________
> > > >> > >> From: Jose Gomez <jose@... <mailto:
> > jose%40josecgomez.com> >
> > > >> > >> To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
> > > >> > >> Sent: Wed, 29 June, 2011 15:31:26
> > > >> > >>
> > > >> > >> Subject: Re: [Vantage] How to display Part.Checkbox01 on
> > > Order/Quote
> > > >> > Entry
> > > >> > >>
> > > >> > >> screen
> > > >> > >>
> > > >> > >> No offense man but that's not a very helpful reply.. What
> doesn't
> > > >> work?
> > > >> > >>
> > > >> > >> *Jose C Gomez*
> > > >> > >> *Software Engineer*
> > > >> > >> *
> > > >> > >> *
> > > >> > >> *checkout my new blog <http://www.usdoingstuff.com> *
> > > >> > >> *
> > > >> > >> *T: 904.469.1524 mobile
> > > >> > >> E: jose@... <mailto:jose%40josecgomez.com>
> > > >> > >> http://www.josecgomez.com
> > > >> > >> <http://www.linkedin.com/in/josecgomez> <
> > > >> > >> http://www.facebook.com/josegomez>
> > > >> > >> <http://www.google.com/profiles/jose.gomez> <
> > > >> > >> http://www.twitter.com/joc85>
> > > >> > >> <http://www.josecgomez.com/professional-resume/>
> > > >> > >> <http://www.josecgomez.com/feed/>
> > > >> > >> <http://www.usdoingstuff.com>
> > > >> > >>
> > > >> > >> *Quis custodiet ipsos custodes?*
> > > >> > >>
> > > >> > >> On Wed, Jun 29, 2011 at 10:22 AM, Chris Thompson <
> > > >> > chriselectrix@... <mailto:chriselectrix%40ymail.com>
> > > >> > >> >wrote:
> > > >> > >>
> > > >> > >> > **
> > > >> > >> >
> > > >> > >> >
> > > >> > >> > That doesnt work
> > > >> > >> >
> > > >> > >> >
> > > >> > >> > ________________________________
> > > >> > >> > From: Jose Gomez <jose@... <mailto:
> > jose%40josecgomez.com>
> > >>
> > > >> > >> > To: vantage@yahoogroups.com <mailto:
> vantage%40yahoogroups.com>
> >
> > > >> > >> > Sent: Wed, 29 June, 2011 15:15:12
> > > >> > >> >
> > > >> > >> > Subject: Re: [Vantage] How to display Part.Checkbox01 on
> > > Order/Quote
> > > >> > >> Entry
> > > >> > >> > screen
> > > >> > >> >
> > > >> > >> > Change the method in which it is, its right on on SO.Update
> try
> > > >> post
> > > >> > >> > processing on GetNewOrderDtl?
> > > >> > >> >
> > > >> > >> > *Jose C Gomez*
> > > >> > >> > *Software Engineer*
> > > >> > >> > *
> > > >> > >> > *
> > > >> > >> > *checkout my new blog <http://www.usdoingstuff.com> *
> > > >> > >> > *
> > > >> > >> > *T: 904.469.1524 mobile
> > > >> > >> > E: jose@... <mailto:jose%40josecgomez.com>
> > > >> > >> > http://www.josecgomez.com
> > > >> > >> > <http://www.linkedin.com/in/josecgomez> <
> > > >> > >> http://www.facebook.com/josegomez
> > > >> > >> > >
> > > >> > >> > <http://www.google.com/profiles/jose.gomez> <
> > > >> > >> > http://www.twitter.com/joc85>
> > > >> > >> > <http://www.josecgomez.com/professional-resume/>
> > > >> > >> > <http://www.josecgomez.com/feed/>
> > > >> > >> > <http://www.usdoingstuff.com>
> > > >> > >> >
> > > >> > >> > *Quis custodiet ipsos custodes?*
> > > >> > >> >
> > > >> > >> > On Wed, Jun 29, 2011 at 10:13 AM, Chris Thompson <
> > > >> > >> chriselectrix@... <mailto:chriselectrix%40ymail.com>
> > > >> > >> > >wrote:
> > > >> > >> >
> > > >> > >> > > **
> > > >> > >> > >
> > > >> > >> > >
> > > >> > >> > > Actually it is working but it is only displaying as the
> sales
> > > >> order
> > > >> > is
> > > >> > >> > > saved.
> > > >> > >> > >
> > > >> > >> > > How can it work so it pulls it in as soon as the part and
> > > >> > description
> > > >> > >> are
> > > >> > >> > > loaded? rather than only loading after it is saved.
> > > >> > >> > >
> > > >> > >> > >
> > > >> > >> > > ________________________________
> > > >> > >> > > From: Jose Gomez <jose@...
> > ><mailto:jose%40josecgomez.com> >
> > > >> > >> > > To: vantage@yahoogroups.com <mailto:
> > vantage%40yahoogroups.com>
> > > >> > >> > > Sent: Wed, 29 June, 2011 15:02:01
> > > >> > >> > >
> > > >> > >> > > Subject: Re: [Vantage] How to display Part.Checkbox01 on
> > > >> Order/Quote
> > > >> > >> > Entry
> > > >> > >> > > screen
> > > >> > >> > >
> > > >> > >> > > are you suing Character01? if so change to Checkbox1 on the
> > > code.
> > > >> If
> > > >> > >> you
> > > >> > >> > > don't want them to modify it it needs to be made read only
> > from
> > > >> > >> Extended
> > > >> > >> > > Properties
> > > >> > >> > >
> > > >> > >> > > *Jose C Gomez*
> > > >> > >> > > *Software Engineer*
> > > >> > >> > > *
> > > >> > >> > > *
> > > >> > >> > > *checkout my new blog <http://www.usdoingstuff.com> *
> > > >> > >> > > *
> > > >> > >> > > *T: 904.469.1524 mobile
> > > >> > >> > > E: jose@... <mailto:jose%40josecgomez.com>
> > > >> > >> > > http://www.josecgomez.com
> > > >> > >> > > <http://www.linkedin.com/in/josecgomez> <
> > > >> > >> > http://www.facebook.com/josegomez
> > > >> > >> > > >
> > > >> > >> > > <http://www.google.com/profiles/jose.gomez> <
> > > >> > >> > > http://www.twitter.com/joc85>
> > > >> > >> > > <http://www.josecgomez.com/professional-resume/>
> > > >> > >> > > <http://www.josecgomez.com/feed/>
> > > >> > >> > > <http://www.usdoingstuff.com>
> > > >> > >> > >
> > > >> > >> > > *Quis custodiet ipsos custodes?*
> > > >> > >> > >
> > > >> > >> > > On Wed, Jun 29, 2011 at 10:00 AM, Chris Thompson <
> > > >> > >> > chriselectrix@... <mailto:chriselectrix%40ymail.com>
> > > >> > >> > > >wrote:
> > > >> > >> > >
> > > >> > >> > > > **
> > > >> > >> > > >
> > > >> > >> > > >
> > > >> > >> > > > I think Im getting there but it isnt working yet.
> > > >> > >> > > >
> > > >> > >> > > > Im actually using Part.Checkbox01 on part maintenance and
> > > >> > >> > > > OrderDtl.Checkbox01 on
> > > >> > >> > > > Order Entry.
> > > >> > >> > > >
> > > >> > >> > > > Im not getting any errors when I validate now (retyped it
> > > rather
> > > >> > >> than
> > > >> > >> > > copy
> > > >> > >> > > > and
> > > >> > >> > > > paste as it didnt pick up on copy/paste correctly).
> > > >> > >> > > >
> > > >> > >> > > > Ive tested it, but it doesnt populate the tick box on the
> > > sales
> > > >> > >> order
> > > >> > >> > > entry
> > > >> > >> > > >
> > > >> > >> > > > lines screen when i add a part that has a tick on part
> > > >> > maintenance.
> > > >> > >> > > >
> > > >> > >> > > > Also how can I get it so the tick box on order entry
> can't
> > be
> > > >> > >> modified?
> > > >> > >> > > >
> > > >> > >> > > >
> > > >> > >> > > > ________________________________
> > > >> > >> > > > From: Jose Gomez <jose@...
> > ><mailto:jose%40josecgomez.com> >
> > > >> > >> > > > To: vantage@yahoogroups.com <mailto:
> > vantage%40yahoogroups.com>
> > > >> > >> > > > Sent: Wed, 29 June, 2011 14:56:13
> > > >> > >> > > >
> > > >> > >> > > > Subject: Re: [Vantage] How to display Part.Checkbox01 on
> > > >> > Order/Quote
> > > >> > >> > > Entry
> > > >> > >> > > > screen
> > > >> > >> > > >
> > > >> > >> > > > LoL ok I wrote the syntax on here (email) so I didn't
> > > validate
> > > >> it
> > > >> > >> > needs
> > > >> > >> > > a
> > > >> > >> > > > peroid after the last end
> > > >> > >> > > >
> > > >> > >> > > > FOR EACH ttOrderDtl:
> > > >> > >> > > > FIND FIRST PART WHERE Part.PartNum = ttOrderDtl.PartNum
> > > >> NO-ERROR.
> > > >> > >> > > > IF AVAILABLE Part THEN DO:
> > > >> > >> > > > Assign ttOrderDtl.Character1=Part.Character01.
> > > >> > >> > > > END.
> > > >> > >> > > > END.
> > > >> > >> > > >
> > > >> > >> > > > And no you don't need to check anything and it should be
> > > >> > Syncrnousl
> > > >> > >> > > >
> > > >> > >> > > > *Jose C Gomez*
> > > >> > >> > > > *Software Engineer*
> > > >> > >> > > > *
> > > >> > >> > > > *
> > > >> > >> > > > *checkout my new blog <http://www.usdoingstuff.com> *
> > > >> > >> > > > *
> > > >> > >> > > > *T: 904.469.1524 mobile
> > > >> > >> > > > E: jose@... <mailto:jose%40josecgomez.com>
> > > >> > >> > > > http://www.josecgomez.com
> > > >> > >> > > > <http://www.linkedin.com/in/josecgomez> <
> > > >> > >> > > http://www.facebook.com/josegomez
> > > >> > >> > > > >
> > > >> > >> > > > <http://www.google.com/profiles/jose.gomez> <
> > > >> > >> > > > http://www.twitter.com/joc85>
> > > >> > >> > > > <http://www.josecgomez.com/professional-resume/>
> > > >> > >> > > > <http://www.josecgomez.com/feed/>
> > > >> > >> > > > <http://www.usdoingstuff.com>
> > > >> > >> > > >
> > > >> > >> > > > *Quis custodiet ipsos custodes?*
> > > >> > >> > > >
> > > >> > >> > > > On Wed, Jun 29, 2011 at 9:48 AM, Chris Thompson <
> > > >> > >> > chriselectrix@... <mailto:chriselectrix%40ymail.com>
> > > >> > >> > > > >wrote:
> > > >> > >> > > >
> > > >> > >> > > > > **
> > > >> > >> > > > >
> > > >> > >> > > > >
> > > >> > >> > > > > When I validate, I get this ...
> > > >> > >> > > > > The following application error was encountered:
> > > >> > >> > > > > ** Unable to understand after -- "END". (247)
> > > >> > >> > > > > **
> > > >> > D:\E9-TempFiles\13511518418486131471602482351942105938158158.p
> > > >> > >> > Could
> > > >> > >> > > > not
> > > >> > >> > > > >
> > > >> > >> > > > > understand line 14. (198)
> > > >> > >> > > > >
> > > >> > >> > > > > Also, do I need to select Call or Return?
> > > >> > >> > > > >
> > > >> > >> > > > > Should it be synchronously or asynchronously ?
> > > >> > >> > > > >
> > > >> > >> > > > > Should it be record nothing, record call, record call
> > > return,
> > > >> > >> record
> > > >> > >> > > > > return????
> > > >> > >> > > > >
> > > >> > >> > > > > Thanks,
> > > >> > >> > > > >
> > > >> > >> > > > >
> > > >> > >> > > > > ________________________________
> > > >> > >> > > > > From: Jose Gomez <jose@...
> > ><mailto:jose%40josecgomez.com> >
> > > >> > >> > > > > To: vantage@yahoogroups.com <mailto:
> > vantage%40yahoogroups.com>
> >
> > > >> > >> > > > > Sent: Wed, 29 June, 2011 14:33:48
> > > >> > >> > > > >
> > > >> > >> > > > > Subject: Re: [Vantage] How to display Part.Checkbox01
> on
> > > >> > >> Order/Quote
> > > >> > >> > > > Entry
> > > >> > >> > > > > screen
> > > >> > >> > > > >
> > > >> > >> > > > > ALl of it goes under action - Run 4GL/ABL
> > > >> > >> > > > >
> > > >> > >> > > > > *Jose C Gomez*
> > > >> > >> > > > > *Software Engineer*
> > > >> > >> > > > > *
> > > >> > >> > > > > *
> > > >> > >> > > > > *checkout my new blog <http://www.usdoingstuff.com> *
> > > >> > >> > > > > *
> > > >> > >> > > > > *T: 904.469.1524 mobile
> > > >> > >> > > > > E: jose@... <mailto:jose%40josecgomez.com>
> > > >> > >> > > > > http://www.josecgomez.com
> > > >> > >> > > > > <http://www.linkedin.com/in/josecgomez> <
> > > >> > >> > > > http://www.facebook.com/josegomez
> > > >> > >> > > > > >
> > > >> > >> > > > > <http://www.google.com/profiles/jose.gomez> <
> > > >> > >> > > > > http://www.twitter.com/joc85>
> > > >> > >> > > > > <http://www.josecgomez.com/professional-resume/>
> > > >> > >> > > > > <http://www.josecgomez.com/feed/>
> > > >> > >> > > > > <http://www.usdoingstuff.com>
> > > >> > >> > > > >
> > > >> > >> > > > > *Quis custodiet ipsos custodes?*
> > > >> > >> > > > >
> > > >> > >> > > > > On Wed, Jun 29, 2011 at 8:43 AM, Chris Thompson <
> > > >> > >> > > chriselectrix@... <mailto:chriselectrix%40ymail.com>
> > > >> > >> > > > > >wrote:
> > > >> > >> > > > >
> > > >> > >> > > > > > **
> > > >> > >> > > > > >
> > > >> > >> > > > > >
> > > >> > >> > > > > > Which part of this goes under the conditions section
> > and
> > > >> which
> > > >> > >> part
> > > >> > >> > > > goes
> > > >> > >> > > > > > under
> > > >> > >> > > > > > the actions section?
> > > >> > >> > > > > >
> > > >> > >> > > > > >
> > > >> > >> > > > > > FOR EACH ttOrderDtl:
> > > >> > >> > > > > > FIND FIRST PART WHERE Part.PartNum =
> ttOrderDtl.PartNum
> > > >> > >> NO-ERROR.
> > > >> > >> > > > > > IF AVAILABLE Part THEN DO:
> > > >> > >> > > > > > Assign ttOrderDtl.Character1=Part.Character01.
> > > >> > >> > > > > > END.
> > > >> > >> > > > > > END
> > > >> > >> > > > > >
> > > >> > >> > > > > > ________________________________
> > > >> > >> > > > > > From: Jose Gomez <jose@...
> > ><mailto:jose%40josecgomez.com> >
> > > >> > >> > > > > > To: vantage@yahoogroups.com
> > ><mailto:vantage%40yahoogroups.com>
> > >
> > > >> > >> > > > > > Sent: Wed, 29 June, 2011 13:39:08
> > > >> > >> > > > > >
> > > >> > >> > > > > > Subject: Re: [Vantage] How to display Part.Checkbox01
> > on
> > > >> > >> > Order/Quote
> > > >> > >> > > > > Entry
> > > >> > >> > > > > > screen
> > > >> > >> > > > > >
> > > >> > >> > > > > > It is method directive
> > > >> > >> > > > > >
> > > >> > >> > > > > > then select the Sales Oder BO
> > > >> > >> > > > > > and find a suitable method, you can do it before SO
> > > Update
> > > >> > >> create a
> > > >> > >> > > > > > pre-prosessiong directive as shown
> > > >> > >> > > > > >
> > > >> > >> > > > > > FOR EACH ttOrderDtl:
> > > >> > >> > > > > > FIND FIRST PART WHERE Part.PartNum =
> ttOrderDtl.PartNum
> > > >> > >> NO-ERROR.
> > > >> > >> > > > > > IF AVAILABLE Part THEN DO:
> > > >> > >> > > > > > Assign ttOrderDtl.Character1=Part.Character01.
> > > >> > >> > > > > > END.
> > > >> > >> > > > > > END
> > > >> > >> > > > > >
> > > >> > >> > > > > > That should do. it
> > > >> > >> > > > > >
> > > >> > >> > > > > > *Jose C Gomez*
> > > >> > >> > > > > > *Software Engineer*
> > > >> > >> > > > > > *
> > > >> > >> > > > > > *
> > > >> > >> > > > > > *checkout my new blog <http://www.usdoingstuff.com>
> *
> > > >> > >> > > > > > *
> > > >> > >> > > > > > *T: 904.469.1524 mobile
> > > >> > >> > > > > > E: jose@... <mailto:jose%40josecgomez.com
> >
> > > >> > >> > > > > > http://www.josecgomez.com
> > > >> > >> > > > > > <http://www.linkedin.com/in/josecgomez> <
> > > >> > >> > > > > > http://www.facebook.com/josegomez>
> > > >> > >> > > > > > <http://www.google.com/profiles/jose.gomez> <
> > > >> > >> > > > > > http://www.twitter.com/joc85>
> > > >> > >> > > > > > <http://www.josecgomez.com/professional-resume/>
> > > >> > >> > > > > > <http://www.josecgomez.com/feed/>
> > > >> > >> > > > > > <http://www.usdoingstuff.com>
> > > >> > >> > > > > >
> > > >> > >> > > > > > *Quis custodiet ipsos custodes?*
> > > >> > >> > > > > >
> > > >> > >> > > > > > On Wed, Jun 29, 2011 at 8:34 AM, Chris Thompson <
> > > >> > >> > > > chriselectrix@... <mailto:
> chriselectrix%40ymail.com>
> >
> > > >> > >> > > > > > >wrote:
> > > >> > >> > > > > >
> > > >> > >> > > > > > > **
> > > >> > >> > > > > > >
> > > >> > >> > > > > > >
> > > >> > >> > > > > > > How do I create a BPM to do what you said?
> > > >> > >> > > > > > >
> > > >> > >> > > > > > > Is it Method Directives? Then what?
> > > >> > >> > > > > > >
> > > >> > >> > > > > > > What Method Code do I select etc?
> > > >> > >> > > > > > >
> > > >> > >> > > > > > > ________________________________
> > > >> > >> > > > > > > From: Jose Gomez <jose@...
> > ><mailto:jose%40josecgomez.com> >
> > > >> > >> > > > > > > To: vantage@yahoogroups.com
> > ><mailto:vantage%40yahoogroups.com>
> > >
> > > >> > >> > > > > > > Sent: Wed, 29 June, 2011 13:30:37
> > > >> > >> > > > > > > Subject: Re: [Vantage] How to display
> Part.Checkbox01
> > > on
> > > >> > >> > > Order/Quote
> > > >> > >> > > > > > Entry
> > > >> > >> > > > > > > screen
> > > >> > >> > > > > > >
> > > >> > >> > > > > > >
> > > >> > >> > > > > > > BPM would be the best option, after GetNewDtl or
> > > something
> > > >> > >> like
> > > >> > >> > > that
> > > >> > >> > > > > you
> > > >> > >> > > > > > > can
> > > >> > >> > > > > > > copy the Part.Character01 to OrderDtl.Character01
> and
> > > that
> > > >> > >> would
> > > >> > >> > do
> > > >> > >> > > > it.
> > > >> > >> > > > > > > Another alternative would be a customization on
> > SoEntry
> > > >> > where
> > > >> > >> you
> > > >> > >> > > do
> > > >> > >> > > > a
> > > >> > >> > > > > > > lookup on part BO and then grab the value for
> > display.
> > > >> With
> > > >> > >> this
> > > >> > >> > > > > approach
> > > >> > >> > > > > > > however you would need to modify the RDD for
> SOEntry
> > to
> > > >> > >> Include a
> > > >> > >> > > > Link
> > > >> > >> > > > > to
> > > >> > >> > > > > > > the Part Table.
> > > >> > >> > > > > > >
> > > >> > >> > > > > > > *Jose C Gomez*
> > > >> > >> > > > > > > *Software Engineer*
> > > >> > >> > > > > > > *
> > > >> > >> > > > > > > *
> > > >> > >> > > > > > > *checkout my new blog <http://www.usdoingstuff.com
> >
> > *
> > > >> > >> > > > > > > *
> > > >> > >> > > > > > > *T: 904.469.1524 mobile
> > > >> > >> > > > > > >
> > > >> > >> > > > > > > E: jose@... <mailto:
> jose%40josecgomez.com>
> >
> > > >> > >> > > > > > > http://www.josecgomez.com
> > > >> > >> > > > > > > <http://www.linkedin.com/in/josecgomez> <
> > > >> > >> > > > > > http://www.facebook.com/josegomez
> > > >> > >> > > > > > > >
> > > >> > >> > > > > > > <http://www.google.com/profiles/jose.gomez> <
> > > >> > >> > > > > > > http://www.twitter.com/joc85>
> > > >> > >> > > > > > > <http://www.josecgomez.com/professional-resume/>
> > > >> > >> > > > > > > <http://www.josecgomez.com/feed/>
> > > >> > >> > > > > > > <http://www.usdoingstuff.com>
> > > >> > >> > > > > > >
> > > >> > >> > > > > > >
> > > >> > >> > > > > > > *Quis custodiet ipsos custodes?*
> > > >> > >> > > > > > >
> > > >> > >> > > > > > > On Wed, Jun 29, 2011 at 7:51 AM, Chris Thompson <
> > > >> > >> > > > > chriselectrix@... <mailto:
> > chriselectrix%40ymail.com>
> > > >> > >> > > > > > > >wrote:
> > > >> > >> > > > > > >
> > > >> > >> > > > > > > > **
> > > >> > >> > > > > > > >
> > > >> > >> > > > > > > >
> > > >> > >> > > > > > > > Hi All
> > > >> > >> > > > > > > >
> > > >> > >> > > > > > > > I am starting to use Part.Checkbox01.
> > > >> > >> > > > > > > >
> > > >> > >> > > > > > > > How am I able to pull all of the information
> > through
> > > >> from
> > > >> > >> > > > > > Part.Checkbox01
> > > >> > >> > > > > > > > to the
> > > >> > >> > > > > > > > Order Detail and Quote Detail screens and
> > ultimately
> > > >> send
> > > >> > >> them
> > > >> > >> > in
> > > >> > >> > > > the
> > > >> > >> > > > > > XML
> > > >> > >> > > > > > > > on the
> > > >> > >> > > > > > > > quote and sales order ack print out so they can
> be
> > > >> > reported
> > > >> > >> on?
> > > >> > >> > > > > > > >
> > > >> > >> > > > > > > > Thanks.
> > > >> > >> > > > > > > >
> > > >> > >> > > > > > > > [Non-text portions of this message have been
> > removed]
> > > >> > >> > > > > > > >
> > > >> > >> > > > > > > >
> > > >> > >> > > > > > > >
> > > >> > >> > > > > > >
> > > >> > >> > > > > > > [Non-text portions of this message have been
> removed]
> > > >> > >> > > > > > >
> > > >> > >> > > > > > > ------------------------------------
> > > >> > >> > > > > > >
> > > >> > >> > > > > > >
> > > >> > >> > > > > > > Useful links for the Yahoo!Groups Vantage Board
> are:
> > (
> > > >> Note:
> > > >> > >> You
> > > >> > >> > > > must
> > > >> > >> > > > > > have
> > > >> > >> > > > > > >
> > > >> > >> > > > > > > already linked your email address to a yahoo id to
> > > enable
> > > >> > >> access.
> > > >> > >> > )
> > > >> > >> > > > > > > (1) To access the Files Section of our Yahoo!Group
> > for
> > > >> > Report
> > > >> > >> > > Builder
> > > >> > >> > > > > and
> > > >> > >> > > > > > > Crystal Reports and other 'goodies', please goto:
> > > >> > >> > > > > > > http://groups.yahoo.com/group/vantage/files/.
> > ><http://groups.yahoo.com/group/vantage/files/>
> > >
> > > >> > >> > > > > > >
> > > >> > >> > > > > > > (2) To search through old msg's goto:
> > > >> > >> > > > > > > http://groups.yahoo.com/group/vantage/messages
> > > >> > >> > > > > > > (3) To view links to Vendors that provide Vantage
> > > services
> > > >> > >> goto:
> > > >> > >> > > > > > > http://groups.yahoo.com/group/vantage/linksYahoo!
> > > Groups
> > > >> > >> Links
> > > >> > >> > > > > > >
> > > >> > >> > > > > > >
> > > >> > >> > > > > > > [Non-text portions of this message have been
> removed]
> > > >> > >> > > > > > >
> > > >> > >> > > > > > >
> > > >> > >> > > > > > >
> > > >> > >> > > > > >
> > > >> > >> > > > > > [Non-text portions of this message have been removed]
> > > >> > >> > > > > >
> > > >> > >> > > > > > ------------------------------------
> > > >> > >> > > > > >
> > > >> > >> > > > > > Useful links for the Yahoo!Groups Vantage Board are:
> (
> > > Note:
> > > >> > >> You
> > > >> > >> > > must
> > > >> > >> > > > > have
> > > >> > >> > > > > >
> > > >> > >> > > > > > already linked your email address to a yahoo id to
> > enable
> > > >> > >> access. )
> > > >> > >> > > > > > (1) To access the Files Section of our Yahoo!Group
> for
> > > >> Report
> > > >> > >> > Builder
> > > >> > >> > > > and
> > > >> > >> > > > > > Crystal Reports and other 'goodies', please goto:
> > > >> > >> > > > > > http://groups.yahoo.com/group/vantage/files/.
> > ><http://groups.yahoo.com/group/vantage/files/>
> > >
> > > >> > >> > > > > >
> > > >> > >> > > > > > (2) To search through old msg's goto:
> > > >> > >> > > > > > http://groups.yahoo.com/group/vantage/messages
> > > >> > >> > > > > > (3) To view links to Vendors that provide Vantage
> > > services
> > > >> > goto:
> > > >> > >> > > > > > http://groups.yahoo.com/group/vantage/linksYahoo!
> > Groups
> > > >> > Links
> > > >> > >> > > > > >
> > > >> > >> > > > > > [Non-text portions of this message have been removed]
> > > >> > >> > > > > >
> > > >> > >> > > > > >
> > > >> > >> > > > > >
> > > >> > >> > > > >
> > > >> > >> > > > > [Non-text portions of this message have been removed]
> > > >> > >> > > > >
> > > >> > >> > > > > ------------------------------------
> > > >> > >> > > > >
> > > >> > >> > > > > Useful links for the Yahoo!Groups Vantage Board are: (
> > > Note:
> > > >> > You
> > > >> > >> > must
> > > >> > >> > > > have
> > > >> > >> > > > >
> > > >> > >> > > > > already linked your email address to a yahoo id to
> enable
> > > >> > access.
> > > >> > >> )
> > > >> > >> > > > > (1) To access the Files Section of our Yahoo!Group for
> > > Report
> > > >> > >> Builder
> > > >> > >> > > and
> > > >> > >> > > > > Crystal Reports and other 'goodies', please goto:
> > > >> > >> > > > > http://groups.yahoo.com/group/vantage/files/.
> > ><http://groups.yahoo.com/group/vantage/files/>
> > >
> > > >> > >> > > > >
> > > >> > >> > > > > (2) To search through old msg's goto:
> > > >> > >> > > > > http://groups.yahoo.com/group/vantage/messages
> > > >> > >> > > > > (3) To view links to Vendors that provide Vantage
> > services
> > > >> goto:
> > > >> > >> > > > > http://groups.yahoo.com/group/vantage/linksYahoo!
> Groups
> > > >> Links
> > > >> > >> > > > >
> > > >> > >> > > > > [Non-text portions of this message have been removed]
> > > >> > >> > > > >
> > > >> > >> > > > >
> > > >> > >> > > > >
> > > >> > >> > > >
> > > >> > >> > > > [Non-text portions of this message have been removed]
> > > >> > >> > > >
> > > >> > >> > > > ------------------------------------
> > > >> > >> > > >
> > > >> > >> > > > Useful links for the Yahoo!Groups Vantage Board are: (
> > Note:
> > > >> You
> > > >> > >> must
> > > >> > >> > > have
> > > >> > >> > > >
> > > >> > >> > > > already linked your email address to a yahoo id to enable
> > > >> access.
> > > >> > )
> > > >> > >> > > > (1) To access the Files Section of our Yahoo!Group for
> > Report
> > > >> > >> Builder
> > > >> > >> > and
> > > >> > >> > > > Crystal Reports and other 'goodies', please goto:
> > > >> > >> > > > http://groups.yahoo.com/group/vantage/files/.
> > ><http://groups.yahoo.com/group/vantage/files/>
> > >
> > > >> > >> > > >
> > > >> > >> > > > (2) To search through old msg's goto:
> > > >> > >> > > > http://groups.yahoo.com/group/vantage/messages
> > > >> > >> > > > (3) To view links to Vendors that provide Vantage
> services
> > > goto:
> > > >> > >> > > > http://groups.yahoo.com/group/vantage/linksYahoo! Groups
> > > Links
> > > >> > >> > > >
> > > >> > >> > > > [Non-text portions of this message have been removed]
> > > >> > >> > > >
> > > >> > >> > > >
> > > >> > >> > > >
> > > >> > >> > >
> > > >> > >> > > [Non-text portions of this message have been removed]
> > > >> > >> > >
> > > >> > >> > > ------------------------------------
> > > >> > >> > >
> > > >> > >> > > Useful links for the Yahoo!Groups Vantage Board are: (
> Note:
> > > You
> > > >> > must
> > > >> > >> > have
> > > >> > >> > >
> > > >> > >> > > already linked your email address to a yahoo id to enable
> > > access.
> > > >> )
> > > >> > >> > > (1) To access the Files Section of our Yahoo!Group for
> Report
> > > >> > Builder
> > > >> > >> and
> > > >> > >> > > Crystal Reports and other 'goodies', please goto:
> > > >> > >> > > http://groups.yahoo.com/group/vantage/files/.
> > ><http://groups.yahoo.com/group/vantage/files/>
> > >
> > > >> > >> > >
> > > >> > >> > > (2) To search through old msg's goto:
> > > >> > >> > > http://groups.yahoo.com/group/vantage/messages
> > > >> > >> > > (3) To view links to Vendors that provide Vantage services
> > > goto:
> > > >> > >> > > http://groups.yahoo.com/group/vantage/linksYahoo! Groups
> > Links
> > > >> > >> > >
> > > >> > >> > > [Non-text portions of this message have been removed]
> > > >> > >> > >
> > > >> > >> > >
> > > >> > >> > >
> > > >> > >> >
> > > >> > >> > [Non-text portions of this message have been removed]
> > > >> > >> >
> > > >> > >> > ------------------------------------
> > > >> > >> >
> > > >> > >> > Useful links for the Yahoo!Groups Vantage Board are: ( Note:
> > You
> > > >> must
> > > >> > >> have
> > > >> > >> >
> > > >> > >> > already linked your email address to a yahoo id to enable
> > access.
> > > )
> > > >> > >> > (1) To access the Files Section of our Yahoo!Group for Report
> > > >> Builder
> > > >> > >> and
> > > >> > >> > Crystal Reports and other 'goodies', please goto:
> > > >> > >> > http://groups.yahoo.com/group/vantage/files/.
> > ><http://groups.yahoo.com/group/vantage/files/>
> > >
> > > >> > >> >
> > > >> > >> > (2) To search through old msg's goto:
> > > >> > >> > http://groups.yahoo.com/group/vantage/messages
> > > >> > >> > (3) To view links to Vendors that provide Vantage services
> > goto:
> > > >> > >> > http://groups.yahoo.com/group/vantage/linksYahoo! Groups
> Links
> > > >> > >> >
> > > >> > >> > [Non-text portions of this message have been removed]
> > > >> > >> >
> > > >> > >> >
> > > >> > >> >
> > > >> > >>
> > > >> > >> [Non-text portions of this message have been removed]
> > > >> > >>
> > > >> > >> ------------------------------------
> > > >> > >>
> > > >> > >> Useful links for the Yahoo!Groups Vantage Board are: ( Note:
> You
> > > must
> > > >> > >> have
> > > >> > >> already linked your email address to a yahoo id to enable
> access.
> > )
> > > >> > >> (1) To access the Files Section of our Yahoo!Group for Report
> > > Builder
> > > >> > and
> > > >> > >> Crystal Reports and other 'goodies', please goto:
> > > >> > >> http://groups.yahoo.com/group/vantage/files/.
> > ><http://groups.yahoo.com/group/vantage/files/>
> > >
> > > >> > >>
> > > >> > >> (2) To search through old msg's goto:
> > > >> > >> http://groups.yahoo.com/group/vantage/messages
> > > >> > >> (3) To view links to Vendors that provide Vantage services
> goto:
> > > >> > >> http://groups.yahoo.com/group/vantage/linksYahoo! Groups Links
> > > >> > >>
> > > >> > >> [Non-text portions of this message have been removed]
> > > >> > >>
> > > >> > >>
> > > >> > >>
> > > >> > >
> > > >> > >
> > > >> >
> > > >> > [Non-text portions of this message have been removed]
> > > >> >
> > > >> > ------------------------------------
> > > >> >
> > > >> > Useful links for the Yahoo!Groups Vantage Board are: ( Note: You
> > must
> > > >> have
> > > >> >
> > > >> > already linked your email address to a yahoo id to enable access.
> )
> > > >> > (1) To access the Files Section of our Yahoo!Group for Report
> > Builder
> > > and
> > > >> > Crystal Reports and other 'goodies', please goto:
> > > >> > http://groups.yahoo.com/group/vantage/files/.
> > ><http://groups.yahoo.com/group/vantage/files/>
> > >
> > > >> >
> > > >> > (2) To search through old msg's goto:
> > > >> > http://groups.yahoo.com/group/vantage/messages
> > > >> > (3) To view links to Vendors that provide Vantage services goto:
> > > >> > http://groups.yahoo.com/group/vantage/linksYahoo! Groups Links
> > > >> >
> > > >> > [Non-text portions of this message have been removed]
> > > >> >
> > > >> >
> > > >> >
> > > >>
> > > >> [Non-text portions of this message have been removed]
> > > >>
> > > >> ------------------------------------
> > > >>
> > > >> Useful links for the Yahoo!Groups Vantage Board are: ( Note: You
> must
> > > have
> > > >>
> > > >> already linked your email address to a yahoo id to enable access. )
> > > >> (1) To access the Files Section of our Yahoo!Group for Report
> Builder
> > > and
> > > >> Crystal Reports and other 'goodies', please goto:
> > > >> http://groups.yahoo.com/group/vantage/files/.
> > ><http://groups.yahoo.com/group/vantage/files/>
> > >
> > > >>
> > > >> (2) To search through old msg's goto:
> > > >> http://groups.yahoo.com/group/vantage/messages
> > > >> (3) To view links to Vendors that provide Vantage services goto:
> > > >> http://groups.yahoo.com/group/vantage/linksYahoo! Groups Links
> > > >>
> > > >> [Non-text portions of this message have been removed]
> > > >>
> > > >>
> > > >>
> > > >
> > > >
> > > > [Non-text portions of this message have been removed]
> > > >
> > > >
> > > >
> > > > ------------------------------------
> > > >
> > > > Useful links for the Yahoo!Groups Vantage Board are: ( Note: You must
> > > have
> > > > already linked your email address to a yahoo id to enable access. )
> > > > (1) To access the Files Section of our Yahoo!Group for Report Builder
> > and
> > >
> > > > Crystal Reports and other 'goodies', please goto:
> > > > http://groups.yahoo.com/group/vantage/files/.
> > ><http://groups.yahoo.com/group/vantage/files/>
> > >
> > > >
> > > > (2) To search through old msg's goto:
> > > > http://groups.yahoo.com/group/vantage/messages
> > > > (3) To view links to Vendors that provide Vantage services goto:
> > > > http://groups.yahoo.com/group/vantage/linksYahoo! Groups Links
> > > >
> > > >
> > > >
> > > > [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]
> >
> > [Non-text portions of this message have been removed]
> >
> >
> >
>
> [Non-text portions of this message have been removed]
>
> ------------------------------------
>
> Useful links for the Yahoo!Groups Vantage Board are: ( Note: You must have
>
> already linked your email address to a yahoo id to enable access. )
> (1) To access the Files Section of our Yahoo!Group for Report Builder and
> Crystal Reports and other 'goodies', please goto:
> http://groups.yahoo.com/group/vantage/files/.
>
> (2) To search through old msg's goto:
> http://groups.yahoo.com/group/vantage/messages
> (3) To view links to Vendors that provide Vantage services goto:
> http://groups.yahoo.com/group/vantage/linksYahoo! Groups Links
>
> [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]