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     [CLOSED] Table to show focexec properties

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[CLOSED] Table to show focexec properties
 Login/Join
 
Guru
posted
Are there tables available which indicate which MRE reports appear on user lists?

Best wishes for the holidays, for 2013, for IBI and the Focus Nation.

This message has been edited. Last edited by: S.J. Kadish,


Sandy Kadish
Dev: 8.2.04- PostgreSQL
Test: 8.2.04 - PostgreSQL
Prod: 8.2.04 - PostgreSQL
 
Posts: 238 | Location: Atlanta, GA/Rehovot, Israel | Registered: May 06, 2003Report This Post
Expert
posted Hide Post
ntiko, not in 7.6 anyway.
but i do it, with code.
the MRE repositories tell me what group and therefore what domain each user has.
then for a domain, i read the domain.htm
yep, i write a temporary master , filedef it to the domain's .htm, and read it.
i'm looking for lines that contain 'MRFLAG' and omit 'hidden'...
Does that sound like too much to do? if so, say. if not, i'll help you write some code if you want, Sandy.




In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
 
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003Report This Post
Expert
posted Hide Post
I'm sure that Francis posted a synonym for something like this many years ago ...

However, here's one that works on 7.6 onwards (I think Wink)

$ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
$
$ Synonym Name:    mre_processes.mas
$
$ created By:      Anthony Alsford
$
$ Date Created:    5th March 2012
$
$ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
FILE=MRE_processes, SUFFIX=FIX, $
$ -- Use filedef to identify required file DATASET='e:\ibi\basedir\director\director.htm'
$ -- to point to the relevant .htm file on your server
 
SEGNAME=MRE_LINE, SEGTYPE=S0, $
  FIELD=MRE_LINE, MRE_LINE, A300, A300, MISSING=OFF ,$
 
$ -- Determine standard folder name
DEFINE STD_FOLDER/A70V = IF MRE_LINE CONTAINS '<!--' THEN ''
                   ELSE IF MRE_LINE CONTAINS 'HREF' AND MRE_LINE OMITS '[*]' THEN GETTOK( GETTOK(MRE_LINE, 300, -2, '>', 70, 'A70'), 70, 1, '<', 70, 'A70V')
                   ELSE LAST STD_FOLDER;
 
$ -- Determine standard folder name HREF
DEFINE STD_FLDHREF/A70V = IF MRE_LINE CONTAINS '<!--' THEN ''
                   ELSE IF MRE_LINE CONTAINS 'HREF' AND MRE_LINE OMITS '[*]' THEN GETTOK(MRE_LINE, 300, 2, '''', 70, 'A70V')
                   ELSE LAST STD_FLDHREF;
 
$ -- Determine file name 
DEFINE FEX_HREF/A70V = IF MRE_LINE CONTAINS '<!--' THEN ''
                   ELSE IF STD_FOLDER EQ '' THEN ''
                   ELSE IF MRE_LINE CONTAINS 'HREF' AND MRE_LINE CONTAINS '[*]' THEN TRIMV('T', GETTOK(MRE_LINE, 300, 2, '''', 70, 'A70'), 70, ' ', 1, 'A70V')
                   ELSE '';
 
$ -- Determine descriptive name
DEFINE FEX_NAME/A70V = IF MRE_LINE CONTAINS '<!--' THEN ''
                   ELSE IF MRE_LINE CONTAINS 'HREF' AND MRE_LINE CONTAINS '[*]' THEN GETTOK(GETTOK(MRE_LINE, 300, -2, '>', 70, 'A70'), 70, 1, '<', 70, 'A70V')
                   ELSE LAST FEX_NAME;
 
$ -- Determine MR Flag(s)
DEFINE MRFLAG_START/I3 = POSIT(MRE_LINE, 300, 'MRFLAG=', 6, 'I3') + 8;
DEFINE MRFLAG/A70V = IF MRFLAG_START EQ 8 THEN '' ELSE TRIMV('T', GETTOK(SUBSTR(300, MRE_LINE, MRFLAG_START, MRFLAG_START+69, 70, 'A70'), 70 ,1 ,'''', 70, 'A70'), 70, ' ', 1, 'A70V');

T



In FOCUS
since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2  
WebFOCUS App Studio 8.2.06 standalone on Windows 10 
 
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004Report This Post
Expert
posted Hide Post
so sweet!




In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
 
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003Report This Post
Guru
posted Hide Post
Thanks so much. Not quite ready to close this.
All the best for the holidays and WebFocus 8.0


Sandy Kadish
Dev: 8.2.04- PostgreSQL
Test: 8.2.04 - PostgreSQL
Prod: 8.2.04 - PostgreSQL
 
Posts: 238 | Location: Atlanta, GA/Rehovot, Israel | Registered: May 06, 2003Report This Post
Expert
posted Hide Post
Thanks Sandy for the update and thanks for everyone's input, happy new year to all.

Sandy, please kindly keep us posted on the progress and the final solution, thanks.

Cheers,

Kerry


Kerry Zhan
Focal Point Moderator
Information Builders, Inc.
 
Posts: 1948 | Location: New York | Registered: November 16, 2004Report 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     [CLOSED] Table to show focexec properties

Copyright © 1996-2020 Information Builders