4gl

When I need a user ID stamp on a progress report, I just retrieve the NT
user name.

PROCEDURE GetUserNameA EXTERNAL "advapi32.dll":U:
DEFINE INPUT-OUTPUT PARAMETER ipBuffer AS CHAR.
DEFINE INPUT-OUTPUT PARAMETER ipSize AS LONG.
END PROCEDURE.

def var lvuserid as char no-undo.
DEF VAR lvFill AS INT NO-UNDO INITIAL 25.
lvUserID = FILL(" ":U, lvFill).

RUN GetUserNameA (INPUT-OUTPUT lvUserID, INPUT-OUTPUT lvFill).

/*test*/
message lvuserid.


HTH,

Thaddeus
I recently had a very good discussion with the Director of Operations at
Epicor, and he highly recommended using Progress 4GL for our more complex
export and reporting needs, and for integration with our other applications.
In 4GL, its just a matter of learning the language, and you can pretty much
do everything Vantage itself does. However, out of the box, the Progress
license does not give you the ability to write code that would modify the
database. The execution of Progress 4GL queries can be strictly controlled
through vantage menu security and NT permissions.

I don't believe 4GL programming is for everyone, but for some of you who are
creating complex reports that are exposing the limitations of reportbuilder,
and for anyone who has experience with Visual Basic / C++ programming,
Progress 4GL is a viable, safe tool for creating reports, or at least
exports for crystal, or a visual basic program to use. I've already
downloaded some free source code for exporting progress data to DBF files.

In our case, 4GL eliminates the need for an ODBC connection. When we need a
Crystal report to access more fields than are available in one of the
standard DBF exports, we can write launch 4GL code from a VantageBasic
window that will export the fields we need to a DBF, that Crystal can then
access.

If security isn't as big an issue, ODBC is by far the most convenient way to
go. With an ODBC connection, you can pull Vantage records straight from
Excell, with no programming at all. However, the only true secure solution
using ODBC is a solution where the computer with the odbc connection is
essentially filtering the database information that it gives to users. This
is true for the Crystal Web system, and for my original idea of creating a
standalone workstation that exports data on a timed or on-demand basis using
visual basic program with an ODBC connection.

However with 4GL, there is no need for a web server, or any sort of
macro-automated exports on a standalone workstation. You simply tell the
database what you want from it, and you get it. 4GL can also automate
Office and CAD applications, just as Visual Basic can. All the mass
printing and file auditing I wanted to do with visual basic/ODBC, will be
done with 4GL.


Well, I don't know if this knowledge helps anyone else, but learning that
4GL can do just about everything I wanted to do through visual basic, and do
so in a safe and secure manner, without requiring ODBC, convinced me that it
is the solution for us.

$.02 - Thad

>The following is my conversation with Doug Williams, Epicor's Director of
Development.

-----Original Message-----
From: Doug Williams [mailto:dwilliams@...]
Sent: Tuesday, June 26, 2001 2:18 PM
To: 'Thad Jacobs'
Subject: RE: Indented BOM RB Report V3 / P8.3A


In 5.00 we started offering a SQL Server database option. The Vantage code
is still written in the Progress 4GL - it is just compiled with some
different options to work against SQL Server. There is only one version of
Vantage. There are no plans to drop support for the Progress database.

From the 4GL you can reference COM objects and OLE Automation servers, etc.
I don't know the interface that SolidWorks uses, but I would imagine that it
would be along those lines if you are able to hook into it from VB. As for
integrating into Vantage, obviously a 4GL program will be a lot easier and
appear more seamless, etc. It can be added directly onto the menu, for
example. To create/maintain complicated screens (possibly with ActiveX
controls) you would need to purchase a copy of ProVision. You can still
maintain absolute safety, however, if you always compile your code for
deployment from a box with only a Query license installed - you would be
guaranteed that nothing you wrote would be able to modify anything in the
database. If you always keep your programs in a separate directory
structure you won't have to worry much about patches. Nothing, however,
really saves you when we make wholesale changes to the database structure
for new releases, etc.

That being said, we do continue to look at new and emerging technologies so
it may be possible that in the future things will be different. My goal/job
is to use the best tool(s) for enterprise-level application development that
I can find. So far that has been Progress.

Doug Williams
Director of Development
eManufacturing - Vantage
Epicor Software Corporation


-----Original Message-----
From: Thad Jacobs [mailto:tjacobs@...]
Sent: Tuesday, June 26, 2001 1:59 PM
To: 'Doug Williams'
Subject: RE: Indented BOM RB Report V3 / P8.3A


Doug,

