As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.
Join the TIBCO Community TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.
From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
Request access to the private WebFOCUS User Group (login required) to network with fellow members.
Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.
I usually use a batch file where I put the complex sytax on "DOS" level to avoid problems with line length in the fex:
I create a batch file TEST.BAT which contains the command D:\IBI\APPS\vmis\LGRP.EXE \\CHKAU12NTAS116 >D:\IBI\APPS\vmis\TEST.TXT (This command has already the length of 70 and with more complex paths it would be even longer) and I call it in a fex with the syntax ! &&APPROOT.EVAL\vmis\TEST.BAT or DOS &&APPROOT.EVAL\vmis\TEST.BAT
I just happened to have a fex running that zips and copies a file:
REM ZIPCOPY.BAT REM This batch file is used by the College Database report (COLL_DB.FEX). It calls the Winzip Command Line Utility REM to zip the file and save it to the proper College Database directory in S:\SECURE\ "c:\program files\winzip\wzzip" "%2 %3" c:\temp\%1 If Not ErrorLevel 1 Goto Exit Echo *** ERROR COPYING FILE *** :Exit
-* CREATING THE DOS COPY COMMAND COMPONENTS USING &COLL -* THE FILE MUST BE SAVED INTO A DIRECTORY NAMED THE VALUE OF &COLL -SET &FILENAME= 'DATA_' | &COLL | '.XLS'; -TYPE &FILENAME -*SET &PATH1='S:\SECURE\' | &COLL | '\COLLEGE'; -SET &PATH1='T:\SECURE\' | &COLL | '\COLLEGE'; -SET &PATH2='DATABASE\'; -TYPE &PATH1 -TYPE &PATH2 -SET &ZIPNAME= &COLL | &MDYY; -TYPE &ZIPNAME -SET &ZIP_PATH2= &PATH2 | &ZIPNAME; -TYPE &ZIP_PATH2 -SET &DEL_ZIP='DEL "' | &PATH1 | ' DATABASE\*.ZIP"'; -TYPE &DEL_ZIP &DEL_ZIP -RUN DOS K:\FOCUS\INCLUDE\ZIPCOPY.BAT &FILENAME &PATH1 &ZIP_PATH2
Greetings from the little apple. Yes, I was a regular on the old BB. I haven't done a lot of reporting for the past couple of years but still do a bit. I have always appreciated the willingness of the WebFocus community to share their experise. For me it's one of the strong points of the product.