Security Blank Title 60561

T
Sent via BlackBerry by AT&T

-----Original Message-----
From: "Kersten MacLennan" <kmaclennan@...>

Date: Mon, 19 Nov 2007 13:46:50
To:<vantage@yahoogroups.com>
Subject: RE: [Vantage] Security


Here is the report that I have in Vista 8.03. It's kind of ugly but it
does provide the info


Kersten MacLennan
IT/ERP Analyst
Semrock, Inc.
3625 Buffalo Rd.,
Suite 6
Rochester, NY 14624
585-594-7009
585-594-7095 fax

kmaclennan@semrock. <mailto:kmaclennan%40semrock.com> com

The Standard in Optical Filters for Biotech & Analytical Instrumentation
More than 100,000 Ion Beam Sputtered filters delivered - extensive
inventory now!

The information contained in this message and any attachments may be
privileged, confidential, and protected from disclosure. If the reader
of this message is not the intended recipient, or any agent responsible
for delivering this message to the intended recipient, you are hereby
notified that any dissemination, distribution, or copying of this
communication may be unlawful and therefore strictly prohibited. If you
received this message in error, please reply to the message and delete
it. Thank you

________________________________

From: vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com [mailto:vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com] On Behalf
Of Todd Caughey
Sent: Monday, November 19, 2007 10:36 AM
To: vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com
Subject: RE: [Vantage] Security

For 6.1 there is a downloadable Report Builder PRL file with Security
reports on the EpicWeb downloads section. I've used it as a starting
point and I think at one point exported the info into a CSV format for
easier manipulation and reporting.
-Todd C.

________________________________
From: vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com <mailto:vantage%40yahoogroups.com>
[mailto:vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com <mailto:vantage%40yahoogroups.com> ] On
Behalf Of Tim Clark
Sent: Monday, November 19, 2007 9:07 AM
To: vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com <mailto:vantage%40yahoogroups.com>
Subject: [Vantage] Security

Good morning:

Does anyone know how to print out (if it's possible) all the security
setting in Vantage and who has what?

Vantage 6.10.542
Progress 9.1D

Thanks;

Tim Clark
Manager, Information Systems
General Sheet Metal Works

[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]
I cannot figure out how to use BPM to launch a Business Activity Query
Export Process. What I 'm trying to do is: Whenever an SO is released from
"On-hold", I want to write a file out with detailed data about this order.
BAQ Export Process can write out a file about the order. But In Epicor's
documentation, I can only use the scheduler to schedule the Business
Activity Query Export Process. I'd like to set it up so BPM can launch the
export process. Can someone help?



Thanks in advance.



Bill Wu



[Non-text portions of this message have been removed]
Bill,
Not having worked much with the BPM module, I would take a different
approach.
I would Create a BAM and write a .p progress procedure to be called by the
BAM and have it make the links, total, and whatever else you need, and then
have it export the information desired to a file. This will require some
knowledge of programming, database structure and some time, but I routinely
did similar functions in 6.1 to export .csv files from Vantage based on
events in the system, and then called label files to print based on the .csv
file. I have tested the export function in 8.03.400 and that still works,
so this could work if you can't get it going with a BPM or anything else
relatively easy.
Let us know if you would like to try a BAM, I know several of us know how to
make this happen, but I would exhaust the easy options first.
Best of luck,
Aaron Hoyt
Vantage Plastics
-----Original Message-----
From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com]On Behalf Of
Bill Wu
Sent: Monday, November 12, 2007 11:13 AM
To: vantage@yahoogroups.com
Subject: [Vantage] BPM and BAQ Export Process


I cannot figure out how to use BPM to launch a Business Activity Query
Export Process. What I 'm trying to do is: Whenever an SO is released from
"On-hold", I want to write a file out with detailed data about this order.
BAQ Export Process can write out a file about the order. But In Epicor's
documentation, I can only use the scheduler to schedule the Business
Activity Query Export Process. I'd like to set it up so BPM can launch the
export process. Can someone help?