I thought I may have heard from someone in support that the next version of
eManufacturing would be SQL server based, not Progress Based. (I may have
misunderstood, but that's the impression I got.)

If that is the case, then it seems 4GL code we write now may have to be
rewritten in a different language upon a future release of Vantage.

If that isn't the case, 4GL looks likes it could be the most efficient
choice for our BOM report, or at least a 4GL export for Crystal to read.

How does 4GL do as far as automating other applications? Automating Office
applications is fairly simple in visual basic. We would like to take all
the part numbers for a particular BOM, and automate SolidWorks to print the
corresponding files. I've already written code to do this in Excel VBA,
using a list of parts that I extracted from the text file created in
c:\vntgwrk when I forced a print error while printing the progress BOM
report.

If this could be done in 4GL, that would be awesome.

I think from a security standpoint, we'd like to see the need for an ODBC
connection eliminated. However, if there are a great deal of internal
changes anticipated in future releases that would affect the implementation
of 4GL programs, we may want to bite the bullet now and go with ODBC/Visual
Basic/Crystal Web Enterprise.

All in all, Vantage is a very useful product for our company, and it suits
most of our needs. There are just tasks that we'd like to automate, such as
moving and printing files for a particular JOB. Some of our machines have
over a thousand parts, and the procedure of printing and indented BOM,
grabbing the old highlighter, and going down the list of partnumbers and
printing the files seems somewhat inefficient.

I know Visual Basic and C++ already. I've taken the advanced Crystal class,
and am becoming quite familiar with report builder. I'm beginning to
research SQL ODBC.

I like Crystal over Report Builder, because it is just plain more powerful.
For some of our reports, however, such as the 5 level indented BOM, it looks
like we're going to need the ability to write a query from scratch, in a
core programming language.

I know 4GL would integrate most tightly with the database. However, we
don't want to integrate so tightly that we're having to edit or rewrite a
bunch of source code when it comes time to upgrade. We also don't want to
step on the toes of the installation programs for new versions. We know
that table links and field names are going to change at times, and we can
live with that. However programming structure issues and whether or not 4GL
is going to be supported in future releases of vantage is my main concern.

So the question, is, in your opinion,

With our needs for custom automation, and in anticipating future upgrades,
would it be better to go with a programming environment external to Vantage
that would read data through an ODBC connection, or would 4GL be the
language of choice?

Thank you very much for your time,

Thaddeus Jacobs
Assistant LAN Technologist / Vantage Support
Kinematic Automation, Inc
mailto:tjacobs@...



-----Original Message-----
From: Doug Williams [mailto:dwilliams@...]
Sent: Tuesday, June 26, 2001 11:59 AM
To: 'Thad Jacobs'
Subject: RE: Indented BOM RB Report V3 / P8.3A


Just a comment on the 4GL coding topic: With a Progress Query license (the
license normally shipped with Vantage) you cannot compile programs that
update the database. Since you cannot write/run any programs that change
any data you don't have to worry about damaging anything and it being
billable support, etc. It is a very nice safety feature (and doesn't cost
anything extra, either). The Progress 4GL is also fairly easy to learn
(compared to other languages that I have worked with). Progress offers
several beginning/intermediate classes on 4GL development throughout the
country/year, but depending upon your experience you might be able to pick
up enough reading the manuals.

Doug Williams
Director of Development
eManufacturing - Vantage
Epicor Software Corporation


-----Original Message-----
From: Thad Jacobs [mailto:tjacobs@...]
Sent: Tuesday, June 26, 2001 11:30 AM
To: 'Doug Williams'
Subject: RE: Indented BOM RB Report V3 / P8.3A


Thanks Doug. I'm not suprised Standard Development stays away from
reportbuilder....

Vantage 3 does have the ability to export to DBF, but access to the export
utility can't be restricted to certain exports. The user with access to
export the BOM tables has the ability to export the Job, Labor and
everything else tables. We need the ability for Document Control to enter a
BOM, then print the indented BOM right away, without having to wait for a
manager to hit the export button.

However, we probably will use one workstation with an ODBC connection to
automatically export various DBF files to NT secured directories on the
network, and have the Visual Basic BOM program running against the export,
so each individual user doesn't need ODBC connection. This is inefficient,
as it creates concurent copies of the database, but it puts the burden of
table security on NT, which is far easier to manage than Progress.

I was going to explore writing my own Progress BOM report, but we are
staying away from 4GL, as we don't want to do anything to the Database that
would make all future related support billable.....

Well, have a nice day, and thanks for your help.

Thaddeus

-----Original Message-----
From: Doug Williams [mailto:dwilliams@...]
Sent: Tuesday, June 26, 2001 11:11 AM
To: 'Thad Jacobs'
Subject: RE: Indented BOM RB Report V3 / P8.3A


Unfortunately, I am not a Report Builder expert so I really can't answer
your question. The standard development group has not used the Report
Builder product much because we write our reports in either Progress or
Crystal Reports. The report that you are trying to create is certainly not
an easy one.

I'd like to suggest using the Export Utility to dump out the data into a
.dbf, but I don't think that this feature is available until 4.00.

I would suggest contacting either your account manager or the phone support
group to see if they can get you some further information on building this
report.

Sorry that I couldn't be of more assistance,

Doug Williams
Director of Development
eManufacturing - Vantage
Epicor Software Corporation


-----Original Message-----
From: Thad Jacobs [mailto:tjacobs@...]
Sent: Tuesday, June 26, 2001 11:05 AM
To: 'dwilliams@...'
Subject: Indented BOM RB Report V3 / P8.3A


Doug (or any ReportBuilder expert),

We are running Vantage 3, Progress 8.3A, No ODBC.

I am trying to construct an indented BOM Report Builder Report to fit our
specific requirements. Basically, what I am doing is creating mulitiple
aliases of the PartMtl table, by linking PartMtl.MtlPartnum to
L2PartMtl.Partnum, and L2PartMtl.MtlPartNum to L3PartMtl.PartNum..... all
the way to level 5, which is the deepest we need to go as of now. Within
each level of PartMtl, I am linking to an alias of PartRev and Part, to pull
the description, RevShortDescription, and ECO.

I realize this creates a bunch of duplicate entries, but I am only
displaying the headers, and if I can find a way to sort 5 levels of MtlSeq,
and by Descending PartRev.EffectiveDate within each level of Mtlseq, I
believe I'm good to go.

However, I know I am very much taxing the abilities of RB, and by doing all
these embedded joins, I am creating one ineficcient report. I already
exceeded my maximum statement length by joining 8 levels of parmtl, part,
and partev.

Am I anywhere close to being on track? I'm grouping by MtlSeq at the
various levels. I'm currently trying to sort the thing so the PartMtl
records with the latest rev appear first, without much success.

My supervisor, Ford Garrat, mentioned that Mark Pladson said that an
Indented BOM report is possible, but that we'd have to attend the advanced
RB class. As far as I know, the RB class isn't scheduled for six months,
and we need to create this revised indented BOM much sooner if possible.

Once we upgrade to V5, and implement ODBC, I'll probably write an Excel
Visual Basic program to take care of this report, because most customers
like the BOM's in Excel Format. Our target date for upgrade is September,
and that isn't soon enough for this report. I'm sure after getting this one
down in ReportBuilder, Crystal should be just as easy, and I'll have a much
better idea of how to pull the records into the Excel workbook via ODBC.

We are filtering the report by company, partmtl.partnum (Level 1) , and
partrev.revisionnum (Level 2)

Please let me know if I'm on the right track, and or if I'm just barking up
the wrong table.....

Best Regards,

Thaddeus Jacobs
Assistant LAN Technologist / Vantage Support
Kinematic Automation, Inc
Site ID 92196
mailto:tjacobs@...
I've been after Epicor to offer a 4gl course
using Progress. The answer I get is that
Progress offers the classes. I would like
Epicor to teach the Progress class because of
the Epicor environment (read/write triggers, etc).
I've gone to enough of these classes to gain
just enough expertise to be dangerous. Put
another way, if you know how to code in Provision,
what can, and what can/should you NOT do with
Vantage!
The Vantage Basic class is pretty basic.
My $.02 worth.
Our use of 4GL will strictly be through the out-of-the-box Read-Only Query
Progress License. If you mess up in your coding, the worst you can do is
create a useless report, or possibly lock up the database server, requiring
a reboot. All our test code creation will be against a test database to
prevent these risks from affecting the live side.

The reason we had stayed away from 4GL to begin with is because we thought
there was a possibility of messing up data in the database, and we didn't
want the possibility of creating billable support issues.

However, if you took the progress classes, and learned how to create and
maintain your own database, the data dictionary would probably be sufficient
for information about triggers and such. Testing all code against a fake
replica of the live side, and carefully auditing the changes you've made
would be a good idea before writing to the live side.

We've come to the conclusion that all data entered in Vantage is still going
to have to go through by keyboard, through the existing vantage screens, and
the limited vantagebasic screens. My hope is that our read-only
implementation of 4GL will help us better utilize the already entered data.
(exl. printing all drawing files for a particular assembly).

$.000000000000000002

TMJ



-----Original Message-----
From: PLAMAN DICK [mailto:dick.plaman@...]
Sent: Friday, June 29, 2001 1:35 PM
To: 'vantage@yahoogroups.com'
Subject: RE: [Vantage] 4GL


I've been after Epicor to offer a 4gl course
using Progress. The answer I get is that
Progress offers the classes. I would like
Epicor to teach the Progress class because of
the Epicor environment (read/write triggers, etc).
I've gone to enough of these classes to gain
just enough expertise to be dangerous. Put
another way, if you know how to code in Provision,
what can, and what can/should you NOT do with
Vantage!
The Vantage Basic class is pretty basic.
My $.02 worth.

To access the Files Section of our Yahoo!Group for Report Builder and
Crystal Reports and other 'goodies', please go to:
http://groups.yahoo.com/group/vantage/files/. Note: You must have already
linked your email address to a yahoo id to enable access.

Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
Progress publishes an excellent 4gl tutorial, that covers all aspects of the 4gl, without the complexity of SmartObjects (which is where Provision will take you). the tutorial is available in PDF format at the Progress Web Site.

http://www.progress.com/v9/documentation/start.htm

Get the "Getting Started" collection and have fun. When you need more help than the books give go to ww.peg.com, and subscribe to the list od lists that interest you, and post your question.

There are also Progress programmers, myself included, who will try to answer any 4gl questions posted to the list.

Good Luck, Have fun, Mine that data.

Thad Jacobs wrote:

> Our use of 4GL will strictly be through the out-of-the-box Read-Only Query
> Progress License. If you mess up in your coding, the worst you can do is
> create a useless report, or possibly lock up the database server, requiring
> a reboot. All our test code creation will be against a test database to
> prevent these risks from affecting the live side.
>
> The reason we had stayed away from 4GL to begin with is because we thought
> there was a possibility of messing up data in the database, and we didn't
> want the possibility of creating billable support issues.
>
> However, if you took the progress classes, and learned how to create and
> maintain your own database, the data dictionary would probably be sufficient
> for information about triggers and such. Testing all code against a fake
> replica of the live side, and carefully auditing the changes you've made
> would be a good idea before writing to the live side.
>
> We've come to the conclusion that all data entered in Vantage is still going
> to have to go through by keyboard, through the existing vantage screens, and
> the limited vantagebasic screens. My hope is that our read-only
> implementation of 4GL will help us better utilize the already entered data.
> (exl. printing all drawing files for a particular assembly).
>
> $.000000000000000002
>
> TMJ
>
>
>
> -----Original Message-----
> From: PLAMAN DICK [mailto:dick.plaman@...]
> Sent: Friday, June 29, 2001 1:35 PM
> To: 'vantage@yahoogroups.com'
> Subject: RE: [Vantage] 4GL
>
> I've been after Epicor to offer a 4gl course
> using Progress. The answer I get is that
> Progress offers the classes. I would like
> Epicor to teach the Progress class because of
> the Epicor environment (read/write triggers, etc).
> I've gone to enough of these classes to gain
> just enough expertise to be dangerous. Put
> another way, if you know how to code in Provision,
> what can, and what can/should you NOT do with
> Vantage!
> The Vantage Basic class is pretty basic.
> My $.02 worth.
>
> To access the Files Section of our Yahoo!Group for Report Builder and
> Crystal Reports and other 'goodies', please go to:
> http://groups.yahoo.com/group/vantage/files/. Note: You must have already
> linked your email address to a yahoo id to enable access.
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
> To access the Files Section of our Yahoo!Group for Report Builder and Crystal Reports and other 'goodies', please go to: http://groups.yahoo.com/group/vantage/files/. Note: You must have already linked your email address to a yahoo id to enable access.
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
Thad, I'm not scared of code and I'd also like to be able to create reports
that can be added to the Vantage menu that are of the same quality as those
that come with Vantage.

I've given RB a try, I like being able to add reports to the menu structure,
but I don't like the idea that people have to change filters to get what
they want.

Crystal is very powerful, but with ODBC it is slow and there are security
and licensing concerns.

Would you be willing to describe what is required to create a Progress
report and post an example that we can use as a base to build on. It might
save us all having to go through the same learning curve.

Michael Miles
Continental Conveyor (Aus)
-----Original Message-----
From: Thad Jacobs [mailto:tjacobs@...]
Sent: Saturday, 30 June 2001 4:58
To: 'vantage@yahoogroups.com'
Subject: RE: [Vantage] 4GL


Our use of 4GL will strictly be through the out-of-the-box Read-Only Query
Progress License. If you mess up in your coding, the worst you can do is
create a useless report, or possibly lock up the database server, requiring
a reboot. All our test code creation will be against a test database to
prevent these risks from affecting the live side.

The reason we had stayed away from 4GL to begin with is because we thought
there was a possibility of messing up data in the database, and we didn't
want the possibility of creating billable support issues.

However, if you took the progress classes, and learned how to create and
maintain your own database, the data dictionary would probably be sufficient
for information about triggers and such. Testing all code against a fake
replica of the live side, and carefully auditing the changes you've made
would be a good idea before writing to the live side.

We've come to the conclusion that all data entered in Vantage is still going
to have to go through by keyboard, through the existing vantage screens, and
the limited vantagebasic screens. My hope is that our read-only
implementation of 4GL will help us better utilize the already entered data.
(exl. printing all drawing files for a particular assembly).

$.000000000000000002

TMJ
I have created my first 4GL - DBF - Crystal report.

The 4GL program creates DBF files of selected records, and launches a
compiled crystal report against the DBF. The DBF files are accessed through
the Microsoft Dbase ODBC driver, which was a pain to get working
consistently on seperate workstaions, but it can be done.

Before doing anything, start with the tutorial on the progress site, read up
on widgets record selection, and creating reports.

http://www.progress.com/v9/documentation/start.htm has the tutorial, the
Programmer Handbook, and the Language Reference. all of these will come be
useful.

The I wrote code for creating a dbf was largely derived from
http://home.kabelfoon.nl/~prvdam/white2.htm

http://www.apptools.com/dbase/faq/qformt.htm was also an excellent resource
on the DBF file format.

THIS CODE DOES NOT CREATE INDEXES!!!!! That's why it is necessary to access
the dbf files through the microsoft DBASE driver.

The included crystal report references and ODBC driver with the name of
VNTGWRK, and that driver references c:\vntgwrk.

Any dbf tables in the c:\vntgwrk directory should be readable by crystal
through this driver. This is where I had the most trouble. It seemed that
after distributing the crystal report, the dbase driver was overwritten with
an access driver that doesn't recognize dbf files. I still have to fix
that.....

I have only supplied the crystal RPT file, created in Crystal reports 7.
You will need to compile the report, and modify the exe file path at the end
of rcvnoinv.w to reference it. Also, make sure the company filter is set
right, in All 'FOR EACH' statments

All code is supplied as is, no warranties express or implied........yada
yada

The File locations are

http://groups.yahoo.com/group/vantage/files/4GL-Crystal%20rcvnoinv.zip for
the
zip file

and

http://groups.yahoo.com/group/vantage/files/4GL-Crystal%20rcvnoinv.TXT
for a copy of this message, which is the only documentation for that zip
file.

Let me know if you have any ?'s

Have Fun!!!!

Best Regards,

Thaddeus Jacobs
Assistant LAN Technologist / Vantage Support
Kinematic Automation, Inc
mailto:tjacobs@...
Thad,

Next, I would like to see you to build a suspension bridge out of pop sickle
sticks and Elmer's glue.

Patrick

-----Original Message-----
From: Thad Jacobs [mailto:tjacobs@...]
Sent: Thursday, July 12, 2001 4:14 PM
To: 'vantage@yahoogroups.com'
Subject: RE: [Vantage] 4GL


I have created my first 4GL - DBF - Crystal report.

The 4GL program creates DBF files of selected records, and launches a
compiled crystal report against the DBF. The DBF files are accessed through
the Microsoft Dbase ODBC driver, which was a pain to get working
consistently on seperate workstaions, but it can be done.

Before doing anything, start with the tutorial on the progress site, read up
on widgets record selection, and creating reports.

http://www.progress.com/v9/documentation/start.htm has the tutorial, the
Programmer Handbook, and the Language Reference. all of these will come be
useful.

The I wrote code for creating a dbf was largely derived from
http://home.kabelfoon.nl/~prvdam/white2.htm

http://www.apptools.com/dbase/faq/qformt.htm was also an excellent resource
on the DBF file format.

THIS CODE DOES NOT CREATE INDEXES!!!!! That's why it is necessary to access
the dbf files through the microsoft DBASE driver.

The included crystal report references and ODBC driver with the name of
VNTGWRK, and that driver references c:\vntgwrk.

Any dbf tables in the c:\vntgwrk directory should be readable by crystal
through this driver. This is where I had the most trouble. It seemed that
after distributing the crystal report, the dbase driver was overwritten with
an access driver that doesn't recognize dbf files. I still have to fix
that.....

I have only supplied the crystal RPT file, created in Crystal reports 7.
You will need to compile the report, and modify the exe file path at the end
of rcvnoinv.w to reference it. Also, make sure the company filter is set
right, in All 'FOR EACH' statments

All code is supplied as is, no warranties express or implied........yada
yada

The File locations are

http://groups.yahoo.com/group/vantage/files/4GL-Crystal%20rcvnoinv.zip for
the
zip file

and

http://groups.yahoo.com/group/vantage/files/4GL-Crystal%20rcvnoinv.TXT
for a copy of this message, which is the only documentation for that zip
file.

Let me know if you have any ?'s

Have Fun!!!!

Best Regards,

Thaddeus Jacobs
Assistant LAN Technologist / Vantage Support
Kinematic Automation, Inc
mailto:tjacobs@...


To access the Files Section of our Yahoo!Group for Report Builder and
Crystal Reports and other 'goodies', please go to:
http://groups.yahoo.com/group/vantage/files/. Note: You must have already
linked your email address to a yahoo id to enable access.

Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
FYI: There is a product available on the market called CodeBase that is
callable from the 4GL and creates .dbf files and indexes so you don't have
to install ODBC drivers everywhere. I can't remember how much a development
license costs, but I don't think that it was very much. I last saw it on
the vbxtras site (www.vbxtras.com). It is a .DLL so it isn't the easiest to
figure out how to call it properly, however.

Doug Williams
Director of Development
eManufacturing - Vantage
Epicor Software Corporation


-----Original Message-----
From: Winter, Patrick [mailto:pjw@...]
Sent: Thursday, July 12, 2001 4:30 PM
To: 'vantage@yahoogroups.com'
Subject: RE: [Vantage] 4GL


Thad,

Next, I would like to see you to build a suspension bridge out of pop sickle
sticks and Elmer's glue.

Patrick

-----Original Message-----
From: Thad Jacobs [mailto:tjacobs@...]
Sent: Thursday, July 12, 2001 4:14 PM
To: 'vantage@yahoogroups.com'
Subject: RE: [Vantage] 4GL


I have created my first 4GL - DBF - Crystal report.

The 4GL program creates DBF files of selected records, and launches a
compiled crystal report against the DBF. The DBF files are accessed through
the Microsoft Dbase ODBC driver, which was a pain to get working
consistently on seperate workstaions, but it can be done.

Before doing anything, start with the tutorial on the progress site, read up
on widgets record selection, and creating reports.

http://www.progress.com/v9/documentation/start.htm has the tutorial, the
Programmer Handbook, and the Language Reference. all of these will come be
useful.

The I wrote code for creating a dbf was largely derived from
http://home.kabelfoon.nl/~prvdam/white2.htm

http://www.apptools.com/dbase/faq/qformt.htm was also an excellent resource
on the DBF file format.

THIS CODE DOES NOT CREATE INDEXES!!!!! That's why it is necessary to access
the dbf files through the microsoft DBASE driver.

The included crystal report references and ODBC driver with the name of
VNTGWRK, and that driver references c:\vntgwrk.

Any dbf tables in the c:\vntgwrk directory should be readable by crystal
through this driver. This is where I had the most trouble. It seemed that
after distributing the crystal report, the dbase driver was overwritten with
an access driver that doesn't recognize dbf files. I still have to fix
that.....

I have only supplied the crystal RPT file, created in Crystal reports 7.
You will need to compile the report, and modify the exe file path at the end
of rcvnoinv.w to reference it. Also, make sure the company filter is set
right, in All 'FOR EACH' statments

All code is supplied as is, no warranties express or implied........yada
yada

The File locations are

http://groups.yahoo.com/group/vantage/files/4GL-Crystal%20rcvnoinv.zip for
the
zip file

and

http://groups.yahoo.com/group/vantage/files/4GL-Crystal%20rcvnoinv.TXT
for a copy of this message, which is the only documentation for that zip
file.

Let me know if you have any ?'s

Have Fun!!!!

Best Regards,

Thaddeus Jacobs
Assistant LAN Technologist / Vantage Support
Kinematic Automation, Inc
mailto:tjacobs@...


To access the Files Section of our Yahoo!Group for Report Builder and
Crystal Reports and other 'goodies', please go to:
http://groups.yahoo.com/group/vantage/files/. Note: You must have already
linked your email address to a yahoo id to enable access.

Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/



To access the Files Section of our Yahoo!Group for Report Builder and
Crystal Reports and other 'goodies', please go to:
http://groups.yahoo.com/group/vantage/files/. Note: You must have already
linked your email address to a yahoo id to enable access.

Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
Patrick,
Sounds to me like he just did!
\Steve
-----Original Message-----
From: Winter, Patrick [mailto:pjw@...]
Sent: Thursday, July 12, 2001 4:30 PM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] 4GL


