Serial Number Assignment

Thank you all. I brain faded. and kept the DataType as "Integer

-----Original Message-----
From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of
Steven
Sent: Tuesday, December 01, 2009 2:56 PM
To: vantage@yahoogroups.com
Subject: [Vantage] Serial Number Assignment




I tried to reply twice to this and my emails just vanished into never never
land.

I just tried this in a calculated field of a BAQ on the SNTran table:
STRING(SNTran.SysTime, "HH:MM:SS")

It worked. Make sure Format is blank and Data Type is Character. Another
problem you might have is if this is a joined table, then maybe some of the
records returned don't have a SNTran linked to the parent table and this
would return a null if it was an OuterJoin. A null would probably result in
an error in a calculated field.

I also tried this and it worked:
String(DateTime(SNTran.SysDate, (SNTran.SysTime * 1000)), "99/99/9999
HH:MM:SSa")

Again, set the Data Type to Character. The built in Format field is flaky,
so I rarely use it.







[Non-text portions of this message have been removed]
The SNTran has a system date and time stamp for when serial numbers are
created in Serial Number Assignment for TranType ADJUST; great!

We have an issue where 100's of serial numbers are scanned for one job; the
problem is is that the grid view on Serial Number Assignment is sorted in
alphanumeric so the user wants to sort it in the order it was entered to see
the ones missed? I created a query that shows the serial numbers entered
with the date and time stamp; however the System Time shows up for example
as 35204...and in the xml it shows up as 10:39:39 AM...

I need to create a calculated formula to show up that time as minutes,
seconds, and milliseconds...as above.


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

STRING(timefield,"HH:MM:SS")

Where 'timefield' is your seconds-since-midnight integer value.

-bws
--
Brian W. Spolarich ~ Manager, Information Services ~ Advanced Photonix / Picometrix
    bspolarich@... ~ 734-864-5618 ~ www.advancedphotonix.com


-----Original Message-----
From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of advantage
Sent: Tuesday, December 01, 2009 12:00 PM
To: vantage@yahoogroups.com
Subject: [Vantage] Serial Number Assignment

The SNTran has a system date and time stamp for when serial numbers are
created in Serial Number Assignment for TranType ADJUST; great!

We have an issue where 100's of serial numbers are scanned for one job; the
problem is is that the grid view on Serial Number Assignment is sorted in
alphanumeric so the user wants to sort it in the order it was entered to see
the ones missed? I created a query that shows the serial numbers entered
with the date and time stamp; however the System Time shows up for example
as 35204...and in the xml it shows up as 10:39:39 AM...

I need to create a calculated formula to show up that time as minutes,
seconds, and milliseconds...as above.


[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
ok, so if it is the SNTran table. Then my calculated field would look like
this?

STRING(SNTran.SysTime,"HH:MM:SS") I get a syntax error?

-----Original Message-----
From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of
Brian W. Spolarich
Sent: Tuesday, December 01, 2009 12:04 PM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Serial Number Assignment




Try this:

STRING(timefield,"HH:MM:SS")

Where 'timefield' is your seconds-since-midnight integer value.

-bws
--
Brian W. Spolarich ~ Manager, Information Services ~ Advanced Photonix /
Picometrix
bspolarich@advanced <mailto:bspolarich%40advancedphotonix.com>
photonix.com ~ 734-864-5618 ~ www.advancedphotonix.com

-----Original Message-----
From: vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com
[mailto:vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com] On
Behalf Of advantage
Sent: Tuesday, December 01, 2009 12:00 PM
To: vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com
Subject: [Vantage] Serial Number Assignment

The SNTran has a system date and time stamp for when serial numbers are
created in Serial Number Assignment for TranType ADJUST; great!

We have an issue where 100's of serial numbers are scanned for one job; the
problem is is that the grid view on Serial Number Assignment is sorted in
alphanumeric so the user wants to sort it in the order it was entered to see
the ones missed? I created a query that shows the serial numbers entered
with the date and time stamp; however the System Time shows up for example
as 35204...and in the xml it shows up as 10:39:39 AM...

I need to create a calculated formula to show up that time as minutes,
seconds, and milliseconds...as above.

[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.
<http://groups.yahoo.com/group/vantage/files/.>
yahoo.com/group/vantage/files/.
(2) To search through old msg's goto: http://groups.
<http://groups.yahoo.com/group/vantage/messages>
yahoo.com/group/vantage/messages
(3) To view links to Vendors that provide Vantage services goto:
http://groups. <http://groups.yahoo.com/group/vantage/linksYahoo>
yahoo.com/group/vantage/linksYahoo! Groups Links







[Non-text portions of this message have been removed]
Well I can get it to not syntax error, but it doesn't do anything for me but return the same integer value.

The 4GL handbook suggests that the STRING function should format this time value as you would expect.

I also tried to do this using division and MODULO operators, but I get the same problem -- randomly in my output I get the Systime integer value.

Clearly there is something fundamental that I don't understand about how the 4GL environment that one can use in the calculated field context.

-bws

--
Brian W. Spolarich ~ Manager, Information Services ~ Advanced Photonix / Picometrix
    bspolarich@... ~ 734-864-5618 ~ www.advancedphotonix.com


-----Original Message-----
From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of advantage
Sent: Tuesday, December 01, 2009 12:36 PM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Serial Number Assignment

ok, so if it is the SNTran table. Then my calculated field would look like
this?

STRING(SNTran.SysTime,"HH:MM:SS") I get a syntax error?

-----Original Message-----
From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of
Brian W. Spolarich
Sent: Tuesday, December 01, 2009 12:04 PM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Serial Number Assignment




Try this:

STRING(timefield,"HH:MM:SS")

Where 'timefield' is your seconds-since-midnight integer value.

-bws
--
Brian W. Spolarich ~ Manager, Information Services ~ Advanced Photonix /
Picometrix
bspolarich@advanced <mailto:bspolarich%40advancedphotonix.com>
photonix.com ~ 734-864-5618 ~ www.advancedphotonix.com

-----Original Message-----
From: vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com
[mailto:vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com] On
Behalf Of advantage
Sent: Tuesday, December 01, 2009 12:00 PM
To: vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com
Subject: [Vantage] Serial Number Assignment

The SNTran has a system date and time stamp for when serial numbers are
created in Serial Number Assignment for TranType ADJUST; great!

We have an issue where 100's of serial numbers are scanned for one job; the
problem is is that the grid view on Serial Number Assignment is sorted in
alphanumeric so the user wants to sort it in the order it was entered to see
the ones missed? I created a query that shows the serial numbers entered
with the date and time stamp; however the System Time shows up for example
as 35204...and in the xml it shows up as 10:39:39 AM...

I need to create a calculated formula to show up that time as minutes,
seconds, and milliseconds...as above.

[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.
<http://groups.yahoo.com/group/vantage/files/.>
yahoo.com/group/vantage/files/.
(2) To search through old msg's goto: http://groups.
<http://groups.yahoo.com/group/vantage/messages>
yahoo.com/group/vantage/messages
(3) To view links to Vendors that provide Vantage services goto:
http://groups. <http://groups.yahoo.com/group/vantage/linksYahoo>
yahoo.com/group/vantage/linksYahoo! Groups Links







[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
Depending on what you are doing you could try:

DISPLAY STRING(timefield,"HH:MM:SS").

Jim

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of Brian W. Spolarich
Sent: Tuesday, December 01, 2009 12:14 PM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Serial Number Assignment



Well I can get it to not syntax error, but it doesn't do anything for me but return the same integer value.

The 4GL handbook suggests that the STRING function should format this time value as you would expect.

I also tried to do this using division and MODULO operators, but I get the same problem -- randomly in my output I get the Systime integer value.

Clearly there is something fundamental that I don't understand about how the 4GL environment that one can use in the calculated field context.

-bws

--
Brian W. Spolarich ~ Manager, Information Services ~ Advanced Photonix / Picometrix
bspolarich@...<mailto:bspolarich%40advancedphotonix.com> ~ 734-864-5618 ~ www.advancedphotonix.com

-----Original Message-----
From: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> [mailto:vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>] On Behalf Of advantage
Sent: Tuesday, December 01, 2009 12:36 PM
To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>
Subject: RE: [Vantage] Serial Number Assignment

ok, so if it is the SNTran table. Then my calculated field would look like
this?

STRING(SNTran.SysTime,"HH:MM:SS") I get a syntax error?

-----Original Message-----
From: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> [mailto:vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>] On Behalf Of
Brian W. Spolarich
Sent: Tuesday, December 01, 2009 12:04 PM
To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>
Subject: RE: [Vantage] Serial Number Assignment

Try this:

STRING(timefield,"HH:MM:SS")

Where 'timefield' is your seconds-since-midnight integer value.

-bws
--
Brian W. Spolarich ~ Manager, Information Services ~ Advanced Photonix /
Picometrix
bspolarich@advanced <mailto:bspolarich%40advancedphotonix.com>
photonix.com ~ 734-864-5618 ~ www.advancedphotonix.com

-----Original Message-----
From: vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com
[mailto:vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com] On
Behalf Of advantage
Sent: Tuesday, December 01, 2009 12:00 PM
To: vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com
Subject: [Vantage] Serial Number Assignment

The SNTran has a system date and time stamp for when serial numbers are
created in Serial Number Assignment for TranType ADJUST; great!

We have an issue where 100's of serial numbers are scanned for one job; the
problem is is that the grid view on Serial Number Assignment is sorted in
alphanumeric so the user wants to sort it in the order it was entered to see
the ones missed? I created a query that shows the serial numbers entered
with the date and time stamp; however the System Time shows up for example
as 35204...and in the xml it shows up as 10:39:39 AM...

I need to create a calculated formula to show up that time as minutes,
seconds, and milliseconds...as above.

[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.
<http://groups.yahoo.com/group/vantage/files/.<http://groups.yahoo.com/group/vantage/files/>>
yahoo.com/group/vantage/files/.
(2) To search through old msg's goto: http://groups.
<http://groups.yahoo.com/group/vantage/messages>
yahoo.com/group/vantage/messages
(3) To view links to Vendors that provide Vantage services goto:
http://groups. <http://groups.yahoo.com/group/vantage/linksYahoo>
yahoo.com/group/vantage/linksYahoo! Groups Links

[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]
No joy. The DISPLAY keyword generates a syntax error. Without it, the STRING function just returns the six-digit timestamp value. That makes no #*$@ing sense. :-)

--
Brian W. Spolarich ~ Manager, Information Services ~ Advanced Photonix / Picometrix
    bspolarich@... ~ 734-864-5618 ~ www.advancedphotonix.com


-----Original Message-----
From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of Jim Mediger
Sent: Tuesday, December 01, 2009 2:18 PM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Serial Number Assignment

Depending on what you are doing you could try:

DISPLAY STRING(timefield,"HH:MM:SS").

Jim

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of Brian W. Spolarich
Sent: Tuesday, December 01, 2009 12:14 PM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Serial Number Assignment



Well I can get it to not syntax error, but it doesn't do anything for me but return the same integer value.

The 4GL handbook suggests that the STRING function should format this time value as you would expect.

I also tried to do this using division and MODULO operators, but I get the same problem -- randomly in my output I get the Systime integer value.

Clearly there is something fundamental that I don't understand about how the 4GL environment that one can use in the calculated field context.

-bws

--
Brian W. Spolarich ~ Manager, Information Services ~ Advanced Photonix / Picometrix
bspolarich@...<mailto:bspolarich%40advancedphotonix.com> ~ 734-864-5618 ~ www.advancedphotonix.com

-----Original Message-----
From: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> [mailto:vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>] On Behalf Of advantage
Sent: Tuesday, December 01, 2009 12:36 PM
To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>
Subject: RE: [Vantage] Serial Number Assignment

ok, so if it is the SNTran table. Then my calculated field would look like
this?

STRING(SNTran.SysTime,"HH:MM:SS") I get a syntax error?

-----Original Message-----
From: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> [mailto:vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>] On Behalf Of
Brian W. Spolarich
Sent: Tuesday, December 01, 2009 12:04 PM
To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>
Subject: RE: [Vantage] Serial Number Assignment

Try this:

STRING(timefield,"HH:MM:SS")

Where 'timefield' is your seconds-since-midnight integer value.

-bws
--
Brian W. Spolarich ~ Manager, Information Services ~ Advanced Photonix /
Picometrix
bspolarich@advanced <mailto:bspolarich%40advancedphotonix.com>
photonix.com ~ 734-864-5618 ~ www.advancedphotonix.com

-----Original Message-----
From: vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com
[mailto:vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com] On
Behalf Of advantage
Sent: Tuesday, December 01, 2009 12:00 PM
To: vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com
Subject: [Vantage] Serial Number Assignment

The SNTran has a system date and time stamp for when serial numbers are
created in Serial Number Assignment for TranType ADJUST; great!

We have an issue where 100's of serial numbers are scanned for one job; the
problem is is that the grid view on Serial Number Assignment is sorted in
alphanumeric so the user wants to sort it in the order it was entered to see
the ones missed? I created a query that shows the serial numbers entered
with the date and time stamp; however the System Time shows up for example
as 35204...and in the xml it shows up as 10:39:39 AM...

I need to create a calculated formula to show up that time as minutes,
seconds, and milliseconds...as above.

[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.
<http://groups.yahoo.com/group/vantage/files/.<http://groups.yahoo.com/group/vantage/files/>>
yahoo.com/group/vantage/files/.
(2) To search through old msg's goto: http://groups.
<http://groups.yahoo.com/group/vantage/messages>
yahoo.com/group/vantage/messages
(3) To view links to Vendors that provide Vantage services goto:
http://groups. <http://groups.yahoo.com/group/vantage/linksYahoo>
yahoo.com/group/vantage/linksYahoo! Groups Links

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



------------------------------------

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
I tried to reply twice to this and my emails just vanished into never never land.

I just tried this in a calculated field of a BAQ on the SNTran table:
STRING(SNTran.SysTime, "HH:MM:SS")

It worked. Make sure Format is blank and Data Type is Character. Another problem you might have is if this is a joined table, then maybe some of the records returned don't have a SNTran linked to the parent table and this would return a null if it was an OuterJoin. A null would probably result in an error in a calculated field.

I also tried this and it worked:
String(DateTime(SNTran.SysDate, (SNTran.SysTime * 1000)), "99/99/9999 HH:MM:SSa")

Again, set the Data Type to Character. The built in Format field is flaky, so I rarely use it.
I was having similar problems (on the same table, no less) and solved it by going old school:

String(Truncate(SNTran.SysTime / 3600, 0),'99') + ':' + String(Truncate(((SNTran.SysTime / 3600) - Truncate(SNTran.SysTime / 3600, 0)) * 60, 0),'99')

Data Type: Character

I was just using it for a dashboard display where the seconds weren't important so I stopped at minutes out of sheer laziness, but you could add more ugly math on the end if you need the seconds.


--- In vantage@yahoogroups.com, "Brian W. Spolarich " <bspolarich@...> wrote:
>
> Well I can get it to not syntax error, but it doesn't do anything for me but return the same integer value.
>
> The 4GL handbook suggests that the STRING function should format this time value as you would expect.
>
> I also tried to do this using division and MODULO operators, but I get the same problem -- randomly in my output I get the Systime integer value.
>
> Clearly there is something fundamental that I don't understand about how the 4GL environment that one can use in the calculated field context.
>
> -bws
>
> --
> Brian W. Spolarich ~ Manager, Information Services ~ Advanced Photonix / Picometrix
> Â Â Â Â bspolarich@... ~ 734-864-5618 ~ www.advancedphotonix.com
>
>
> -----Original Message-----
> From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of advantage
> Sent: Tuesday, December 01, 2009 12:36 PM
> To: vantage@yahoogroups.com
> Subject: RE: [Vantage] Serial Number Assignment
>
> ok, so if it is the SNTran table. Then my calculated field would look like
> this?
>
> STRING(SNTran.SysTime,"HH:MM:SS") I get a syntax error?
>
> -----Original Message-----
> From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of
> Brian W. Spolarich
> Sent: Tuesday, December 01, 2009 12:04 PM
> To: vantage@yahoogroups.com
> Subject: RE: [Vantage] Serial Number Assignment
>
>
>
>
> Try this:
>
> STRING(timefield,"HH:MM:SS")
>
> Where 'timefield' is your seconds-since-midnight integer value.
>
> -bws
> --
> Brian W. Spolarich ~ Manager, Information Services ~ Advanced Photonix /
> Picometrix
> bspolarich@advanced <mailto:bspolarich%40advancedphotonix.com>
> photonix.com ~ 734-864-5618 ~ www.advancedphotonix.com
>
> -----Original Message-----
> From: vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com
> [mailto:vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com] On
> Behalf Of advantage
> Sent: Tuesday, December 01, 2009 12:00 PM
> To: vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com
> Subject: [Vantage] Serial Number Assignment
>
> The SNTran has a system date and time stamp for when serial numbers are
> created in Serial Number Assignment for TranType ADJUST; great!
>
> We have an issue where 100's of serial numbers are scanned for one job; the
> problem is is that the grid view on Serial Number Assignment is sorted in
> alphanumeric so the user wants to sort it in the order it was entered to see
> the ones missed? I created a query that shows the serial numbers entered
> with the date and time stamp; however the System Time shows up for example
> as 35204...and in the xml it shows up as 10:39:39 AM...
>
> I need to create a calculated formula to show up that time as minutes,
> seconds, and milliseconds...as above.
>
> [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.
> <http://groups.yahoo.com/group/vantage/files/.>
> yahoo.com/group/vantage/files/.
> (2) To search through old msg's goto: http://groups.
> <http://groups.yahoo.com/group/vantage/messages>
> yahoo.com/group/vantage/messages
> (3) To view links to Vendors that provide Vantage services goto:
> http://groups. <http://groups.yahoo.com/group/vantage/linksYahoo>
> yahoo.com/group/vantage/linksYahoo! Groups Links
>
>
>
>
>
>
>
> [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
>