Functioning RMA Alert

John,



Start with the example .p that Epicor provides in the VBP and UD
directories and subdirectories.

From there, you will need to create a new BAM for the specific field you
want to use as a trigger.

Set it as a send alert but not log, and ignore all subjects, tos, froms,
whatever. Just enter the name of your new .p in the alert program
section.

Your Epicor rep will be happy to provide you with a .p example and the
include file that is needed if you ask.

From there, modify it for your needs. You will also have to set your
email configuration in the company configuration.

Everything I have learned, I learned from the help within the procedure
editor, and others from this list.

As for is it possible, Cliff has proved with the .p that started this
thread that it is.

Knowing this was possible was the trigger that got me started on
learning. If you need assistance, between myself and others I am sure
this list can guide you through implementation.



Aaron Hoyt

Hittite Microwave Corporation



-----Original Message-----
From: John Mansfield [mailto:johnm@...]
Sent: Thursday, January 15, 2004 11:33 AM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Functioning RMA Alert



Hi Aaron,



I am interested in using global alerts inside BAM.

Where do you find info on writing *.p files for this purpose?

We would like to be able to trigger off of changes to Boolean fields ie.
Appoved from PartRev for example.

Is it possible to send an email out when this field changes from within
Vantage?

Thank you for your response,



John Mansfield

General Sheet Metal



-----Original Message-----
From: Aaron Hoyt [mailto:hoyt@...]
Sent: Thursday, January 15, 2004 10:56 AM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Functioning RMA Alert



John,



Cliff and I have been working with each other off list.

The answer you are looking for is...



This is only fired upon the change in status of the filed. The next
time the check box is changed it will not be true.

You are setting this to trigger from the Business Activity Manager (for
those before 6.0 this is like a customizable change log). It only
triggers events based on the status of a filed changing. In this case
you are triggering on a change in value of CheckBox01.



This is also how other email alerts work in 6.0 and beyond.



Aaron Hoyt

Hittite Microwave Corporation



-----Original Message-----
From: John Mansfield [mailto:johnm@...]
Sent: Thursday, January 15, 2004 10:44 AM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Functioning RMA Alert



Hi Cliff,



I am curious once the value OrderDtl.CheckBox01 is set to true won't

It be true until it is set back to false. The next find

Will then have the previous true flags and there will be

Multiple emails going out.



Just thought I'd ask.



Thanks,



John Mansfield

General Sheet Metal



-----Original Message-----
From: Cliff Drumeller [mailto:cliff@...]
Sent: Thursday, January 15, 2004 10:28 AM
To: VantageGroup (E-mail)
Subject: [Vantage] Functioning RMA Alert



Task: Send an email to multiple individuals when an RMA is issued.
The way we do business: When an RMA is issued we create a new dummy
Sales
Order for the parts with a due date of 6/6/66 until they are received
and
inspected. At that time the sales order is a properly filled out and the
proper date inserted.

Solution: Vantage 6 required. Customized Sales Order Detail screen to
include a new Toggle Box, Assigned it CheckBox01 field. Set up alert in
BAM
on OrderDtl.CheckBox01 to run the following Rma_Issued.p. It works on
the
state of the toggle box. Put a check in it and thirty seconds later the
emails go out. You can cut and paste this section into the procedure
editor.

{ud/GlbAlert.i &tablename = "OrderDtl" }

DEFINE VARIABLE NewEmailBofy AS CHARACTER NO-UNDO.

/*new email body*/
IF OrderDtl.OpenLine = TRUE

THEN DO:

FIND Customer WHERE (Customer.Company = OrderDtl.Company) AND
(Customer.Custnum = OrderDtl.Custnum)
NO-LOCK.
IF OrderDtl.CheckBox01 = TRUE
THEN DO:
ASSIGN Email-To = "person1@..., person2@...,
person3@..."
Email-Subject = "RMA Issued"
Email-Text = "Sales order "
+ string(OrderDtl.Ordernum)
+ " has been created for "
+ string(Customer.name)
+ " RMA "
+ string(OrderDtl.RmaNum)
+ " Part # "
+ string(OrderDtl.PartNum)
+ " Quantity "
+ string(OrderDtl.OrderQty).


END.
ELSE DO:
Return "Cancel Send":U.
END.
END.
ELSE DO:
Return "Cancel Send":U.
END.


Cliff Drumeller
IT Manager
Mass Precision Sheetmetal
408 954 0200



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/>
<http://groups.yahoo.com/group/vantage/files/>
<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/links



_____

Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/vantage/


* To unsubscribe from this group, send an email to:
vantage-unsubscribe@yahoogroups.com
<mailto:vantage-unsubscribe@yahoogroups.com?subject=Unsubscribe>