Thad,

Next, I would like to see you to build a suspension bridge out of pop
sickle
sticks and Elmer's glue.

Patrick

-----Original Message-----
From: Thad Jacobs [mailto:tjacobs@...]
Sent: Thursday, July 12, 2001 4:14 PM
To: 'vantage@yahoogroups.com'
Subject: RE: [Vantage] 4GL


I have created my first 4GL - DBF - Crystal report.

The 4GL program creates DBF files of selected records, and launches a
compiled crystal report against the DBF. The DBF files are accessed
through
the Microsoft Dbase ODBC driver, which was a pain to get working
consistently on seperate workstaions, but it can be done.

Before doing anything, start with the tutorial on the progress site, read
up
on widgets record selection, and creating reports.

http://www.progress.com/v9/documentation/start.htm has the tutorial, the
Programmer Handbook, and the Language Reference. all of these will come
be
useful.

The I wrote code for creating a dbf was largely derived from
http://home.kabelfoon.nl/~prvdam/white2.htm

http://www.apptoolscom/dbase/faq/qformt.htm was also an excellent
resource
on the DBF file format.

THIS CODE DOES NOT CREATE INDEXES!!!!! That's why it is necessary to
access
the dbf files through the microsoft DBASE driver.

The included crystal report references and ODBC driver with the name of
VNTGWRK, and that driver references c:\vntgwrk.