Thanks in advance.

Bill Wu

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






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

Sounds like we are doing a similar thing to what you want to do. In
our situation, we needed to write a file out (in csv format) that
would be picked up by Service Connect. We do this when a user sets
OrderHed.Checkbox01 (through a BAM with an alert program). This .p
program that I am going to list then reads through the OrderRel
records, looks for releases without jobs, and writes a record to a
csv file (including logic to write a header on the first output
record). Most of this should be pretty self-explanatory.

Hope that helps.
Kevin Simon
Alfe Corporate Group


{ud/GlbAlert.i &TableName = "OrderHed"}
assign SendEmail = false.

DEFINE VARIABLE WroteHeader AS CHARACTER NO-UNDO.
DEFINE VARIABLE OutputFileName AS CHARACTER NO-UNDO.

Assign WroteHeader = "N".

IF OrderHed.Checkbox01 THEN DO:
for each OrderDtl where OrderDtl.Company = OrderHed.Company
and OrderDtl.OrderNum = OrderHed.OrderNum
and OrderDtl.OpenLine
NO-LOCK :
OrderRelBlock:
FOR EACH OrderRel WHERE OrderRel.Company = OrderDtl.Company
and OrderRel.OrderNum = OrderDtl.OrderNum
AND OrderRel.OrderLine = OrderDtl.OrderLine
NO-LOCK :
FIND First JobProd where (JobProd.Company = OrderRel.Company)
AND (JobProd.OrderNum = OrderRel.OrderNum)
AND (JobProd.OrderLine = OrderRel.OrderLine)
AND (JobProd.OrderRelNum = OrderRel.OrderRelNum)
NO-LOCK NO-ERROR.
IF NOT AVAILABLE JobProd then DO:
IF WroteHeader = "N" THEN DO:
ASSIGN OutputFileName = "E:\SvcConn\OJWUpdate\OJW" +
string(OrderDtl.OrderNum) + ".csv".
output to VALUE (OutputFileName).
PUT UNFORMATTED "CompanyID,OrderNum,OrderLine" SKIP.
ASSIGN WroteHeader = "Y".
END.
PUT UNFORMATTED OrderDtl.Company + "," + String
(OrderDtl.OrderNum) + "," + String(OrderDtl.OrderLine) SKIP.
LEAVE OrderRelBlock.
END.
END.
end.
IF WroteHeader = "Y" THEN
output close.
RUN lib\UpdateTableBuffer.p(input BUFFER
OrderHed:HANDLE, 'CheckBox01', False).
END.

===================================================================




--- In vantage@yahoogroups.com, "Aaron Hoyt" <aaron.hoyt@...> wrote:
>
> Bill,
> Not having worked much with the BPM module, I would take a different
> approach.
> I would Create a BAM and write a .p progress procedure to be called
by the
> BAM and have it make the links, total, and whatever else you need,
and then
> have it export the information desired to a file. This will
require some
> knowledge of programming, database structure and some time, but I
routinely
> did similar functions in 6.1 to export .csv files from Vantage
based on
> events in the system, and then called label files to print based on
the .csv
> file. I have tested the export function in 8.03.400 and that still
works,
> so this could work if you can't get it going with a BPM or anything
else
> relatively easy.
> Let us know if you would like to try a BAM, I know several of us
know how to
> make this happen, but I would exhaust the easy options first.
> Best of luck,
> Aaron Hoyt
> Vantage Plastics
> -----Original Message-----
> From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com]On
Behalf Of
> Bill Wu
> Sent: Monday, November 12, 2007 11:13 AM
> To: vantage@yahoogroups.com
> Subject: [Vantage] BPM and BAQ Export Process
>
>
> I cannot figure out how to use BPM to launch a Business Activity
Query
> Export Process. What I 'm trying to do is: Whenever an SO is
released from
> "On-hold", I want to write a file out with detailed data about
this order.
> BAQ Export Process can write out a file about the order. But In
Epicor's
> documentation, I can only use the scheduler to schedule the
Business
> Activity Query Export Process. I'd like to set it up so BPM can
launch the
> export process. Can someone help?
>
> Thanks in advance.
>
> Bill Wu
>
> [Non-text portions of this message have been removed]
>
>
>
>
>
>
> [Non-text portions of this message have been removed]
>
Bill:



