Build-in functions
The package expose one (for now) build-in function. The default behavior is to load all of these functions. In order to disable them from loading just pass disableBuildIn: false
when configuring the server:
1 2 3 4 5 |
|
Build-in functions
-
ListAllFunctions
- get info about the registered functions (id, name, is enabled and description) from within Qlik load script.In order to use it:
1 2 3 4 5 6 7 8
// unfortunately we'll need this temp table Temp: Load RowNo() AutoGenerate(1); SSEFunctionsList: Load * Extension QCB.ListAllFunctions(Temp); Drop Table Temp;
And the result:
Note
It is possible to load set of fields:
1 2 3 4
Load SSE_Function_ID as FunctionID, SSE_Function_Name as FunctionName, Extension QCB.ListAllFunctions(Temp);