Any dbf tables in the c:\vntgwrk directory should be readable by crystal
through this driver. This is where I had the most trouble. It seemed
that
after distributing the crystal report, the dbase driver was overwritten
with
an access driver that doesn't recognize dbf files. I still have to fix
that.....

I have only supplied the crystal RPT file, created in Crystal reports 7.
You will need to compile the report, and modify the exe file path at the
end
of rcvnoinv.w to reference it. Also, make sure the company filter is set
right, in All 'FOR EACH' statments

All code is supplied as is, no warranties express or implied........yada
yada

The File locations are

http://groups.yahoo.com/group/vantage/files/4GL-Crystal%20rcvnoinvzip for
the
zip file

and

http://groups.yahoo.com/group/vantage/files/4GL-Crystal%20rcvnoinvTXT
for a copy of this message, which is the only documentation for that zip
file.

Let me know if you have any ?'s

Have Fun!!!!

Best Regards,

Thaddeus Jacobs
Assistant LAN Technologist / Vantage Support
Kinematic Automation, Inc
mailto:tjacobs@...


To access the Files Section of our Yahoo!Group for Report Builder and
Crystal Reports and other 'goodies', please go to:
http://groups.yahoo.com/group/vantage/files/. Note: You must have
already
linked your email address to a yahoo id to enable access.

Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/