* Your use of Yahoo! Groups is subject to the Yahoo! Terms of
<http://docs.yahoo.com/info/terms/> Service.



[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/>
<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/links



_____

Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/vantage/


* To unsubscribe from this group, send an email to:
vantage-unsubscribe@yahoogroups.com
<mailto:vantage-unsubscribe@yahoogroups.com?subject=Unsubscribe>


* Your use of Yahoo! Groups is subject to the Yahoo! Terms of
<http://docs.yahoo.com/info/terms/> Service.



[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/>
<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/links



_____

Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/vantage/


* To unsubscribe from this group, send an email to:
vantage-unsubscribe@yahoogroups.com
<mailto:vantage-unsubscribe@yahoogroups.com?subject=Unsubscribe>


* Your use of Yahoo! Groups is subject to the Yahoo! Terms of
<http://docs.yahoo.com/info/terms/> Service.



[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/links



_____

Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/vantage/


* To unsubscribe from this group, send an email to:
vantage-unsubscribe@yahoogroups.com
<mailto:vantage-unsubscribe@yahoogroups.com?subject=Unsubscribe>


* Your use of Yahoo! Groups is subject to the Yahoo! Terms of
<http://docs.yahoo.com/info/terms/> Service.



[Non-text portions of this message have been removed]
Task: Send an email to multiple individuals when an RMA is issued.
The way we do business: When an RMA is issued we create a new dummy Sales
Order for the parts with a due date of 6/6/66 until they are received and
inspected. At that time the sales order is a properly filled out and the
proper date inserted.

Solution: Vantage 6 required. Customized Sales Order Detail screen to
include a new Toggle Box, Assigned it CheckBox01 field. Set up alert in BAM
on OrderDtl.CheckBox01 to run the following Rma_Issued.p. It works on the
state of the toggle box. Put a check in it and thirty seconds later the
emails go out. You can cut and paste this section into the procedure editor.

{ud/GlbAlert.i &tablename = "OrderDtl" }

DEFINE VARIABLE NewEmailBofy AS CHARACTER NO-UNDO.

/*new email body*/
IF OrderDtl.OpenLine = TRUE

THEN DO:

FIND Customer WHERE (Customer.Company = OrderDtl.Company) AND
(Customer.Custnum = OrderDtl.Custnum)
NO-LOCK.
IF OrderDtl.CheckBox01 = TRUE
THEN DO:
ASSIGN Email-To = "person1@..., person2@...,
person3@..."
Email-Subject = "RMA Issued"
Email-Text = "Sales order "
+ string(OrderDtl.Ordernum)
+ " has been created for "
+ string(Customer.name)
+ " RMA "
+ string(OrderDtl.RmaNum)
+ " Part # "
+ string(OrderDtl.PartNum)
+ " Quantity "
+ string(OrderDtl.OrderQty).


END.
ELSE DO:
Return "Cancel Send":U.
END.
END.
ELSE DO:
Return "Cancel Send":U.
END.


Cliff Drumeller
IT Manager
Mass Precision Sheetmetal
408 954 0200
Hi Cliff,



I am curious once the value OrderDtl.CheckBox01 is set to true won't

It be true until it is set back to false. The next find

Will then have the previous true flags and there will be

Multiple emails going out.



Just thought I'd ask.



Thanks,



John Mansfield

General Sheet Metal



-----Original Message-----
From: Cliff Drumeller [mailto:cliff@...]
Sent: Thursday, January 15, 2004 10:28 AM
To: VantageGroup (E-mail)
Subject: [Vantage] Functioning RMA Alert



Task: Send an email to multiple individuals when an RMA is issued.
The way we do business: When an RMA is issued we create a new dummy
Sales
Order for the parts with a due date of 6/6/66 until they are received
and
inspected. At that time the sales order is a properly filled out and the
proper date inserted.

Solution: Vantage 6 required. Customized Sales Order Detail screen to
include a new Toggle Box, Assigned it CheckBox01 field. Set up alert in
BAM
on OrderDtl.CheckBox01 to run the following Rma_Issued.p. It works on
the
state of the toggle box. Put a check in it and thirty seconds later the
emails go out. You can cut and paste this section into the procedure
editor.

{ud/GlbAlert.i &tablename = "OrderDtl" }

DEFINE VARIABLE NewEmailBofy AS CHARACTER NO-UNDO.

/*new email body*/
IF OrderDtl.OpenLine = TRUE

THEN DO:

FIND Customer WHERE (Customer.Company = OrderDtl.Company) AND
(Customer.Custnum = OrderDtl.Custnum)
NO-LOCK.
IF OrderDtl.CheckBox01 = TRUE
THEN DO:
ASSIGN Email-To = "person1@..., person2@...,
person3@..."
Email-Subject = "RMA Issued"
Email-Text = "Sales order "
+ string(OrderDtl.Ordernum)
+ " has been created for "
+ string(Customer.name)
+ " RMA "
+ string(OrderDtl.RmaNum)
+ " Part # "
+ string(OrderDtl.PartNum)
+ " Quantity "
+ string(OrderDtl.OrderQty).


END.
ELSE DO:
Return "Cancel Send":U.
END.
END.
ELSE DO:
Return "Cancel Send":U.
END.


Cliff Drumeller
IT Manager
Mass Precision Sheetmetal
408 954 0200



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/links



_____

Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/vantage/


* To unsubscribe from this group, send an email to:
vantage-unsubscribe@yahoogroups.com
<mailto:vantage-unsubscribe@yahoogroups.com?subject=Unsubscribe>


* Your use of Yahoo! Groups is subject to the Yahoo! Terms of
<http://docs.yahoo.com/info/terms/> Service.



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



Cliff and I have been working with each other off list.

The answer you are looking for is...



This is only fired upon the change in status of the filed. The next
time the check box is changed it will not be true.

You are setting this to trigger from the Business Activity Manager (for
those before 6.0 this is like a customizable change log). It only
triggers events based on the status of a filed changing. In this case
you are triggering on a change in value of CheckBox01.



This is also how other email alerts work in 6.0 and beyond.



Aaron Hoyt

Hittite Microwave Corporation



-----Original Message-----
From: John Mansfield [mailto:johnm@...]
Sent: Thursday, January 15, 2004 10:44 AM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Functioning RMA Alert



Hi Cliff,



I am curious once the value OrderDtl.CheckBox01 is set to true won't

It be true until it is set back to false. The next find

Will then have the previous true flags and there will be

Multiple emails going out.



Just thought I'd ask.



Thanks,



John Mansfield

General Sheet Metal



-----Original Message-----
From: Cliff Drumeller [mailto:cliff@...]
Sent: Thursday, January 15, 2004 10:28 AM
To: VantageGroup (E-mail)
Subject: [Vantage] Functioning RMA Alert



Task: Send an email to multiple individuals when an RMA is issued.
The way we do business: When an RMA is issued we create a new dummy
Sales
Order for the parts with a due date of 6/6/66 until they are received
and
inspected. At that time the sales order is a properly filled out and the
proper date inserted.

Solution: Vantage 6 required. Customized Sales Order Detail screen to
include a new Toggle Box, Assigned it CheckBox01 field. Set up alert in
BAM
on OrderDtl.CheckBox01 to run the following Rma_Issued.p. It works on
the
state of the toggle box. Put a check in it and thirty seconds later the
emails go out. You can cut and paste this section into the procedure
editor.

{ud/GlbAlert.i &tablename = "OrderDtl" }

DEFINE VARIABLE NewEmailBofy AS CHARACTER NO-UNDO.

/*new email body*/
IF OrderDtl.OpenLine = TRUE

THEN DO:

FIND Customer WHERE (Customer.Company = OrderDtl.Company) AND
(Customer.Custnum = OrderDtl.Custnum)
NO-LOCK.
IF OrderDtl.CheckBox01 = TRUE
THEN DO:
ASSIGN Email-To = "person1@..., person2@...,
person3@..."
Email-Subject = "RMA Issued"
Email-Text = "Sales order "
+ string(OrderDtl.Ordernum)
+ " has been created for "
+ string(Customer.name)
+ " RMA "
+ string(OrderDtl.RmaNum)
+ " Part # "
+ string(OrderDtl.PartNum)
+ " Quantity "
+ string(OrderDtl.OrderQty).


END.
ELSE DO:
Return "Cancel Send":U.
END.
END.
ELSE DO:
Return "Cancel Send":U.
END.


Cliff Drumeller
IT Manager
Mass Precision Sheetmetal
408 954 0200



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/>
<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/links



_____

Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/vantage/


* To unsubscribe from this group, send an email to:
vantage-unsubscribe@yahoogroups.com
<mailto:vantage-unsubscribe@yahoogroups.com?subject=Unsubscribe>


* Your use of Yahoo! Groups is subject to the Yahoo! Terms of
<http://docs.yahoo.com/info/terms/> Service.



[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/links



_____

Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/vantage/


* To unsubscribe from this group, send an email to:
vantage-unsubscribe@yahoogroups.com
<mailto:vantage-unsubscribe@yahoogroups.com?subject=Unsubscribe>


* Your use of Yahoo! Groups is subject to the Yahoo! Terms of
<http://docs.yahoo.com/info/terms/> Service.



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



I am interested in using global alerts inside BAM.

Where do you find info on writing *.p files for this purpose?

We would like to be able to trigger off of changes to Boolean fields ie.
Appoved from PartRev for example.

Is it possible to send an email out when this field changes from within
Vantage?

Thank you for your response,



John Mansfield

General Sheet Metal



-----Original Message-----
From: Aaron Hoyt [mailto:hoyt@...]
Sent: Thursday, January 15, 2004 10:56 AM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Functioning RMA Alert



John,



Cliff and I have been working with each other off list.

The answer you are looking for is...



This is only fired upon the change in status of the filed. The next
time the check box is changed it will not be true.

You are setting this to trigger from the Business Activity Manager (for
those before 6.0 this is like a customizable change log). It only
triggers events based on the status of a filed changing. In this case
you are triggering on a change in value of CheckBox01.



This is also how other email alerts work in 6.0 and beyond.



Aaron Hoyt

Hittite Microwave Corporation



-----Original Message-----
From: John Mansfield [mailto:johnm@...]
Sent: Thursday, January 15, 2004 10:44 AM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Functioning RMA Alert



Hi Cliff,



I am curious once the value OrderDtl.CheckBox01 is set to true won't

It be true until it is set back to false. The next find

Will then have the previous true flags and there will be

Multiple emails going out.



Just thought I'd ask.



Thanks,



John Mansfield

General Sheet Metal



-----Original Message-----
From: Cliff Drumeller [mailto:cliff@...]
Sent: Thursday, January 15, 2004 10:28 AM
To: VantageGroup (E-mail)
Subject: [Vantage] Functioning RMA Alert



Task: Send an email to multiple individuals when an RMA is issued.
The way we do business: When an RMA is issued we create a new dummy
Sales
Order for the parts with a due date of 6/6/66 until they are received
and
inspected. At that time the sales order is a properly filled out and the
proper date inserted.

Solution: Vantage 6 required. Customized Sales Order Detail screen to
include a new Toggle Box, Assigned it CheckBox01 field. Set up alert in
BAM
on OrderDtl.CheckBox01 to run the following Rma_Issued.p. It works on
the
state of the toggle box. Put a check in it and thirty seconds later the
emails go out. You can cut and paste this section into the procedure
editor.

{ud/GlbAlert.i &tablename = "OrderDtl" }

DEFINE VARIABLE NewEmailBofy AS CHARACTER NO-UNDO.

/*new email body*/
IF OrderDtl.OpenLine = TRUE

THEN DO:

FIND Customer WHERE (Customer.Company = OrderDtl.Company) AND
(Customer.Custnum = OrderDtl.Custnum)
NO-LOCK.
IF OrderDtl.CheckBox01 = TRUE
THEN DO:
ASSIGN Email-To = "person1@..., person2@...,
person3@..."
Email-Subject = "RMA Issued"
Email-Text = "Sales order "
+ string(OrderDtl.Ordernum)
+ " has been created for "
+ string(Customer.name)
+ " RMA "
+ string(OrderDtl.RmaNum)
+ " Part # "
+ string(OrderDtl.PartNum)
+ " Quantity "
+ string(OrderDtl.OrderQty).


END.
ELSE DO:
Return "Cancel Send":U.
END.
END.
ELSE DO:
Return "Cancel Send":U.
END.


Cliff Drumeller
IT Manager
Mass Precision Sheetmetal
408 954 0200



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/>
<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/links



_____

Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/vantage/


* To unsubscribe from this group, send an email to:
vantage-unsubscribe@yahoogroups.com
<mailto:vantage-unsubscribe@yahoogroups.com?subject=Unsubscribe>


* Your use of Yahoo! Groups is subject to the Yahoo! Terms of
<http://docs.yahoo.com/info/terms/> Service.



[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/>
<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/links



_____

Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/vantage/


* To unsubscribe from this group, send an email to:
vantage-unsubscribe@yahoogroups.com
<mailto:vantage-unsubscribe@yahoogroups.com?subject=Unsubscribe>


* Your use of Yahoo! Groups is subject to the Yahoo! Terms of
<http://docs.yahoo.com/info/terms/> Service.



[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/links



_____

Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/vantage/


* To unsubscribe from this group, send an email to:
vantage-unsubscribe@yahoogroups.com
<mailto:vantage-unsubscribe@yahoogroups.com?subject=Unsubscribe>


* Your use of Yahoo! Groups is subject to the Yahoo! Terms of
<http://docs.yahoo.com/info/terms/> Service.



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