Off topic Net Meeting

If you set up VPN and Remote Access, you would only have to open one port.
Once the user is authenticated and inside the network, they could Net
Meeting to their hearts content. For a Microsoft PPTP VPN, I open port
1723. That's it. The client receives an IP address inside my network
(trusted), so they have access to all the machines on our internal LAN. If
Fred wants to use Net Meeting, but Joe prefers Terminal Services and Jim
wants to use VNC, it doesn't change my configuration at all. All three
authenticate the same way, then they're in.


Christopher Gitzlaff
Manager - Information Systems & Technology
Major Industries, Inc.
Phone: 715-842-4616
Fax: 715-848-3336





-----Original Message-----
From: Paul Lipham [mailto:pml@...]
Sent: Wednesday, July 24, 2002 10:39 AM
To: vantage@yahoogroups.com
Subject: [Vantage] Off topic Net Meeting


We have a potential customer wanting to use MS Net Meeting with some of our
engineers. I added a built in Proxy on our firewall for H323 systems such
as Net Meeting It only opens up about three different ports. On Microsoft's
web site they say to open all the following ports.

This sounds pretty risky to me. Anyone care to scare my pants off about
this or does it sound OK.


Port Purpose
-------------------------------------
389 Internet Locator Server [Transmission Control Protocol (TCP)]
522 User Location Server (TCP)
1503 T.120 (TCP)
1720 H.323 call setup (TCP)
1731 Audio call control (TCP)
Dynamic H.323 call control (TCP)
* Pass through primary TCP connections on ports 522, 389, 1503, 1720
and 1731.
* Pass through secondary UDP connections on dynamically assigned
ports (1024-65535).
Dynamic H.323 streaming [Realtime Transport Protocol (RTP) over User
Datagram Protocol (UDP)]

Thanks for any comments
Paul Lipham
Alabama Specialty Products, Inc.


[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

Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
I am trying to do several RB reports and what few skills I had after the
beginning class have gotten really rusty (can you hear my fingers
creaking?). I am trying to eliminate any voided PO release $ from a report
summarizing PO's issued to a job. I basically want to say: If PORel.Void
Release is yes, print void, otherwise print the calculated field (ExtCost)
that represents the extended cost for the PO release. No matter how I try
to configure my "If" statement, I end up with an error saying I have an
invalid operation.

I started with this statement: IIf (Void Release = yes,"Void",ExtCost). I
tried testing existing Vantage field instead of my calculated field, and it
still didn't work. I know I must be missing something really simple. Any
ideas?
Nora
=======================================================================
Nora Story
Spectra Technologies, Inc.
Project Administrator
1505 Royal Parkway

Phone: 817-540-4475 ext.105
Euless, Texas 76040
Fax: 817-540-4439
Nora_Story@...
=======================================================================




[Non-text portions of this message have been removed]
Nora,
One thing is that the VBreport syntax doesn't like diferent data types.
Example: IIF(1=1,"yes", 1) This will return an error because option one is
text and option 2 is neumeric. If you arent doing any other calculations on
your result, then you would want your formula to look like IIf (Void
Release = yes,"Void",string(ExtCost)). But if you if you need to perform
other calculation you could create a second calculated field and do this.
IIf (Void Release = yes,0,string(ExtCost)). IIf (Void Release =
yes,"Void"," "). Then You can park your "VOID" selection whereever its
appropriate to see.
Shirley

-----Original Message-----
From: Nora Story [mailto:Nora_Story@...]
Sent: Tuesday, July 23, 2002 12:51 PM
To: vantage@yahoogroups. Com
Subject: [Vantage] RB Calculated Field Question


I am trying to do several RB reports and what few skills I had after the
beginning class have gotten really rusty (can you hear my fingers
creaking?). I am trying to eliminate any voided PO release $ from a
report
summarizing PO's issued to a job. I basically want to say: If PORel.Void
Release is yes, print void, otherwise print the calculated field
(ExtCost)
that represents the extended cost for the PO release. No matter how I try
to configure my "If" statement, I end up with an error saying I have an
invalid operation.

I started with this statement: IIf (Void Release = yes,"Void",ExtCost).
I
tried testing existing Vantage field instead of my calculated field, and
it
still didn't work. I know I must be missing something really simple. Any
ideas?
Nora
=======================================================================
Nora Story
Spectra Technologies, Inc.
Project Administrator
1505 Royal Parkway

Phone: 817-540-4475 ext.105
Euless, Texas 76040
Fax: 817-540-4439
Nora_Story@...
=======================================================================




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


Yahoo! Groups Sponsor
ADVERTISEMENT



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

Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



[Non-text portions of this message have been removed]
The neumeric version of that formula should have been IIf (Void Release =
yes,0,ExtCost). NOT: IIf (Void Release = yes,0,string(ExtCost)).

Shirley

-----Original Message-----
From: Shirley Graver [mailto:shirleyg@...]
Sent: Tuesday, July 23, 2002 1:04 PM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] RB Calculated Field Question