It has been nice talking to you this week.



We have both agreed that exporting as a delimited file from a BAM trigger
was a better solution for you.



I have attached a sample BAM Progress program for your review. Add the
program to your program path ( I suggest c:\epicor\mfgsys\server\ud\test)
and then include the path and program name in your BAM definition in
Vantage.



Best wishes,



Carl D. Peterson, CPIM

Nexus Software, Inc.

Plymouth, Michigan 48170

1-734-812-9532 - Mobile

1-734-453-3101 - Office

1-734-455-9550 - Fax

cpeterson@...

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of
Bill Wu
Sent: Monday, November 12, 2007 11:13 AM
To: vantage@yahoogroups.com
Subject: [Vantage] BPM and BAQ Export Process



I cannot figure out how to use BPM to launch a Business Activity Query
Export Process. What I 'm trying to do is: Whenever an SO is released from
"On-hold", I want to write a file out with detailed data about this order.
BAQ Export Process can write out a file about the order. But In Epicor's
documentation, I can only use the scheduler to schedule the Business
Activity Query Export Process. I'd like to set it up so BPM can launch the
export process. Can someone help?

Thanks in advance.

Bill Wu

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





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



It has been nice talking to you this week.



We have both agreed that exporting as a delimited file from a BAM trigger
was a better solution for you.



I have attached a sample BAM Progress program below for your review. Add
the program to your program path ( I suggest
c:\epicor\mfgsys\server\ud\test) and then include the path and program name
in your BAM definition in Vantage.



Best wishes,





Carl D. Peterson, CPIM

Nexus Software, Inc.

Plymouth, Michigan 48170

1-734-812-9532 - Mobile

1-734-453-3101 - Office

1-734-455-9550 - Fax

cpeterson@...



/*------------------------------------------------------------------------



File: ud/test/BAM-Orderhed-held.p



Property of Carl Peterson

Nexus Software, Inc.

1-734-812-9532

cpeterson@...





Revision History:

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

11/13/07 cdp Initial Create.

----------------------------------------------------------------------------
------- */





{\\vantage-server\epicor\mfgsys803\server\ud/GlbAlert.i &TableName =
"Orderhed"}

sendemail = false.



define variable lSuccess as logical init false no-undo.

define variable cErrorMessage as character no-undo.



FIND FIRST company NO-LOCK NO-ERROR.



if (OrderHed.Orderheld <> OldOrderHed.orderheld) and

orderhed.orderheld = false then

do:

output to \\vantage-server\epicor\Test803\MagicSync\MagicSync.txt.

FOR each orderdtl NO-LOCK where orderdtl.company = orderhed.company

AND orderdtl.ordernum = orderhed.ordernum

AND orderdtl.openline = TRUE,

FIRST part NO-LOCK WHERE part.company = orderdtl.company

AND part.partnum = orderdtl.partnum,

last partrev where partrev.company = part.company

and partrev.partnum = part.partnum,

EACH orderrel NO-LOCK WHERE orderrel.company = orderdtl.company

AND orderrel.ordernum = orderdtl.ordernum

AND orderrel.orderline = orderdtl.orderline

AND orderrel.openrel = TRUE

AND orderrel.ourreqqty > orderrel.ourstockshippedqty.

EXPORT DELIMITER ","

orderhed.ordernum

orderhed.orderdate

orderhed.custnum

orderhed.shiptonum

orderhed.needbydate

orderhed.shipviacode

orderrel.ordernum

orderrel.orderline

orderrel.orderrel

orderdtl.partnum

orderrel.ourreqqty

orderrel.ourstockshippedqty

orderrel.reqdate

orderrel.changedate

orderrel.changedby

part.partnum

part.type /* purch or mfg */