Yahoo! Groups Sponsor
ADVERTISEMENT




To access the Files Section of our Yahoo!Group for Report Builder and
Crystal Reports and other 'goodies', please go to:
http://groups.yahoo.com/group/vantage/files/. Note: You must have already
linked your email address to a yahoo id to enable access.

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



[Non-text portions of this message have been removed]
NO MORE ELMERS!!!! HIP HIP HOORAY!!!!

-----Original Message-----
From: Doug Williams [mailto:dwilliams@...]
Sent: Thursday, July 12, 2001 4:50 PM
To: 'vantage@yahoogroups.com'
Subject: RE: [Vantage] 4GL


FYI: There is a product available on the market called CodeBase that is
callable from the 4GL and creates .dbf files and indexes so you don't have
to install ODBC drivers everywhere. I can't remember how much a development
license costs, but I don't think that it was very much. I last saw it on
the vbxtras site (www.vbxtras.com). It is a .DLL so it isn't the easiest to
figure out how to call it properly, however.

Doug Williams
Director of Development
eManufacturing - Vantage
Epicor Software Corporation


-----Original Message-----
From: Winter, Patrick [mailto:pjw@...]
Sent: Thursday, July 12, 2001 4:30 PM
To: 'vantage@yahoogroups.com'
Subject: RE: [Vantage] 4GL