Nora,
One thing is that the VBreport syntax doesn't like diferent data
types.
Example: IIF(1=1,"yes", 1) This will return an error because option one
is
text and option 2 is neumeric. If you arent doing any other calculations
on
your result, then you would want your formula to look like IIf (Void
Release = yes,"Void",string(ExtCost)). But if you if you need to perform
other calculation you could create a second calculated field and do this.
IIf (Void Release = yes,0,string(ExtCost)). IIf (Void Release =
yes,"Void"," "). Then You can park your "VOID" selection whereever its
appropriate to see.
Shirley

-----Original Message-----
From: Nora Story [mailto:Nora_Story@...]
Sent: Tuesday, July 23, 2002 12:51 PM
To: vantage@yahoogroups. Com
Subject: [Vantage] RB Calculated Field Question


I am trying to do several RB reports and what few skills I had after the
beginning class have gotten really rusty (can you hear my fingers
creaking?). I am trying to eliminate any voided PO release $ from a
report
summarizing PO's issued to a job. I basically want to say: If
PORel.Void
Release is yes, print void, otherwise print the calculated field
(ExtCost)
that represents the extended cost for the PO release. No matter how I
try
to configure my "If" statement, I end up with an error saying I have an
invalid operation.

I started with this statement: IIf (Void Release = yes,"Void",ExtCost).
I
tried testing existing Vantage field instead of my calculated field, and
it
still didn't work. I know I must be missing something really simple.
Any
ideas?
Nora
=======================================================================
Nora Story
Spectra Technologies, Inc.
Project Administrator
1505 Royal Parkway

Phone: 817-540-4475 ext.105
Euless, Texas 76040
Fax: 817-540-4439
Nora_Story@...
=======================================================================




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


Yahoo! Groups Sponsor
ADVERTISEMENT



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

Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



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


Yahoo! Groups Sponsor
ADVERTISEMENT



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

Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



[Non-text portions of this message have been removed]
In cases like this I cheat and duplicate that report band with the one field
changed - either the value or the "Void" message - and then condition the
bands so only one or the other prints if the void flag is true or false.
-Todd C.

-----Original Message-----
From: Shirley Graver [mailto:shirleyg@...]
Sent: Tuesday, July 23, 2002 12:37 PM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] RB Calculated Field Question OOps


The neumeric version of that formula should have been IIf (Void Release =
yes,0,ExtCost). NOT: IIf (Void Release = yes,0,string(ExtCost)).

Shirley

-----Original Message-----
From: Shirley Graver [mailto:shirleyg@...]
Sent: Tuesday, July 23, 2002 1:04 PM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] RB Calculated Field Question


Nora,
One thing is that the VBreport syntax doesn't like diferent data
types.
Example: IIF(1=1,"yes", 1) This will return an error because option one
is
text and option 2 is neumeric. If you arent doing any other calculations
on
your result, then you would want your formula to look like IIf (Void
Release = yes,"Void",string(ExtCost)). But if you if you need to perform
other calculation you could create a second calculated field and do this.
IIf (Void Release = yes,0,string(ExtCost)). IIf (Void Release =
yes,"Void"," "). Then You can park your "VOID" selection whereever its
appropriate to see.
Shirley

-----Original Message-----
From: Nora Story [mailto:Nora_Story@...]
Sent: Tuesday, July 23, 2002 12:51 PM
To: vantage@yahoogroups. Com
Subject: [Vantage] RB Calculated Field Question


I am trying to do several RB reports and what few skills I had after the
beginning class have gotten really rusty (can you hear my fingers
creaking?). I am trying to eliminate any voided PO release $ from a
report
summarizing PO's issued to a job. I basically want to say: If
PORel.Void
Release is yes, print void, otherwise print the calculated field
(ExtCost)
that represents the extended cost for the PO release. No matter how I
try
to configure my "If" statement, I end up with an error saying I have an
invalid operation.

I started with this statement: IIf (Void Release = yes,"Void",ExtCost).
I
tried testing existing Vantage field instead of my calculated field, and
it
still didn't work. I know I must be missing something really simple.
Any
ideas?
Nora
=======================================================================
Nora Story
Spectra Technologies, Inc.
Project Administrator
1505 Royal Parkway

Phone: 817-540-4475 ext.105
Euless, Texas 76040
Fax: 817-540-4439
Nora_Story@...
=======================================================================




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


Yahoo! Groups Sponsor
ADVERTISEMENT



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

Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



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


Yahoo! Groups Sponsor
ADVERTISEMENT



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

Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



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



