Crystal Reports Web Component Setup

Jim,
As Wendy alluded to... I don't believe the Web Component is available in
CR 7. You may have to upgrade to CR 8 or better to obtain the "Web
Component Server (CR 8)" or "Crystal Enterprise (CR8.5)".

There is a booklet that describes the whole process with the CR 8
distribution.

Troy Funte
Liberty Electronics

-----Original Message-----
From: Jim Carnes [mailto:jcarnes@...]
Sent: Wednesday, July 02, 2003 10:02 AM
To: vantage@yahoogroups.com
Subject: [Vantage] Crystal Reports Web Component Setup


For those who have been there before maybe someone can save me some time.
I
am setting up a small web server to handle crystal report requests. I
have
up to this point used the compiled reports which has worked well but wonÂ’t
in this case. IÂ’m on Vantage 3 and CR 7. What are the basic steps to
publishing a report via a web page. Do I just make a link on a page to an
RPT? DoesnÂ’t sound right. Any help or ideas would be helpful. Until
them
IÂ’ll be nose deep in the intensely exciting UserÂ’s Guide with coffee in
hand.

Thanks in advance.

Jim Carnes
Information Systems
Kenlee Precision Corporation
1700 Morrell Park Ave
Baltimore, MD 21230
410-525-3800 x132





[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're going to be upgrade to v6 from v5.1 at the weekend and I've been
testing reports, etc, to make sure everything works the way it should. I've
come across a problem with a small progress programme that runs off a
vbform. It worked fine in v5.1 but it doesn't in v6, infact it doesn't do
anything. The programme itself isn't exactly rocket science so I can't see
why it wouldn't work. I'm hoping that you Progress experts, out there,
could tell me where I'm going wrong. I've included the code below.
Any assistance you could give me would be much appriciated.
Regards
Martin Horton
PRD Holdings Ltd
/* INCLUDE vbp/vb.i SO THAT VantageBasic FUNCTIONS ARE AVAILABLE. */
{vbp/vb.i}

/******************* VB FORM FIELDS USED ***************************/
/* from part record */
&SCOPED-DEFINE partfactor part.purchasingfactor
&SCOPED-DEFINE partAVG part.avgmaterialcost
&SCOPED-DEFINE partLast part.lastmaterialcost
/* this means {&partfactor} is EXACTLY replaced by part.purchasingfactor in
this code */
/*******************************************************************/

/* DEFINE YOUR OWN VARIABLES HERE */
def var vd-PUMAvgCost as decimal decimals 5 no-undo. /* 2 dp */
def var vd-PUMLastCost as decimal decimals 5 no-undo. /* 2 dp */

/* GET THE PART RECORD USING VB FORM COMMAND (getcurrentrowid) */
/*Original code*/
/*find FIRST part where (rowid(part) = GetCurrentROWID()) no-lock.*/
find part where rowid(part) = GetCurrentROWID() no-lock.

/* CALCULATE NUMBER OF NEEDED CONTAINERS (example)*/
if ({&Partfactor} <> 1) then
do:
/* calculation to set vd-value*/
Assign vd-PUMAvgcost = {&partAvg} / {&partfactor}.
Assign vd-PUMlastcost = {&partlast} / {&partfactor}.
end.
else vd-PUMavgcost = {&partavg}.

/* SAVE THE CALCULATED VALUE IN THE VB FIELDS. */
setDecimalValue("part.number03.SCRVALUE":U, vd-PUMavgcost).
setDecimalValue("part.number04.SCRVALUE":U, vd-PUMlastcost).

RETURN.
For those who have been there before maybe someone can save me some time. I
am setting up a small web server to handle crystal report requests. I have
up to this point used the compiled reports which has worked well but wonÂ’t
in this case. IÂ’m on Vantage 3 and CR 7. What are the basic steps to
publishing a report via a web page. Do I just make a link on a page to an
RPT? DoesnÂ’t sound right. Any help or ideas would be helpful. Until them
IÂ’ll be nose deep in the intensely exciting UserÂ’s Guide with coffee in
hand.

Thanks in advance.

Jim Carnes
Information Systems
Kenlee Precision Corporation
1700 Morrell Park Ave
Baltimore, MD 21230
410-525-3800 x132





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

The way I did it was to set up the Crystal Enterprise component that came with Crystal Reports 8.5. Enterprise was free with CR 8.5. Try checking out their website.........maybe you can order the standard version of Enterprise there. Enterprise worked out well for publishing reports to the company Intranet. I remember that IIS has to be on the Windows machine for publishing or you could use some other application (don't remember what it was offhand).

~Wendy


>>> jcarnes@... 07/02/03 10:02AM >>>
For those who have been there before maybe someone can save me some time. I
am setting up a small web server to handle crystal report requests. I have
up to this point used the compiled reports which has worked well but wonÂ’t
in this case. IÂ’m on Vantage 3 and CR 7. What are the basic steps to
publishing a report via a web page. Do I just make a link on a page to an
RPT? DoesnÂ’t sound right. Any help or ideas would be helpful. Until them
IÂ’ll be nose deep in the intensely exciting UserÂ’s Guide with coffee in
hand.

Thanks in advance.

Jim Carnes
Information Systems
Kenlee Precision Corporation
1700 Morrell Park Ave
Baltimore, MD 21230
410-525-3800 x132





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