Thad,

Next, I would like to see you to build a suspension bridge out of pop sickle
sticks and Elmer's glue.

Patrick

-----Original Message-----
From: Thad Jacobs [mailto:tjacobs@...]
Sent: Thursday, July 12, 2001 4:14 PM
To: 'vantage@yahoogroups.com'
Subject: RE: [Vantage] 4GL


I have created my first 4GL - DBF - Crystal report.

The 4GL program creates DBF files of selected records, and launches a
compiled crystal report against the DBF. The DBF files are accessed through
the Microsoft Dbase ODBC driver, which was a pain to get working
consistently on seperate workstaions, but it can be done.

Before doing anything, start with the tutorial on the progress site, read up
on widgets record selection, and creating reports.

http://www.progress.com/v9/documentation/start.htm has the tutorial, the
Programmer Handbook, and the Language Reference. all of these will come be
useful.

The I wrote code for creating a dbf was largely derived from
http://home.kabelfoon.nl/~prvdam/white2.htm

http://www.apptools.com/dbase/faq/qformt.htm was also an excellent resource
on the DBF file format.

THIS CODE DOES NOT CREATE INDEXES!!!!! That's why it is necessary to access
the dbf files through the microsoft DBASE driver.

The included crystal report references and ODBC driver with the name of
VNTGWRK, and that driver references c:\vntgwrk.

Any dbf tables in the c:\vntgwrk directory should be readable by crystal
through this driver. This is where I had the most trouble. It seemed that
after distributing the crystal report, the dbase driver was overwritten with
an access driver that doesn't recognize dbf files. I still have to fix
that.....

I have only supplied the crystal RPT file, created in Crystal reports 7.
You will need to compile the report, and modify the exe file path at the end
of rcvnoinv.w to reference it. Also, make sure the company filter is set
right, in All 'FOR EACH' statments

All code is supplied as is, no warranties express or implied........yada
yada

The File locations are

http://groups.yahoo.com/group/vantage/files/4GL-Crystal%20rcvnoinv.zip for
the
zip file

and

http://groups.yahoo.com/group/vantage/files/4GL-Crystal%20rcvnoinv.TXT
for a copy of this message, which is the only documentation for that zip
file.

Let me know if you have any ?'s

Have Fun!!!!

Best Regards,

Thaddeus Jacobs
Assistant LAN Technologist / Vantage Support
Kinematic Automation, Inc
mailto:tjacobs@...


To access the Files Section of our Yahoo!Group for Report Builder and
Crystal Reports and other 'goodies', please go to:
http://groups.yahoo.com/group/vantage/files/. Note: You must have already
linked your email address to a yahoo id to enable access.

Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/



To access the Files Section of our Yahoo!Group for Report Builder and
Crystal Reports and other 'goodies', please go to:
http://groups.yahoo.com/group/vantage/files/. Note: You must have already
linked your email address to a yahoo id to enable access.

Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/



To access the Files Section of our Yahoo!Group for Report Builder and
Crystal Reports and other 'goodies', please go to:
http://groups.yahoo.com/group/vantage/files/. Note: You must have already
linked your email address to a yahoo id to enable access.

Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
http://www.vbxtras.com/Search.asp?SearchWords=dbf+&ByCategory=yes&ByVendor=y
es&ByProduct=yes&Init=yes&ShowVendorName=yes

yields the link to codebase, along with some other dbf libraries. If I have
any more trouble with ODBC drivers (if the sun comes up tomorrow morning),
I'll probably put in a req for one of these packages.

~thad



-----Original Message-----
From: Doug Williams [mailto:dwilliams@...]
Sent: Thursday, July 12, 2001 4:50 PM
To: 'vantage@yahoogroups.com'
Subject: RE: [Vantage] 4GL


FYI: There is a product available on the market called CodeBase that is
callable from the 4GL and creates .dbf files and indexes so you don't have
to install ODBC drivers everywhere. I can't remember how much a development
license costs, but I don't think that it was very much. I last saw it on
the vbxtras site (www.vbxtras.com). It is a .DLL so it isn't the easiest to
figure out how to call it properly, however.

Doug Williams
Director of Development
eManufacturing - Vantage
Epicor Software Corporation


-----Original Message-----
From: Winter, Patrick [mailto:pjw@...]
Sent: Thursday, July 12, 2001 4:30 PM
To: 'vantage@yahoogroups.com'
Subject: RE: [Vantage] 4GL


Thad,

