Actuate/Forte

I just recently completed a two-way integration project
between Forte and Actuate. To make both ways work for
you, you will need Forte release 3 (now in beta).
The integration project shows you how to use the Actuate
API from Forte (Forte --> Actuate) to set up report runs,
print reports, parameterize reports, etc. (You still have
to create the reports using the Actuate Developer's Workbench.)
This part should work with any version of Forte.
Going the other way (Actuate --> Forte) requires the OLE
automation features found in Forte R3. This enables a
Forte service object to fetch the data for your report,
as an alternative or addition to the standard SQL queries
running against an RDBMS.
You can find documentation and source code on the Forte
home page, under Technical Info, and then "Shareware." You
need a password to get there, but Forte technical support
can provide you with one in a jiffy.
Hope this helps some!
Geoff

Andrew,
There is some stuff on the shareware section of Forte's web site. I think
it is just the wrappering of the C-API's
Regards,
Richard Stobart
Consultant, ECSoft, UK
101 Wigmore Street
London W1H 9AA
(0171) 355 1101
-----Original Message-----
From: Andrew Leong <[email protected]>
To: '[email protected]' <[email protected]>
Date: 26 March 1998 03:30
Subject: Actuate & Forte Integration.
Hi,
I am using forte (3.0.f.2) and actuate (3.0). And looking to see if we
can integrate actuate to my forte application directly, that is by
passing the informix database.
Opinions are welcome.
Andrew Leong
Manager Project & Network
Kontena Nasional Berhad
email : [email protected]
tel : 603-774-0928 fax : 603-774-0652

Similar Messages

  • Re:Actuate & Forte Integration.

    At 9:10 PM -0500 3/25/98, Andrew Leong wrote:
    I am using forte (3.0.f.2) and actuate (3.0). And looking to see if we
    can integrate actuate to my forte application directly, that is by
    passing the informix database.I did a fairly extensive forte->actuate integration project. Although you
    could theoretically call-in to forte from a C++ dll in actuate, the simpler
    way (the way we did it) was to get a socket DLL ( I grabbed source for a
    socket listener/writer off the web somewhere, but I don't have it handy)
    and used forte's external connection class for the other end.
    The scenario is:
    Forte has a listener on a pre-defined port (pick one)
    Simple formatted requests are sent to forte from actuate (e.g., the message
    'report1 1,2,3\n ' would run a forte command called report1 with args 1,2
    and 3)
    Forte processes the command and sends back the results in tab delimited
    form.
    Actuate reads the results a line at a time and formats the data.
    Worked well, took about a week to develop and is reliable.
    rick
    Rick Frankel
    cyberCode Consulting, Inc.

    Andrew,
    There is some stuff on the shareware section of Forte's web site. I think
    it is just the wrappering of the C-API's
    Regards,
    Richard Stobart
    Consultant, ECSoft, UK
    101 Wigmore Street
    London W1H 9AA
    (0171) 355 1101
    -----Original Message-----
    From: Andrew Leong <[email protected]>
    To: '[email protected]' <[email protected]>
    Date: 26 March 1998 03:30
    Subject: Actuate & Forte Integration.
    Hi,
    I am using forte (3.0.f.2) and actuate (3.0). And looking to see if we
    can integrate actuate to my forte application directly, that is by
    passing the informix database.
    Opinions are welcome.
    Andrew Leong
    Manager Project & Network
    Kontena Nasional Berhad
    email : [email protected]
    tel : 603-774-0928 fax : 603-774-0652

  • Re: Actuate/Forte, multithreading API calls

    Geoff,
    Your link to the Actuate API looks great, and it came just in
    time: I had just started doing it myself.
    A question: how can calls to the Actuate API be multithreaded?
    Your C project has the extended property MultiThreaded = FALSE.
    That's probably prudent, since we don't know how the Actuate
    application works internally. However, we have a need for
    running both (i) intensive reports and (ii) on-demand light
    reports simultaneously. So, we need to multithread those two
    sorts of tasks.
    A possible way to multithread Actuate would be to load separate
    copies of the dll's for each of the two tasks. Now, I don't
    know how dynamic loading works, but my guess is that there is
    only one copy per OS process, which means only one copy per
    running Forte application.
    John Hodgson |Descartes Systems Group Inc.|[email protected]
    Systems Engineer|120 Randall Drive |http://www.descartes.com
    |Waterloo, Ontario |Tel.: 519-746-8110 x250
    |CANADA N2V 1C6 |Fax: 519-747-0082
    Geoff Puterbaugh wrote:
    >
    I just recently completed a two-way integration project
    between Forte and Actuate. To make both ways work for
    you, you will need Forte release 3 (now in beta).
    The integration project shows you how to use the Actuate
    API from Forte (Forte --> Actuate) to set up report runs,
    print reports, parameterize reports, etc. (You still have
    to create the reports using the Actuate Developer's Workbench.)
    This part should work with any version of Forte.
    Going the other way (Actuate --> Forte) requires the OLE
    automation features found in Forte R3. This enables a
    Forte service object to fetch the data for your report,
    as an alternative or addition to the standard SQL queries
    running against an RDBMS.
    You can find documentation and source code on the Forte
    home page, under Technical Info, and then "Shareware." You
    need a password to get there, but Forte technical support
    can provide you with one in a jiffy.
    Hope this helps some!
    Geoff

    Geoff,
    Your link to the Actuate API looks great, and it came just in
    time: I had just started doing it myself.
    A question: how can calls to the Actuate API be multithreaded?
    Your C project has the extended property MultiThreaded = FALSE.
    That's probably prudent, since we don't know how the Actuate
    application works internally. However, we have a need for
    running both (i) intensive reports and (ii) on-demand light
    reports simultaneously. So, we need to multithread those two
    sorts of tasks.
    A possible way to multithread Actuate would be to load separate
    copies of the dll's for each of the two tasks. Now, I don't
    know how dynamic loading works, but my guess is that there is
    only one copy per OS process, which means only one copy per
    running Forte application.
    John Hodgson |Descartes Systems Group Inc.|[email protected]
    Systems Engineer|120 Randall Drive |http://www.descartes.com
    |Waterloo, Ontario |Tel.: 519-746-8110 x250
    |CANADA N2V 1C6 |Fax: 519-747-0082
    Geoff Puterbaugh wrote:
    >
    I just recently completed a two-way integration project
    between Forte and Actuate. To make both ways work for
    you, you will need Forte release 3 (now in beta).
    The integration project shows you how to use the Actuate
    API from Forte (Forte --> Actuate) to set up report runs,
    print reports, parameterize reports, etc. (You still have
    to create the reports using the Actuate Developer's Workbench.)
    This part should work with any version of Forte.
    Going the other way (Actuate --> Forte) requires the OLE
    automation features found in Forte R3. This enables a
    Forte service object to fetch the data for your report,
    as an alternative or addition to the standard SQL queries
    running against an RDBMS.
    You can find documentation and source code on the Forte
    home page, under Technical Info, and then "Shareware." You
    need a password to get there, but Forte technical support
    can provide you with one in a jiffy.
    Hope this helps some!
    Geoff

  • Actuate & Forte Integration.

    Hi,
    I am using forte (3.0.f.2) and actuate (3.0). And looking to see if we
    can integrate actuate to my forte application directly, that is by
    passing the informix database.
    Opinions are welcome.
    Andrew Leong
    Manager Project & Network
    Kontena Nasional Berhad
    email : [email protected]
    tel : 603-774-0928 fax : 603-774-0652

    Andrew,
    There is some stuff on the shareware section of Forte's web site. I think
    it is just the wrappering of the C-API's
    Regards,
    Richard Stobart
    Consultant, ECSoft, UK
    101 Wigmore Street
    London W1H 9AA
    (0171) 355 1101
    -----Original Message-----
    From: Andrew Leong <[email protected]>
    To: '[email protected]' <[email protected]>
    Date: 26 March 1998 03:30
    Subject: Actuate & Forte Integration.
    Hi,
    I am using forte (3.0.f.2) and actuate (3.0). And looking to see if we
    can integrate actuate to my forte application directly, that is by
    passing the informix database.
    Opinions are welcome.
    Andrew Leong
    Manager Project & Network
    Kontena Nasional Berhad
    email : [email protected]
    tel : 603-774-0928 fax : 603-774-0652

  • Actuate reporting solutions

    Solano,
    We have developed a module that integrates Forte with Actuate. We were very
    impressed with Actuate's reporting capability, but our clients had a couple of
    concerns with it: 1) they didn't like the per-user fee Actuate charges for the
    report scheduler, 2) they wanted to use the same interface to input parameters
    that they use in their normal application windows (with drop-down lists,
    multi-selection list, validations, short cut keys, etc.).
    What we did was to create a front-end window in Forte that dynamically builds
    parameter screens for inputting report parameters. These windows vary
    depending upon the reports' needs. After entering these parameters, the user
    can run the report from Forte.
    Shortly we will add the ability for the users to parse their reports, by
    customer, and automatically fax them. When R3 is released, we will further
    integrate the two tools.
    I myself have not used Actuate, but if you are still interested, and I can
    refer you to our Actuate/Forte experts.
    Thanks,
    Vince Hoenigman
    Tel: 415-973-7224
    e-mail: [email protected]
    From: Solano Alessandra <[email protected]>
    Sent: Wednesday, April 30, 1997 3:04 AM
    To: "'Forte'-Users'" <[email protected]>
    Subject: reporting systems
    Is there anybody who use Actuate Reporting System integrated with Forte'?
    We would like to know if it is possible to design and produce reports
    directly from Forte' Application without making a new query on DBMS (from
    Actuate Developer Workbench).
    By the way we are also looking to have a multiplatform reporting system
    (using also Unix Client machines). We read about Actuate Report Server. Do
    we
    have to use Actuate Report Server together with Actuate Developer Workbench
    or there are other possibility to work with Unix Clients?
    We'll be very happy to receive an answer about our questions or to have some
    informations about where to find documentation about these matters.
    Thanks very much.
    Solano ALessandra
    CSI-PIEMONTE
    C.so Unione Sovietica 216
    10134 Torino ITALY
    tel:+39 11 4618847
    fax:+39 11 4618212
    e-mail: [email protected]

    The FormattedDataSet is not a total reporting solution, but it does a good job of displaying tabular data such as you would see in a listbox, html table, xml, or csv. It is flexible, fast and easy to use. You crreate your own templates which do a good job of separating formatting from presentation. This allows for both reuse of the data and formatting
    For a live demo check out http://www.fdsapi.com

  • Re: Actuate in Forte Application

    This is just a guess, but it looks to me like perhaps
    NT is not recognizing "cl" as a command. What happens
    when you type "cl" on a command line?
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Have you run the 'vcvars32.bat before, or registered
    any required variable in environmental memory ?
    (devstudio/vc/bin/vcvars32.bat if I remember well :-) )
    bye
    j-p
    -----Message d'origine-----
    De: Kien Chung Chin [SMTP:[email protected]]
    Date: lundi 3 mai 1999 09:16
    A: Forte Users
    Objet: Actuate in Forte Application
    Hi, guys,
    Currently, I am testing on Actuate called from Forte Application. I
    downloaded the example from Forte support web site. I tried and followed
    the instruction that was given, but I couldn't make it work.
    The problem is Forte couldn't produce the DLL file; there has MS Visual
    C++ 5.0 installed.
    I did;
    - actlayer.obj has been produced (with reqbasic.h)
    - before actwrap.pex import into Forte external library (reqst32.dll)
    change to relevent directory; and also external object file
    (actlayer.obj).
    - when Forte compilation library (DLL) cannot be produce. (include
    directories for c++, Actuate and Forte were set into system variable -
    path). It gave the following error:
    Forte_cl0: Fetched SubAgents
    Forte_cl0: Generating code for library ActWrap.
    Forte_cl0: Completed code generation for ActWrap.
    Forte_cl0: Attempting to obtain compile sessions for needed
    architectures.
    Forte_cl0: Beginning compilation for PC NT.
    Forte_cl0: Compilation of actwrap on PC NT completed. Here are the
    results:
    BEGIN FILE
    Working directory is c:\forte\tmp\cg2\pc_nt\actwrap
    Processing BOM file: actwrap.bom
    The name specified is not recognized as an
    internal or external command, operable program or batch file.
    cl /W3 /Gf /GX /MD /c /Ob1 /vmg /DSTRICT /DWIN32 /D__WIN32__
    /DLIBOO_DLL /DWIN32_LEAN_AND_MEAN
    /Ic:\forte\install\inc\cmn /Ic:\forte\install\inc\os
    /Ic:\forte\install\inc\ds
    /Ic:\forte\install\inc\handles /Ic:\forte /Foactwrap.obj /Tp actwrap.cc
    Error during compilation, aborting.
    END FILE
    Forte_cl0:
    Forte_cl0: Completed compilation for PC NT.
    I continue to import the interface part, when run interface Forte gave
    'actwrap.dll' not found in 'c:\forte\userapp\actwrap\cl0' directory.
    Is there anyone try on that example? I hope I can get help from you, and
    your little suggestion is a big help for me, I am very much appreciated.
    Regards,
    William
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • Actuate Report System with Forte Application -Reply

    William,
    If you visit the Forte web site and look under Support and Services - Shareware you'll find an example of using Actuate.
    Regards
    Mark Carruthers
    20th Century Fox
    "Kien Chung Chin" <[email protected]> 04/12/99 03:39am >>>
    Hi,
    I am trying on Actuate Report System running on top of Forte Application
    for the reporting. Did anyone come across application call Actuate for
    generate reports? How does Actuate include into Forte application
    development?
    Regards,
    William
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Hi,
    May i know the slot where u have placed ur header details.
    Resh.
    Message was edited by:
    Reshma

  • Re: Calling Actuate from Forte

    Tanya,
    Actuate supplies C-API's to both their report viewer and the report server.
    There is also an ActiveX control version of the report viewer that you can
    embed with Forte 3. There is example wrapper code lying around somewhere,
    look on the Forte Shareware site.
    Regards
    Richard Stobart
    Consultant, ECSoft, UK
    101 Wigmore Street
    London W1H 9AA
    (0171) 355 1101
    -----Original Message-----
    From: Tanya Scott <[email protected]>
    To: [email protected] <[email protected]>
    Date: 16 June 1998 17:37
    Subject: Calling Actuate from Forte
    For those using Actuate with Forte.
    What is the best way to call Actuate reports from Forte? Is it difficult?
    Exactly how is it done?
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>-
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Tanya,
    Actuate supplies C-API's to both their report viewer and the report server.
    There is also an ActiveX control version of the report viewer that you can
    embed with Forte 3. There is example wrapper code lying around somewhere,
    look on the Forte Shareware site.
    Regards
    Richard Stobart
    Consultant, ECSoft, UK
    101 Wigmore Street
    London W1H 9AA
    (0171) 355 1101
    -----Original Message-----
    From: Tanya Scott <[email protected]>
    To: [email protected] <[email protected]>
    Date: 16 June 1998 17:37
    Subject: Calling Actuate from Forte
    For those using Actuate with Forte.
    What is the best way to call Actuate reports from Forte? Is it difficult?
    Exactly how is it done?
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>-
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • Calling Actuate from Forte

    For those using Actuate with Forte.
    What is the best way to call Actuate reports from Forte? Is it difficult?
    Exactly how is it done?
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Tanya,
    Please send any responses to [email protected].
    I am currently working on an Invoicing project for Williams Conferencing in Denver, CO. We are using Actuate to generate invoices, in conjunction with an Invoicing application developed in Forte.
    You have many options.
    As far as integrating with Actuate, you can use their Actuate ActiveX controls, Requestor API or their Report Server API. You can read about the pros and cons of these methods in the "About the APIs" section of the "Actuate Application Programming Interfaces Guide" on page xxxi.
    Using the Report Server API gives you more control than using the Requestor API. For example, we are currently unaware of a way of preventing versions of a report from being created when a report is regenerated, using the Requestor API. This can easily be accomplished using the Report Server API. But, the Report Server API is more difficult to use.
    I am not familiar enough with ActiveX to comment on the ease and viability of using ActiveX to integrate Forte with Actuate.
    Our approach is to create a C DLL using MS Visual C++ and integrate it with Forte. Our C DLL contains high level functions, such as GenerateInvoice(...) and PrintInvoice(...). Our high level functions contain calls to the Actuate Requestor API. Now that our C function are integrated with Forte, we are able to call them directly from our Forte application TOOL code.
    For information on integrating C with Forte, read chapter 2 of the Forte book entitled "Integrating with External Systems". I have attached a document I wrote that enumerates the steps to integrate C with Forte.
    The method we use to integrate Forte with Actuate is time consuming and tedious. If anyone knows of a better method, please let me know.
    Kind Regards,
    ---Tanya Scott <[email protected]> wrote:
    >
    For those using Actuate with Forte.
    What is the best way to call Actuate reports from Forte? Is it difficult?
    Exactly how is it done?
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    ==
    Henry "Hank" C. Bissell
    Denver, CO USA
    [email protected]
    DO YOU YAHOO!?
    Get your free @yahoo.com address at http://mail.yahoo.com

  • Actuate for Forte printing ?

    Hi John,
    Can you please tell me a bit more about Actuate ! Is it a Forte add-on ? Cost ? Distributor ?
    Thanx.
    Anton.
    [snip]
    Of course Actuate is the cadillac solution...
    [snip]

    Again, what are you wanting to print?

  • Forte to Actuate Integration

    Dear All,
    We are running the Report Server from an AIX box as well as Forte
    service objects. The Actuate executible C code functions correctly on
    the AIX box. However, when wrappering the C object from within Forte,
    we get a core dump on AcReqPrint. Even when passing no parameters from
    and allowing the C code to set the report string and print options, it
    dumps the core.
    Any suggestions?
    Misty Elshoff
    dhspa45dhs.state.il.us

    Dear All,
    We are running the Report Server from an AIX box as well as Forte
    service objects. The Actuate executible C code functions correctly on
    the AIX box. However, when wrappering the C object from within Forte,
    we get a core dump on AcReqPrint. Even when passing no parameters from
    and allowing the C code to set the report string and print options, it
    dumps the core.
    Any suggestions?
    Misty Elshoff
    dhspa45dhs.state.il.us

  • RE: (forte-users) Reporting tools/components for ForteApplications?

    Hi Robert,
    A good place to start when it comes to reporting is Forte Consulting. They
    have developed a tool called ReportKit, which is ActiveX integration with
    Seagate Software's Crystal Reports tool. Crystal is not really a three-tier
    tool (although, your Forte Consultant can probably set it up to mimic a
    three-tier tool), but it is a quick, easy way to get quality reports from
    your existing Forte applications. If you're interested, give your Forte
    Sales Rep (or, better still, your Forte Regional Consulting Director) a
    call. They can discuss pricing and scheduling. I've done several
    integration projects with Crystal, and I highly recommend ReportKit for
    small- to medium-sized reporting requirements. As for costs, I don't recall
    how much CrystalReports runs, but I think there are developer licenses and
    runtime licenses.
    FYI, the actual integration of ReportKit is pretty quick. The more
    time-consuming piece of any report tool integration is the design and
    implementation of the reports to be used.
    I hope this helps.
    -Katie
    Katie Tierney
    Quality Management Analyst
    Akili Systems Group
    601 Jefferson, Suite 3975
    Houston, Texas 77002
    Office: (713) 655-1400
    Cell: (409) 255-1643
    "The bitterness of poor quality remains long after the sweetness of low
    price is forgotten" --Larry Anderson
    -----Original Message-----
    From: Robert Brooke-N502365 [mailto:Robert.Brookeca.michelin.com]
    Sent: Monday, February 14, 2000 8:17 AM
    To: kamranaminyahoo.com
    Subject: (forte-users) Reporting tools/components for Forte
    Applications?
    Hi all,
    We are looking for what is currently in the marketplace to enhance the
    reporting
    capabilities of Forte. Ideally, we are looking for component libraries that
    we
    could import into our repository. Do these exist?
    Currently, I have found six reporting tools that are out there. The
    tools
    are Actuate, Crystal Reports, Report Workshop from Indus Consultancy
    Services, Brio Technologies (SQR) VisualBRIO, Visual CyberQuery from
    Cyberscience Corp., and Beacon from Brahma Software Solutions FORTify
    Components. Are there any others for Forte?
    If anyone is currently using one of these Reporting Tools for Forte or
    any
    others, could you give me any indications as to the costs, training, type
    of
    application using the Reporting tool, would you recommend using the
    product
    again, does it use wrappering or API, or is it a component based tool, and
    any
    other relevant information on the product?
    Thanks,
    Robert Brooke
    Application Developer
    Michelin North America (Canada) Inc. CA0/CA1
    PO Box 399
    New Glasgow, Nova Scotia
    B2H-3E6
    Phone: (902) 753-1977
    Fax: (902) 396-2180
    Note: We are currently developing in Forte 3.0.L.2. However, we would
    like
    to select a reporting tool/component within the next month. We are in the
    initial phases of our next project, an application to be developed
    in-house.
    Probably will have two databases, one for real-time data and another one
    for
    archived data. Probably will need reporting functionality and capabilities
    for
    both real-time data and archived data.
    This email and any files transmitted with it are confidential and
    intended solely for the use of the individual or entity to whom they
    are addressed. If you have received this email in error please notify
    the system manager.
    This footnote also confirms that this email message has been swept by
    MIMEsweeper for the presence of computer viruses.
    The E-Mail System is to be used for business purposes only.
    www.mimesweeper.com
    For the archives, go to: http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: forte-users-requestlists.xpedior.com

    At 09:33 AM 4/20/01, Rottier, Pascal wrote:
    Forte 4GL is:
    1) A language, TOOL (Compare to Java)
    2) An IDE (Compare to e.g. JBuilder or FJCE)
    3) A collaborative development environment, with central repository (Compare
    to ????)
    4) A distributed application server / object request broker (Compare to J2EE
    servers and/or CORBA)Let's not forget WebEnterprise, Express, and especially Fusion.
    I think, SUN is not al all interested in TOOL.If TOOL were just a language and had no market yet, you are probably
    right. But, not only is TOOL the key to the Forte environment, but it has
    an existing and profitable market. Sun still sells FORTRAN, after all, and
    continues to put money into ADE development for all its language
    products. The real kicker, though, is that I think iPlanet is very clear
    that Fusion, now iIS, is a very key product for them. There may be those
    who wish it were written in Java and who might lobby for doing a Java
    version, but it was clear at the conference that the iPlanet management
    recognize that Java just isn't up to the task at this point. It isn't as
    if all the iPlanet tools are actually written in Java, after all.
    They will only support them for as long as they need.Or, more likely, for as long as they make money.
    Now, in response to Microsofts .NET stratagy. We have yet to see how
    succesfull this will be, but I expect Microsoft to push this down the
    throats of developers and companies quite succesfully.Like they did DCOM?
    =========================================================================
    Thomas Mercer-Hursh, Ph.D email: [email protected]
    Computing Integrity, Inc. sales: 510-233-9329
    550 Casey Drive - Cypress Point support: 510-233-9327
    Point Richmond, CA 94801-3751 fax: 510-233-6950

  • Reporting tools/components for Forte Applications?

    Hi all,
    We are looking for what is currently in the marketplace to enhance the reporting
    capabilities of Forte. Ideally, we are looking for component libraries that we
    could import into our repository. Do these exist?
    Currently, I have found six reporting tools that are out there. The tools
    are Actuate, Crystal Reports, Report Workshop from Indus Consultancy
    Services, Brio Technologies (SQR) VisualBRIO, Visual CyberQuery from
    Cyberscience Corp., and Beacon from Brahma Software Solutions FORTify
    Components. Are there any others for Forte?
    If anyone is currently using one of these Reporting Tools for Forte or any
    others, could you give me any indications as to the costs, training, type of
    application using the Reporting tool, would you recommend using the product
    again, does it use wrappering or API, or is it a component based tool, and any
    other relevant information on the product?
    Thanks,
    Robert Brooke
    Application Developer
    Michelin North America (Canada) Inc. CA0/CA1
    PO Box 399
    New Glasgow, Nova Scotia
    B2H-3E6
    Phone: (902) 753-1977
    Fax: (902) 396-2180
    Note: We are currently developing in Forte 3.0.L.2. However, we would like
    to select a reporting tool/component within the next month. We are in the
    initial phases of our next project, an application to be developed in-house.
    Probably will have two databases, one for real-time data and another one for
    archived data. Probably will need reporting functionality and capabilities for
    both real-time data and archived data.
    This email and any files transmitted with it are confidential and
    intended solely for the use of the individual or entity to whom they
    are addressed. If you have received this email in error please notify
    the system manager.
    This footnote also confirms that this email message has been swept by
    MIMEsweeper for the presence of computer viruses.
    The E-Mail System is to be used for business purposes only.
    www.mimesweeper.com
    **********************************************************************

    http://jasperreports.sourceforge.net is a nice one, there is also a link to a graphical design tool.

  • Interfacing to Actuate on Solaris

    I've got a problem interfacing to Actuate and was wondering if anyone can help.
    We've been successfully interfacing to Actuate from Forte using Actuate's Requester API to connect to the Actuate Report Server for years now when the C wrapper DLL is on Windows 95 or NT.
    However now we want to put the C wrapper library on SunOS 5.6. It all appears to compile and link OK. The call to AcReqInitialize() appears to
    work OK but the call to AcReqConnect() fails returning -1.
    Has anybody managed to do this successfully on SunOS?
    Thanks for any help.
    Mark Carruthers
    20th Century Fox

    Is this an issue with JDeveloper 3.2 or Oracle 8.1.7? Is it possible to deploy to 8.1.7 on Solaris by writing the deployment script yourself?

  • Forte v3 - date for commercial release

    Greetings All
    Does anyone know when Forte 3 will be released and, more particularly,
    when the Forte training materials will have been upgraded to the new
    version ?
    I'm taking both Forte application development classes in the UK in a
    month's time, and am hoping they will cover release 3.
    Kind regards, Robin.
    Robin M. Roos <[email protected]>
    Computer Consultant, Milton Keynes, UK.
    Progress (see you in Boston?), Actuate, and Forte in due course...

    At 10:36 PM 5/20/97 +0100, Robin M. Roos wrote:
    Does anyone know when Forte 3 will be released and, more particularly,
    when the Forte training materials will have been upgraded to the new
    version ?R3 beta is available now to pretty much anyone with a serious need. R3 is
    projected for "production" release in August which means that any new users
    will get it then as will any existing users who ask for it. About three
    months later will come the maintenance release mailed without request to
    those on maintenance.
    R3 training is available now, although I believe it is a 3 day
    "differences" class, i.e., go ahead and do your basic training and then
    take the differences class to get ready for R3.
    =========================================================================
    Thomas Mercer Hursh, Ph.D email: [email protected]
    Computing Integrity, Inc. sales: 510-233-9329
    550 Casey Drive - Cypress Point support: 510-233-9327
    Point Richmond, CA 94801-3751 fax: 510-233-6950