part.method /* om - yes or no */

part.prodcode

partrev.revisionnum

part.partdesc.





END.



output close. pause(0).





end. /* if OrderHed.held <> OldOrderHed.held */

















From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of
Bill Wu
Sent: Monday, November 12, 2007 11:13 AM
To: vantage@yahoogroups.com
Subject: [Vantage] BPM and BAQ Export Process



I cannot figure out how to use BPM to launch a Business Activity Query
Export Process. What I 'm trying to do is: Whenever an SO is released from
"On-hold", I want to write a file out with detailed data about this order.
BAQ Export Process can write out a file about the order. But In Epicor's
documentation, I can only use the scheduler to schedule the Business
Activity Query Export Process. I'd like to set it up so BPM can launch the
export process. Can someone help?

Thanks in advance.

Bill Wu

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





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

Does anyone know how to print out (if it's possible) all the security setting in Vantage and who has what?

Vantage 6.10.542
Progress 9.1D

Thanks;

Tim Clark
Manager, Information Systems
General Sheet Metal Works


[Non-text portions of this message have been removed]
We are on ver 8.0 - and would like to be able to do the same thing.

Thanks.

Patrick R. Weaver
Division Controller
Altra Global Couplings

--- In vantage@yahoogroups.com, Tim Clark <tim.clark@...> wrote:
>
> Good morning:
>
> Does anyone know how to print out (if it's possible) all the
security setting in Vantage and who has what?
>
> Vantage 6.10.542
> Progress 9.1D
>
> Thanks;
>
> Tim Clark
> Manager, Information Systems
> General Sheet Metal Works
>
>
> [Non-text portions of this message have been removed]
>
Unfortunately, out of the can there is no report available. You would
have to create a custom report. I have been entertaining the idea of
creating one. If I do, I would be glad to share it with you - Monte
Tomerlin

--- In vantage@yahoogroups.com, "patrick.weaver" <patrick.weaver@...>
wrote:
>
> We are on ver 8.0 - and would like to be able to do the same thing.
>
> Thanks.
>
> Patrick R. Weaver
> Division Controller
> Altra Global Couplings
>
> --- In vantage@yahoogroups.com, Tim Clark <tim.clark@> wrote:
> >
> > Good morning:
> >
> > Does anyone know how to print out (if it's possible) all the
> security setting in Vantage and who has what?
> >
> > Vantage 6.10.542
> > Progress 9.1D
> >
> > Thanks;
> >
> > Tim Clark
> > Manager, Information Systems
> > General Sheet Metal Works
> >
> >
> > [Non-text portions of this message have been removed]
> >
>
Here's a couple that I was able to modify a bit to work in 6.1. They are a
little busy, once I could view the report with my data, I edited just to
make it easier to read.

For the future, I have 8.03.403 running in test environment. It has a
report called Menu Security Report.



_____

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of
patrick.weaver
Sent: Monday, November 19, 2007 10:13 AM
To: vantage@yahoogroups.com
Subject: [Vantage] Re: Security

We are on ver 8.0 - and would like to be able to do the same thing.

Thanks.

Patrick R. Weaver
Division Controller
Altra Global Couplings

--- In vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com, Tim
Clark <tim.clark@...> wrote:
>
> Good morning:
>
> Does anyone know how to print out (if it's possible) all the
security setting in Vantage and who has what?
>
> Vantage 6.10.542
> Progress 9.1D
>
> Thanks;
>
> Tim Clark
> Manager, Information Systems
> General Sheet Metal Works
>
>
> [Non-text portions of this message have been removed]
>



[Non-text portions of this message have been removed]
For 6.1 there is a downloadable Report Builder PRL file with Security reports on the EpicWeb downloads section. I've used it as a starting point and I think at one point exported the info into a CSV format for easier manipulation and reporting.
-Todd C.

________________________________
From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of Tim Clark
Sent: Monday, November 19, 2007 9:07 AM
To: vantage@yahoogroups.com
Subject: [Vantage] Security


Good morning:

Does anyone know how to print out (if it's possible) all the security setting in Vantage and who has what?

Vantage 6.10.542
Progress 9.1D

Thanks;

Tim Clark
Manager, Information Systems
General Sheet Metal Works

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





[Non-text portions of this message have been removed]
Here is the report that I have in Vista 8.03. It's kind of ugly but it
does provide the info


Kersten MacLennan
IT/ERP Analyst
Semrock, Inc.
3625 Buffalo Rd.,
Suite 6
Rochester, NY 14624
585-594-7009
585-594-7095 fax

kmaclennan@...

The Standard in Optical Filters for Biotech & Analytical Instrumentation
More than 100,000 Ion Beam Sputtered filters delivered - extensive
inventory now!

The information contained in this message and any attachments may be
privileged, confidential, and protected from disclosure. If the reader
of this message is not the intended recipient, or any agent responsible
for delivering this message to the intended recipient, you are hereby
notified that any dissemination, distribution, or copying of this
communication may be unlawful and therefore strictly prohibited. If you
received this message in error, please reply to the message and delete
it. Thank you




________________________________

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf
Of Todd Caughey
Sent: Monday, November 19, 2007 10:36 AM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Security



For 6.1 there is a downloadable Report Builder PRL file with Security
reports on the EpicWeb downloads section. I've used it as a starting
point and I think at one point exported the info into a CSV format for
easier manipulation and reporting.
-Todd C.

________________________________
From: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
[mailto:vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> ] On
Behalf Of Tim Clark
Sent: Monday, November 19, 2007 9:07 AM
To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
Subject: [Vantage] Security

Good morning:

Does anyone know how to print out (if it's possible) all the security
setting in Vantage and who has what?

Vantage 6.10.542
Progress 9.1D

Thanks;

Tim Clark
Manager, Information Systems
General Sheet Metal Works

[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]
Sorry the attachment must have been filtered off. I'll try again. I
renamed it with a .txt extension


Kersten MacLennan
IT/ERP Analyst
Semrock, Inc.
3625 Buffalo Rd.,
Suite 6
Rochester, NY 14624
585-594-7009
585-594-7095 fax

kmaclennan@...

The Standard in Optical Filters for Biotech & Analytical Instrumentation
More than 100,000 Ion Beam Sputtered filters delivered - extensive
inventory now!

The information contained in this message and any attachments may be
privileged, confidential, and protected from disclosure. If the reader
of this message is not the intended recipient, or any agent responsible
for delivering this message to the intended recipient, you are hereby
notified that any dissemination, distribution, or copying of this
communication may be unlawful and therefore strictly prohibited. If you
received this message in error, please reply to the message and delete
it. Thank you




________________________________

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf
Of Kersten MacLennan
Sent: Monday, November 19, 2007 1:47 PM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Security



Here is the report that I have in Vista 8.03. It's kind of ugly but it
does provide the info


Kersten MacLennan
IT/ERP Analyst
Semrock, Inc.
3625 Buffalo Rd.,
Suite 6
Rochester, NY 14624
585-594-7009
585-594-7095 fax

kmaclennan@... <mailto:kmaclennan%40semrock.com>

The Standard in Optical Filters for Biotech & Analytical Instrumentation
More than 100,000 Ion Beam Sputtered filters delivered - extensive
inventory now!

The information contained in this message and any attachments may be
privileged, confidential, and protected from disclosure. If the reader
of this message is not the intended recipient, or any agent responsible
for delivering this message to the intended recipient, you are hereby
notified that any dissemination, distribution, or copying of this
communication may be unlawful and therefore strictly prohibited. If you
received this message in error, please reply to the message and delete
it. Thank you

________________________________

From: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
[mailto:vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> ] On
Behalf
Of Todd Caughey
Sent: Monday, November 19, 2007 10:36 AM
To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
Subject: RE: [Vantage] Security

For 6.1 there is a downloadable Report Builder PRL file with Security
reports on the EpicWeb downloads section. I've used it as a starting
point and I think at one point exported the info into a CSV format for
easier manipulation and reporting.
-Todd C.

________________________________
From: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com>
[mailto:vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> ] On
Behalf Of Tim Clark
Sent: Monday, November 19, 2007 9:07 AM
To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com>
Subject: [Vantage] Security

Good morning:

Does anyone know how to print out (if it's possible) all the security
setting in Vantage and who has what?

Vantage 6.10.542
Progress 9.1D

Thanks;

Tim Clark
Manager, Information Systems
General Sheet Metal Works

[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]
If anyone wants it please contact me directly


Kersten MacLennan
IT/ERP Analyst
Semrock, Inc.
3625 Buffalo Rd.,
Suite 6
Rochester, NY 14624
585-594-7009
585-594-7095 fax

kmaclennan@...

The Standard in Optical Filters for Biotech & Analytical Instrumentation
More than 100,000 Ion Beam Sputtered filters delivered - extensive inventory now!

The information contained in this message and any attachments may be privileged, confidential, and protected from disclosure. If the reader of this message is not the intended recipient, or any agent responsible for delivering this message to the intended recipient, you are hereby notified that any dissemination, distribution, or copying of this communication may be unlawful and therefore strictly prohibited. If you received this message in error, please reply to the message and delete it. Thank you



-----Original Message-----
From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of Kersten MacLennan
Sent: Monday, November 19, 2007 1:51 PM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Security

Sorry the attachment must have been filtered off. I'll try again. I renamed it with a .txt extension


Kersten MacLennan
IT/ERP Analyst
Semrock, Inc.
3625 Buffalo Rd.,
Suite 6
Rochester, NY 14624
585-594-7009
585-594-7095 fax

kmaclennan@...

The Standard in Optical Filters for Biotech & Analytical Instrumentation More than 100,000 Ion Beam Sputtered filters delivered - extensive inventory now!

The information contained in this message and any attachments may be privileged, confidential, and protected from disclosure. If the reader of this message is not the intended recipient, or any agent responsible for delivering this message to the intended recipient, you are hereby notified that any dissemination, distribution, or copying of this communication may be unlawful and therefore strictly prohibited. If you received this message in error, please reply to the message and delete it. Thank you




________________________________

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of Kersten MacLennan
Sent: Monday, November 19, 2007 1:47 PM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Security



Here is the report that I have in Vista 8.03. It's kind of ugly but it does provide the info


Kersten MacLennan
IT/ERP Analyst
Semrock, Inc.
3625 Buffalo Rd.,
Suite 6
Rochester, NY 14624
585-594-7009
585-594-7095 fax

kmaclennan@... <mailto:kmaclennan%40semrock.com>

The Standard in Optical Filters for Biotech & Analytical Instrumentation More than 100,000 Ion Beam Sputtered filters delivered - extensive inventory now!

The information contained in this message and any attachments may be privileged, confidential, and protected from disclosure. If the reader of this message is not the intended recipient, or any agent responsible for delivering this message to the intended recipient, you are hereby notified that any dissemination, distribution, or copying of this communication may be unlawful and therefore strictly prohibited. If you received this message in error, please reply to the message and delete it. Thank you

________________________________

From: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
[mailto:vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> ] On Behalf Of Todd Caughey
Sent: Monday, November 19, 2007 10:36 AM
To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
Subject: RE: [Vantage] Security

For 6.1 there is a downloadable Report Builder PRL file with Security reports on the EpicWeb downloads section. I've used it as a starting point and I think at one point exported the info into a CSV format for easier manipulation and reporting.
-Todd C.

________________________________
From: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com>
[mailto:vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> ] On
Behalf Of Tim Clark
Sent: Monday, November 19, 2007 9:07 AM
To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com>
Subject: [Vantage] Security

Good morning:

Does anyone know how to print out (if it's possible) all the security setting in Vantage and who has what?

Vantage 6.10.542
Progress 9.1D

Thanks;

Tim Clark
Manager, Information Systems
General Sheet Metal Works

[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/links
Yahoo! Groups Links
There is a downloads section at the yahoo groups website where you could post things if you wanted to.



From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of Kersten MacLennan
Sent: Monday, November 19, 2007 1:52 PM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Security



If anyone wants it please contact me directly

Kersten MacLennan
IT/ERP Analyst
Semrock, Inc.
3625 Buffalo Rd.,
Suite 6
Rochester, NY 14624
585-594-7009
585-594-7095 fax

kmaclennan@... <mailto:kmaclennan%40semrock.com>

The Standard in Optical Filters for Biotech & Analytical Instrumentation
More than 100,000 Ion Beam Sputtered filters delivered - extensive inventory now!

The information contained in this message and any attachments may be privileged, confidential, and protected from disclosure. If the reader of this message is not the intended recipient, or any agent responsible for delivering this message to the intended recipient, you are hereby notified that any dissemination, distribution, or copying of this communication may be unlawful and therefore strictly prohibited. If you received this message in error, please reply to the message and delete it. Thank you

-----Original Message-----
From: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> [mailto:vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> ] On Behalf Of Kersten MacLennan
Sent: Monday, November 19, 2007 1:51 PM
To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
Subject: RE: [Vantage] Security

Sorry the attachment must have been filtered off. I'll try again. I renamed it with a .txt extension


Kersten MacLennan
IT/ERP Analyst
Semrock, Inc.
3625 Buffalo Rd.,
Suite 6
Rochester, NY 14624
585-594-7009
585-594-7095 fax

kmaclennan@... <mailto:kmaclennan%40semrock.com>

The Standard in Optical Filters for Biotech & Analytical Instrumentation More than 100,000 Ion Beam Sputtered filters delivered - extensive inventory now!

The information contained in this message and any attachments may be privileged, confidential, and protected from disclosure. If the reader of this message is not the intended recipient, or any agent responsible for delivering this message to the intended recipient, you are hereby notified that any dissemination, distribution, or copying of this communication may be unlawful and therefore strictly prohibited. If you received this message in error, please reply to the message and delete it. Thank you

________________________________

From: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> [mailto:vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> ] On Behalf Of Kersten MacLennan
Sent: Monday, November 19, 2007 1:47 PM
To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
Subject: RE: [Vantage] Security

Here is the report that I have in Vista 8.03. It's kind of ugly but it does provide the info

Kersten MacLennan
IT/ERP Analyst
Semrock, Inc.
3625 Buffalo Rd.,
Suite 6
Rochester, NY 14624
585-594-7009
585-594-7095 fax

kmaclennan@... <mailto:kmaclennan%40semrock.com> <mailto:kmaclennan%40semrock.com>

The Standard in Optical Filters for Biotech & Analytical Instrumentation More than 100,000 Ion Beam Sputtered filters delivered - extensive inventory now!

The information contained in this message and any attachments may be privileged, confidential, and protected from disclosure. If the reader of this message is not the intended recipient, or any agent responsible for delivering this message to the intended recipient, you are hereby notified that any dissemination, distribution, or copying of this communication may be unlawful and therefore strictly prohibited. If you received this message in error, please reply to the message and delete it. Thank you

________________________________

From: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
[mailto:vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com> ] On Behalf Of Todd Caughey
Sent: Monday, November 19, 2007 10:36 AM
To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
Subject: RE: [Vantage] Security

For 6.1 there is a downloadable Report Builder PRL file with Security reports on the EpicWeb downloads section. I've used it as a starting point and I think at one point exported the info into a CSV format for easier manipulation and reporting.
-Todd C.

________________________________
From: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com>
[mailto:vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> ] On
Behalf Of Tim Clark
Sent: Monday, November 19, 2007 9:07 AM
To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com>
Subject: [Vantage] Security

Good morning:

Does anyone know how to print out (if it's possible) all the security setting in Vantage and who has what?

Vantage 6.10.542
Progress 9.1D

Thanks;

Tim Clark
Manager, Information Systems
General Sheet Metal Works

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





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