Next, I would like to see you to build a suspension bridge out of pop sickle
sticks and Elmer's glue.

Patrick

-----Original Message-----
From: Thad Jacobs [mailto:tjacobs@...]
Sent: Thursday, July 12, 2001 4:14 PM
To: 'vantage@yahoogroups.com'
Subject: RE: [Vantage] 4GL


I have created my first 4GL - DBF - Crystal report.

The 4GL program creates DBF files of selected records, and launches a
compiled crystal report against the DBF. The DBF files are accessed through
the Microsoft Dbase ODBC driver, which was a pain to get working
consistently on seperate workstaions, but it can be done.

Before doing anything, start with the tutorial on the progress site, read up
on widgets record selection, and creating reports.

http://www.progress.com/v9/documentation/start.htm has the tutorial, the
Programmer Handbook, and the Language Reference. all of these will come be
useful.

The I wrote code for creating a dbf was largely derived from
http://home.kabelfoon.nl/~prvdam/white2.htm

http://www.apptools.com/dbase/faq/qformt.htm was also an excellent resource
on the DBF file format.

THIS CODE DOES NOT CREATE INDEXES!!!!! That's why it is necessary to access
the dbf files through the microsoft DBASE driver.

The included crystal report references and ODBC driver with the name of
VNTGWRK, and that driver references c:\vntgwrk.

Any dbf tables in the c:\vntgwrk directory should be readable by crystal
through this driver. This is where I had the most trouble. It seemed that
after distributing the crystal report, the dbase driver was overwritten with
an access driver that doesn't recognize dbf files. I still have to fix
that.....

I have only supplied the crystal RPT file, created in Crystal reports 7.
You will need to compile the report, and modify the exe file path at the end
of rcvnoinv.w to reference it. Also, make sure the company filter is set
right, in All 'FOR EACH' statments

All code is supplied as is, no warranties express or implied........yada
yada

The File locations are

http://groups.yahoo.com/group/vantage/files/4GL-Crystal%20rcvnoinv.zip for
the
zip file

and

http://groups.yahoo.com/group/vantage/files/4GL-Crystal%20rcvnoinv.TXT
for a copy of this message, which is the only documentation for that zip
file.

Let me know if you have any ?'s

Have Fun!!!!

Best Regards,

Thaddeus Jacobs
Assistant LAN Technologist / Vantage Support
Kinematic Automation, Inc
mailto:tjacobs@...


To access the Files Section of our Yahoo!Group for Report Builder and
Crystal Reports and other 'goodies', please go to:
http://groups.yahoo.com/group/vantage/files/. Note: You must have already
linked your email address to a yahoo id to enable access.

Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/



To access the Files Section of our Yahoo!Group for Report Builder and
Crystal Reports and other 'goodies', please go to:
http://groups.yahoo.com/group/vantage/files/. Note: You must have already
linked your email address to a yahoo id to enable access.

Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/



To access the Files Section of our Yahoo!Group for Report Builder and
Crystal Reports and other 'goodies', please go to:
http://groups.yahoo.com/group/vantage/files/. Note: You must have already
linked your email address to a yahoo id to enable access.

Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
Is it possible to call a RB Report from Progress code, and pass
parameters to it? I'd like to do this using prompts, that ask for
Start/End Dates.

Thanks,

Les Tingley
MIS
Decorated Products
Hello Les, Here is a procedure that I use.

&ANALYZE-SUSPEND _UIB-CODE-BLOCK _PROCEDURE runreport C-Win
procedure runReport:
/*this uses aderb\_printrb() to run report, all parameters are
required even if empty. Input is the filter using a character string*/

DEFINE INPUT PARAMETER p-filterIn as character.
DEFINE INPUT PARAMETER reportname as character.

define var v-destination as character.
define var v-other as character.
define var v-out as character.

assign v-other = "month = " + v-ReportMonth.
/* runtime parameter in the report */
assign v-destination = "d".
/* a=txt out, d=display */
assign v-out = "".

RUN aderb\_prntrb2(
"{&library}", /* RB-REPORT-LIBRARY */
reportname, /* RB-REPORT-NAME */
"", /* RB-DB-CONNECTION */
"o", /* RB-INCLUDE-RECORDS */
p-filterIn, /* RB-FILTER */
"", /* RB-MEMO-FILE */
v-destination, /* RB-PRINT-DESTINATION a=txt out,
d=display*/
"", /* RB-PRINTER-NAME */
"", /* RB-PRINTER-PORT */
v-out, /* RB-OUTPUT-FILE */
0, /* RB-NUMBER-COPIES - zero */
0, /* RB-BEGIN-PAGE - zero */
0, /* RB-END-PAGE - zero */
no, /* RB-TEST-PATTERN */
"", /* RB-WINDOW-TITLE */
yes, /* RB-DISPLAY-ERRORS */
yes, /* RB-DISPLAY-STATUS */
no, /* RB-NO-WAIT */
v-other, /* RB-OTHER-PARAMETERS used in
report for display of 1 months data*/
"{&rbstatus}"). /*rb-status file for prntrb2*/
end procedure.
&ANALYZE-RESUME
/* _UIB-CODE-BLOCK-END */

The call for this procedure looks like this

run runreport({&filter},{&report})

&filter is the report filter to use, &report is the report name.

The trick here is to create a runtime parameter in the report. In this case
my report has a calculated field which I call rpmonth and the expression in
this field is RUNTIME-PARAMETER("Month"). The value of v-other is passed to
rpmonth when this procedure is run.

HTH
Mark



-----Original Message-----
From: lptingley [mailto:ltingley@...]
Sent: Thursday, August 29, 2002 6:38 AM
To: vantage@yahoogroups.com
Subject: [Vantage] 4GL


Is it possible to call a RB Report from Progress code, and pass
parameters to it? I'd like to do this using prompts, that ask for
Start/End Dates.

Thanks,

Les Tingley
MIS
Decorated Products



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/
Thanks a million Mark. I'll play around with this... Les