Yahoo! Groups Sponsor

ADVERTISEMENT

<http://rd.yahoo.com/M=228862.2128520.3581629.1829184/D=egroupweb/S=17050071
83:HM/A=1155069/R=0/*http://adfarm.mediaplex.com/ad/ck/990-1736-1039-302>


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

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




[Non-text portions of this message have been removed]
I use that too, Its a neat way to put a highlight on the one you want,
Todd's is a better solution.

Shirley

-----Original Message-----
From: Todd Caughey [mailto:caugheyt@...]
Sent: Tuesday, July 23, 2002 1:50 PM
To: 'vantage@yahoogroups.com'
Subject: RE: [Vantage] RB Calculated Field Question OOps


In cases like this I cheat and duplicate that report band with the one
field
changed - either the value or the "Void" message - and then condition the
bands so only one or the other prints if the void flag is true or false.
-Todd C.

-----Original Message-----
From: Shirley Graver [mailto:shirleyg@...]
Sent: Tuesday, July 23, 2002 12:37 PM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] RB Calculated Field Question OOps


The neumeric version of that formula should have been IIf (Void Release =
yes,0,ExtCost). NOT: IIf (Void Release = yes,0,string(ExtCost)).

Shirley

-----Original Message-----
From: Shirley Graver [mailto:shirleyg@...]
Sent: Tuesday, July 23, 2002 1:04 PM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] RB Calculated Field Question


Nora,
One thing is that the VBreport syntax doesn't like diferent data
types.
Example: IIF(1=1,"yes", 1) This will return an error because option
one
is
text and option 2 is neumeric. If you arent doing any other
calculations
on
your result, then you would want your formula to look like IIf (Void
Release = yes,"Void",string(ExtCost)). But if you if you need to perform
other calculation you could create a second calculated field and do
this.
IIf (Void Release = yes,0,string(ExtCost)). IIf (Void Release =
yes,"Void"," "). Then You can park your "VOID" selection whereever its
appropriate to see.
Shirley

-----Original Message-----
From: Nora Story [mailto:Nora_Story@...]
Sent: Tuesday, July 23, 2002 12:51 PM
To: vantage@yahoogroups. Com
Subject: [Vantage] RB Calculated Field Question


I am trying to do several RB reports and what few skills I had after
the
beginning class have gotten really rusty (can you hear my fingers
creaking?). I am trying to eliminate any voided PO release $ from a
report
summarizing PO's issued to a job. I basically want to say: If
PORel.Void
Release is yes, print void, otherwise print the calculated field
(ExtCost)
that represents the extended cost for the PO release. No matter how I
try
to configure my "If" statement, I end up with an error saying I have
an
invalid operation.

I started with this statement: IIf (Void Release =
yes,"Void",ExtCost).
I
tried testing existing Vantage field instead of my calculated field,
and
it
still didn't work. I know I must be missing something really simple.
Any
ideas?
Nora

=======================================================================
Nora Story
Spectra Technologies, Inc.
Project Administrator
1505 Royal Parkway

Phone: 817-540-4475 ext.105
Euless, Texas 76040
Fax: 817-540-4439
Nora_Story@...

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




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


Yahoo! Groups Sponsor
ADVERTISEMENT



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

Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



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


Yahoo! Groups Sponsor
ADVERTISEMENT



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

Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



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



Yahoo! Groups Sponsor

ADVERTISEMENT


<http://rd.yahoo.com/M=228862.2128520.3581629.1829184/D=egroupweb/S=17050071
83:HM/A=1155069/R=0/*http://adfarm.mediaplex.com/ad/ck/990-1736-1039-302>


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

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




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


Yahoo! Groups Sponsor
ADVERTISEMENT



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

Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



[Non-text portions of this message have been removed]
We have a potential customer wanting to use MS Net Meeting with some of our
engineers. I added a built in Proxy on our firewall for H323 systems such
as Net Meeting It only opens up about three different ports. On Microsoft�s
web site they say to open all the following ports.

This sounds pretty risky to me. Anyone care to scare my pants off about
this or does it sound OK.


Port Purpose
-------------------------------------
389 Internet Locator Server [Transmission Control Protocol (TCP)]
522 User Location Server (TCP)
1503 T.120 (TCP)
1720 H.323 call setup (TCP)
1731 Audio call control (TCP)
Dynamic H.323 call control (TCP)
* Pass through primary TCP connections on ports 522, 389, 1503, 1720
and 1731.
* Pass through secondary UDP connections on dynamically assigned
ports (1024-65535).
Dynamic H.323 streaming [Realtime Transport Protocol (RTP) over User
Datagram Protocol (UDP)]

Thanks for any comments
Paul Lipham
Alabama Specialty Products, Inc.


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