Focal Point Banner


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.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED] SYSCOLUM for FILES

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[SOLVED] SYSCOLUM for FILES
 Login/Join
 
Expert
posted
I know we get the FILE info from SYSCOLUM and how to do that. But, I cannot remember where to get the data for the ACX files and FOCEXECs? Who Knows? Thanks in advance for passing it on...

This message has been edited. Last edited by: Doug,
 
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005Report This Post
Virtuoso
posted Hide Post
SYSFILES will give you all the MASTER files.

APP LIST HOLD will create the FOCAPPL file which lists all the APP directories

APP QUERY directorylist HOLD will create the FOCAPPQ file which lists all the files in the applications of the directorylist


Daniel
In Focus since 1982
wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF

 
Posts: 1980 | Location: Tel Aviv, Israel | Registered: March 23, 2006Report This Post
Expert
posted Hide Post
Thanks for that info. But, what I'm looking for is something within WebFOCUS that provides the info for ACX files and FOCEXECs similar to that information provided from SYSCOLUM for the MFDs, as follows:
TBNAME TBTYPE SEGNO SEGNAME SEGTYPE LOCSEGNAME SKEYS FILENAME NAME     COLNO COLTYPE LENGTH 
CAR    FOC        1 ORIGIN  S       ORIGIN         1 CAR      COUNTRY      1 CHAR        10 
CAR    FOC        2 COMP    S       COMP           1 CAR      CAR          2 CHAR        16  etc...


I know that I can do some various DOS commands on the App Folders and read the directory of fexes and the the fexes themselves and I just may do that. But, is that info available within WebFOCUS for the ACX / FOCEXECs like that of SYSCOLUM? ... Yes: Smiler, No: Frowner ...
 
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005Report This Post
Expert
posted Hide Post
SYSFILES will give you any type of file.

SQL FMI SET SYSFILES ACCESS
TABLE FILE SYSFILES
PRINT *
END


As for ACX file info, not sure how much, but some is accessed from SYSTABLE


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

 
Posts: 6347 | Location: 33°49'23.0"S, 151°11'41.0"E | Registered: October 31, 2006Report This Post
Expert
posted Hide Post
Thanks Waz, that tells me about the files. But, I want the contents of those files... I'll just make a fex to read the acx and fex files... -READ or something like that... Smiler
 
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005Report This Post
Expert
posted Hide Post
As mentioned, some of the info is found when you table SYSTABLE.

e.g.

SERVER
REALNAME


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

 
Posts: 6347 | Location: 33°49'23.0"S, 151°11'41.0"E | Registered: October 31, 2006Report This Post
Virtuoso
posted Hide Post
Actually, there IS something to show you the contents of the ACX and FEX files. Right click and chose Edit in Textfor stating the obvious, but it seems like you're going to a lot of trouble for something that already has an easy solution. If you don't want to know about the files, but rather their contents, it sounds like you want a focexec to read a focexec - which doesn't make much sense unless you're trying to get around restrictions that limit what you can currently see.


Regards,

Darin



In FOCUS since 1991
WF Server: 7.7.04 on Linux and Z/OS, ReportCaster, Self-Service, MRE, Java, Flex
Data: DB2/UDB, Adabas, SQL Server Output: HTML,PDF,EXL2K/07, PS, AHTML, Flex
WF Client: 77 on Linux w/Tomcat
 
Posts: 2298 | Location: Salt Lake City, Utah | Registered: February 02, 2007Report This Post
Expert
posted Hide Post
I’m sorry that I did not explain myself clearly enough… So, I’ll try again.

First off, this was spurred on by the post regarding documentation a while back.
Secondly, the below code
TABLE FILE SYSCOLUM
PRINT TBNAME TBTYPE …
WHERE TBNAME EQ 'MyFile'
END
provides the “contents” of “MyFile” via “TABLE FILE SYSCOLUM” … WHERE TBNAME EQ ‘MyFile’

Now, finally, I am wondering (and doubtfully so, imho) if there is something out in WebFOCUS Land such as “TABLE FILE FEXFILES” which would work something like this:
TABLE FILE FEXFILES” … PRINT FEXLINE … WHERE FEXNAME EQ ‘MyFex’
Now, I do know how to do this using a created MFD and associated FILEDEFs, MacGyver stuff, etc… But, I just don’t want to “reinvent the wheel” again if there’s already a wheel out there that does what I want…

Thanks again...
 
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005Report This Post
Expert
posted Hide Post
I do all of that by hand, i.e. a generic master.


Ginny
---------------------------------
Prod: WF 7.7.01 Dev: WF 7.6.9-11
Admin, MRE,self-service; adapters: Teradata, DB2, Oracle, SQL Server, Essbase, ESRI, FlexEnable, Google
 
Posts: 2723 | Location: Ann Arbor, MI | Registered: April 05, 2006Report This Post
Virtuoso
posted Hide Post
There isn't really anything like that. The fex files under MRE (at least for now) don't exists in any sort of structure that could be read like. They are just text files buried under the basedir directory.

For files in the server's application path there are a couple of statements that get you part way there that you may want to chekc out.

APP LIST [HOLD] lists the applications under approot. The HOLD option creates focappl.ftm which you can then write a report against.

APP QUERY app [HOLD] lists all the files under the specified location. The HOLD option creates focappq.ftm. You could then report against that hold file selection only thoses record where the filename contains ".fex".

Maybe those would be of some help...


Regards,

Darin



In FOCUS since 1991
WF Server: 7.7.04 on Linux and Z/OS, ReportCaster, Self-Service, MRE, Java, Flex
Data: DB2/UDB, Adabas, SQL Server Output: HTML,PDF,EXL2K/07, PS, AHTML, Flex
WF Client: 77 on Linux w/Tomcat
 
Posts: 2298 | Location: Salt Lake City, Utah | Registered: February 02, 2007Report This Post
Expert
posted Hide Post
The only thing that would come close as automated, would be the Impace Analysis functions on the WF server.


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

 
Posts: 6347 | Location: 33°49'23.0"S, 151°11'41.0"E | Registered: October 31, 2006Report This Post
Expert
posted Hide Post
Thanks Everyone...

I'll do something with the "generic master" and the "focapp*" files... I'll get back to this later and close it for now.

Thanks Again,
Doug




   In FOCUS Since 1983 ~ from FOCUS to WebFOCUS.
   Current: WebFOCUS Administrator at FIS Worldpay | 8204, 8206
 
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED] SYSCOLUM for FILES

Copyright © 1996-2020 Information Builders