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.
hi all, is there any way to get the Impact Analysis result through FEX code. i need Column,Synonym,last accessed by, last accessed date and FEX relationship result.
(ie)when i run the FEX it should yeild the talbe which contains Column,Synonym, last accessed by, last accessed date and FEX relationship as it is in Procedures by Column Impact Analysis
My code resides in Content folders.
we are on 8104This message has been edited. Last edited by: Tamra,
WebFocus 8202M APP Studio Info assist Report caster Portals Maintain EXcel,PDF,HTML,Active Reports
Posts: 82 | Location: MD | Registered: May 14, 2010
The Reporting Server's Impact Analysis tool is not aware of the content within the WebFOCUS content tree. The IMPACT ANALYSIS is available within App Studio for WebFOCUS objects that are stored in the WebFOCUS Repository or Content tree. For example: 1. Right-click on a Business Intelligence Portal content folder or the top level CONTENT and choose "Impact Analysis". This will open the application tree. 2. Select a Master File. 3. Click on "Analyze" to find any procedures that use this Master File within the Business Intelligence Portal.
Thank you for participating in the Focal Point Forum.
All the pointing and clicking is OK, but it would be really nice to be able to do Impact Analysis by running fexes created by code or by pointing and clicking.
Francis
Give me code, or give me retirement. In FOCUS since 1991
Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
If you are happy to report against the WebFOCUS Repository then you can do something like this:
ENGINE SQLMSS SET DEFAULT_CONNECTION REPOSITORY
SQL SQLMSS PREPARE SQLLOOP FOR
select t2.appname,t2.objname,t2.prt_path,t2.lastmodon,t2.lastmodby
from wf_content_revs t1
inner join wf_reposobj t2 on t1.obj_handle = t2.handle
where lower(cast(cast(t1.bcontent as varbinary(max)) as varchar(max))) like '%&TAB_NAME.EVAL%'
END
TABLE FILE SQLLOOP
PRINT
prt_path AS 'Location'
BY objname AS 'Report Name'
HEADING
"TABLE: &TAB_NAME"
FOOTING
""
ON TABLE SET EMPTYREPORT ON
ON TABLE SET BYDISPLAY ON
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET STYLE *
ENDSTYLE
END
I have a number of variations on this, including one that lists all reports that by Synonym
Cheers
Stu
WebFOCUS 8.2.03 (8.2.06 in testing)
Posts: 253 | Location: Melbourne, Australia | Registered: February 07, 2007