Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
rittermd
Master
Master

Identify an Extension

If you inherit an app that includes some extensions is there any way to identify which extensions they are if you don't recognize them by the look and feel? 

I know that some newer extensions include this information in the properties pane.  But older ones do not.

3 Replies
william_fu
Creator II
Creator II

Maybe if you import the app into an environment without the extension installed, it will give you an error message with the extension name where the object would be?

rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

A couple of options:

1. The devtool extension will display the qType field. https://github.com/erikwett/DevTool

2. Use the new developer menu Developer menu in Qlik Sense client.

Select an object and then "properties" in the developer menu. qType is the extension name.

3. Use QS Document Analyzer to get a list of all objects in the app.

Search Recipes | Qlikview Cookbook

-Rob

http://masterssummit.com

http://qlikviewcookbook.com

balabhaskarqlik

May be, it's through scanning the app for object ids => get each object's properties => check if extension exists in QRS etc...

Or

https://github.com/stefanwalther/sense-extension-governance

Or by using script:

FOR Each vFile in filelist ('$(Path)'&'\*.qvd')

  QVD_Files:

  LOAD

  Subfield('$(vFile)','\\',2) AS Name,

  Subfield(FileName('$(vFile'),'*',2) AS FileExtension

  FileSize( '$(vFile)' )/1024 AS Size,

  FileTime( '$(vFile)' ) AS FileTime,

  QvdNoOfRecords( '$(vFile)' ) AS Rows,

  QvdNoOfFields( '$(vFile)' ) AS Fields

  autogenerate 1;

NEXT vFile