Focal Point
[SOLVED] Impact Analysis

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/2787072286

May 10, 2016, 02:18 PM
RaviD
[SOLVED] Impact Analysis
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 8104

This message has been edited. Last edited by: Tamra,


WebFocus 8202M
APP Studio
Info assist
Report caster
Portals
Maintain
EXcel,PDF,HTML,Active Reports
May 11, 2016, 08:58 AM
Tamra
RaviD

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.

Kindest regards,
Tamra Colangelo
Focal Point Moderator - Information Builders Inc.
* Summit 2016 – June 13-17 in Reno, Nevada  - http://www.informationbuilders.com/events/summit


WebFOCUS 8x - BI Portal, Developer Studio, App Studio, Excel, PDF, Active Formats and HTML5
May 11, 2016, 09:05 AM
Francis Mariani
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
May 12, 2016, 01:42 PM
RaviD
Thank you all.


WebFocus 8202M
APP Studio
Info assist
Report caster
Portals
Maintain
EXcel,PDF,HTML,Active Reports
May 13, 2016, 03:00 AM
StuBouyer
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)