> -----Original Message-----
> From: Mark Dupuis [SMTP:dupuism@...]
> Sent: Thursday, August 29, 2002 8:21 AM
> To: vantage@yahoogroups.com
> Subject: RE: [Vantage] 4GL
>
> Hello Les, Here is a procedure that I use.
>
> &ANALYZE-SUSPEND _UIB-CODE-BLOCK _PROCEDURE runreport C-Win
> procedure runReport:
> /*this uses aderb\_printrb() to run report, all parameters are
> required even if empty. Input is the filter using a character
> string*/
>
> DEFINE INPUT PARAMETER p-filterIn as character.
> DEFINE INPUT PARAMETER reportname as character.
>
> define var v-destination as character.
> define var v-other as character.
> define var v-out as character.
>
> assign v-other = "month = " + v-ReportMonth.
> /* runtime parameter in the report */
> assign v-destination = "d".
> /* a=txt out, d=display */
> assign v-out = "".
>
> RUN aderb\_prntrb2(
> "{&library}", /* RB-REPORT-LIBRARY */
> reportname, /* RB-REPORT-NAME */
> "", /* RB-DB-CONNECTION */
> "o", /* RB-INCLUDE-RECORDS */
> p-filterIn, /* RB-FILTER */
> "", /* RB-MEMO-FILE */
> v-destination, /* RB-PRINT-DESTINATION a=txt out,
> d=display*/
> "", /* RB-PRINTER-NAME */
> "", /* RB-PRINTER-PORT */
> v-out, /* RB-OUTPUT-FILE */
> 0, /* RB-NUMBER-COPIES - zero */
> 0, /* RB-BEGIN-PAGE - zero */
> 0, /* RB-END-PAGE - zero */
> no, /* RB-TEST-PATTERN */
> "", /* RB-WINDOW-TITLE */
> yes, /* RB-DISPLAY-ERRORS */
> yes, /* RB-DISPLAY-STATUS */
> no, /* RB-NO-WAIT */
> v-other, /* RB-OTHER-PARAMETERS used in
> report for display of 1 months data*/
> "{&rbstatus}"). /*rb-status file for prntrb2*/
> end procedure.
> &ANALYZE-RESUME
> /* _UIB-CODE-BLOCK-END */
>
> The call for this procedure looks like this
>
> run runreport({&filter},{&report})
>
> &filter is the report filter to use, &report is the report name.
>
> The trick here is to create a runtime parameter in the report. In this
> case
> my report has a calculated field which I call rpmonth and the expression
> in
> this field is RUNTIME-PARAMETER("Month"). The value of v-other is passed
> to
> rpmonth when this procedure is run.
>
> HTH
> Mark
>
>
>
> -----Original Message-----
> From: lptingley [mailto:ltingley@...]
> Sent: Thursday, August 29, 2002 6:38 AM
> To: vantage@yahoogroups.com
> Subject: [Vantage] 4GL
>
>
> Is it possible to call a RB Report from Progress code, and pass
> parameters to it? I'd like to do this using prompts, that ask for
> Start/End Dates.
>
> Thanks,
>
> Les Tingley
> MIS
> Decorated Products
>
>
>
> 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/
>
>
>
> 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/
>
At 10:37 AM 8/29/2002 +0000, you wrote:
>Is it possible to call a RB Report from Progress code, and pass
>parameters to it? I'd like to do this using prompts, that ask for
>Start/End Dates.

Saw you' already got a copy of one of the simple ones. there might be some
more in our Yahoo files section. If you want all the gory details, check
out the _Report Builder Deployment Guide_ downloadable from PSC.

-Wayne Cox
Twenty Three -- Information Technology Consulting
828-685-2338



[Non-text portions of this message have been removed]
Thanks Wayne, but the "simple one" is gory enough... Les

> -----Original Message-----
> From: Wayne Cox [SMTP:wmc20@...]
> Sent: Thursday, August 29, 2002 9:43 AM
> To: vantage@yahoogroups.com
> Subject: Re: [Vantage] 4GL
>
> At 10:37 AM 8/29/2002 +0000, you wrote:
> >Is it possible to call a RB Report from Progress code, and pass
> >parameters to it? I'd like to do this using prompts, that ask for
> >Start/End Dates.
>
> Saw you' already got a copy of one of the simple ones. there might be
> some
> more in our Yahoo files section. If you want all the gory details, check
> out the _Report Builder Deployment Guide_ downloadable from PSC.
>
> -Wayne Cox
> Twenty Three -- Information Technology Consulting
> 828-685-2338
>
>
>
> [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 have a material that we send out to a subcontractor, we receive the
original material under one part number, and after its processed and comes
back it becomes another part number. When I go to add the original part
number under the second's BOM the Pull/View as an assembly check boxes are
greyed out. What other factors impact those check boxes and what would grey
them out.
Thanks
Shirley Graver
Systems Administrator
Rubber Associates Inc.
Cleveland/Akron, OH




[Non-text portions of this message have been removed]
Just answered my own questions, "some times the bear has brains, sometimes
he just spits them out."

Shirley

-----Original Message-----
From: Shirley Graver [mailto:shirleyg@...]
Sent: Thursday, August 29, 2002 11:10 AM
To: vantage@yahoogroups.com
Subject: [Vantage] BILL OF MATERIALS QUESTION.


I have a material that we send out to a subcontractor, we receive the
original material under one part number, and after its processed and comes
back it becomes another part number. When I go to add the original part
number under the second's BOM the Pull/View as an assembly check boxes are
greyed out. What other factors impact those check boxes and what would
grey
them out.
Thanks
Shirley Graver
Systems Administrator
Rubber Associates Inc.
Cleveland/Akron, OH




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

I'm trying to access information like the Current User in Vantage. I know
you can do it with VB Forms, but I don't know how in a 4GL program. I'm
trying to modify a 4GL program to create log entries whenever a report
builder report is run. (Date, Time, Useid, Report Library Name, Report Name)
I have everything except the Userid. Any ideas would be great.

Thanks
Rich

mailto:rlaroche@...