Maybe you are looking for

  • Looking for Chapter Tool Beta or other app to create enhanced podcasts

    Hi all. I am looking at creating enhanced podcasts. On Google I found a mysterious app that Apple has apperantly created - "Chapter Tool Beta". However, all links to this app are dead. Any idea what happened to that app? Also, what are some alternati

  • Purge cache on Bridge CC

    Hi, My CC Bridge is not running well as it asks for the caches to be purged. When I try to do so in the preferences settings, the program gets stuck. How can I fix this glitch? My account is [email protected] Thanks.

  • A question from a newbie

    Hello. I just got a new Macbook, and so far I love it. No battery or wi-fi problems (yet). I am actually enjoying figuring out how to do things differently on a Mac. But I do have one question: On my previous Windows PC, after I would sync content wi

  • "Set text of container" behavior crashes Dreamweaver! (CS3)

    When I try to change pages which use the "Set text of container" behavior it crashes DW-CS3. The dialog which used to come up first shows a series of asterisks in the drop-down for the container selected, and the CPU does overtime for about a minute

  • RAID BIOS controlling Sytem HDD, not AHCI

    Hey All, I have an XW8400 Bios 2.38, adn I enabled the RIAD+AHCI sata emulation (and I did the regedit trick too) .  AHCI bios loads but it says the my System drive ( SATA DRIVE) is being controlled by the RAID BIOS and not AHCI I do have a RAID 0  w