Usecases - QlikPreSalesDACH/Qlik-Data-Concierge GitHub Wiki
Qlik Data Concierge gives you the possibility to deliver different wizards or mashups to support your users in their use cases. Through the landing page and the provided containers, the users can pick from a variety of wizards to gain access to the necessary datasets.
To access the Qlik Data Concierge you need to navigate to the index.html file trough your browser. Your link should look like this:
- http(s)://<"hostname">/ resources/DataConciergev2/index.html
Now the index.html file generate dynamically the possible container to access your use cases. All use cases are scripted in separate files as you will see in the further documentation. As described in the Setup QDC Core section it is possible to delete, edit or add new container.
Just customize the index_config.json file.
Each container is a single Item from the json file. If you don’t like to display it just delete the item. If you like to add a new container you can copy the following part and fill it out with the parameters for your needed container:
{
"path": "qdc-bex.html",
"color": "color1",
"icon": "fa-magic",
"picture": "img/BEx.png",
"headline": "SAP BEx Queries",
"launch": "Start Data Concierge",
"description": "<p>OnDemand data acquisition</p><p>for SAP BW Queries.</p>"
}
"path": html file that should be opened
"color": you can pick from color1, color2, color3. This property defines the color of the triangle in the right upper corner. If you like to add more colors, you can add a new class in the style.css file.
"icon": this property defines the icon in the triangle on the right upper corner. It' using Font Awesome icons. You can pick your icon from the list.
"picture": defines the picture in the background.
"headline": type in the text you like to see in the headline.
"launch": text that will be displayed on the launch button.
"description": write down the description you like to see in the box under the image to describe your use case.