Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. FOCMAN

    Logging into MRE

    You can try using an MRE exit routine which can be used to validate against anything. In essence you write a program which can issue JDBC calls to any database.
  2. FOCMAN

    How to clear global variables in code ?

    LET CLEAR * only will clear LET command aliases and not && variables. There is no way to clear && variable. But, do to the non persistence of WebFOCUS, after a report is rendered a fresh connection is made and all && variable are cleared as long as you have a private connection set up which is...
  3. FOCMAN

    WebFocus 431 under Windows XP

    Not sure but it should work. IBI will probably not support this configuration. I do not believe 4.3.1 is supported anymore. The current release is 5.3.2. 4.3.5, 4.3.6, 5.1, and 5.2 were its predecessors.
  4. FOCMAN

    BTS and LAWSON

    iWay Software also provides a Lawson adapter
  5. FOCMAN

    Run report from two different servers.

    How are you configured? Are there 2 separate WebFOCUS Servers? Are they configured to see each other? What is the file type you are reading?
  6. FOCMAN

    Data Types

    Can you display your procedure around line 27? Are you issuing SQL in your procedure? By settting engine to SQLORA your SQL out of the back end has to meet ORACLE syntax. If you leave SQLENGINE alone WebFOCUS takes care of the proper ORACLE syntax. I do not use SQLENGINE seetings unless using...
  7. FOCMAN

    ON GRAPH HOLD AS GTEST FORMAT EXL2K

    Do not think you can do a GRAPH FILE with EXL2K format. You can take the data in EXL2K and use Excel itself to do a graph. You can also hold the data in EXL2K as a pivot table and can easily graph in Excel from there.
  8. FOCMAN

    MRE Users' Table

    Rather than trying to hack into the MRE repository which just shows who the registered users are and not how much they use you should investigate the FOCLOG or Resource Analyzer product(s) which gathers usage statistics and give an accurate view of who is doing what and how often. The MRE...
  9. FOCMAN

    JOIN With different data type

    You need to do a DEFINE based JOIN: Something like: JOIN MYFIELD IN TABLE1 TO ALL FIELD2 IN TABLE2 AS J1 END DEFINE FILE TABLE1 MYFIELD/A4 WITH FIELD1 = EDIT(FIELD1); END TABLE FILE TABLE1 PRINT MYFIELD FIELD2 END Look this up in a manual. Also the TO field in TABLE2 should be indexed.
  10. FOCMAN

    -READ cannot locate file

    Put a -RUN betwwen the DYNAM command and the -READ -RUN executes whats in the stack, in this case the DYNAM command
  11. FOCMAN

    IF EXISTS DROP TABLE

    Try: BEGIN TRANSACTION IF EXISTS (SELECT * FROM dbo.sysobjects where id = object_id(N'[dbo].[jobs]')AND OBJECTPROPERTY(id, N'IsUserTable') = 1) DROP TABLE JOBS
  12. FOCMAN

    IF statement

    The message says that you are using fields from multiple data paths. Do a CHECK FILE MYFILE PICT if you can and you will see you have a multipath hierachy. Example : NAME | | VACATION SALARY Its like saying IF VACATION EQ '20040501' AND SALARY GT 1000; This...
  13. FOCMAN

    Accessing VSAM files via WebFOCUS

    RESULTS.DATA is used, I believe, is for deferred requests and has nothing to do with VSAM specifically. Make sure DISP=SHR on RESULTS.DATA, have a DSNTYPE=LIBRARY and is allocated in the server startup JCL. It should be managed by SMS.
  14. FOCMAN

    Accessing VSAM files via WebFOCUS

    I have. What is the issue?
  15. FOCMAN

    -SET ECO=ALL;

    If you have -SET &ECHO=ALL and do view source in browser you can see the ECHO output which you can save locally.
  16. FOCMAN

    Comma-delimited EXPORT from DB/2

    Do not have DB2 to test but try putting a constant in your SQL SELECT statement. SELECT SO_STATUS_NEXT_ID, SO_STATUS_NEXT_DESC, ',$'
  17. FOCMAN

    Webservices and Webfcous

    Release 5.2 is needed for WF Web Services. Look at the article that was previously mentioned. Do you have VS.NET ?
  18. FOCMAN

    Upgrading from 4.3.6 to 5.2.3

    The latest release is 5.2.3. If you are using the desktop based WebFOCUS the architecture has changed and will require a web server to work stand alone. In 5.2.3 the server console has changed to allow more function. 5.2.3 also is promoting more of a servlet based architecture. What is your...
  19. FOCMAN

    Webservices and Webfcous

    All WF focexecs can be exposed as web services. You can create the WSDL simply by typing in a URL. I have done this and using Visual Studio .NET create a VB.NET program that calls a focexec and parameters. This is a chargable feature of WebFOCUS.
  20. FOCMAN

    webfocus and apche

    The WebFOCUS Reporting Server has to be started which is a separate process from the Web Server

Part and Inventory Search

Back
Top