Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to show value field in QSense from Binary Load QView?

Dear All,

I have a QVW file, i wanna migration this app to Qsense. I use binary load to load the qvw file.

but i have trouble when i show some field, there is not same value with field in qvw file.

i think it is because qvw use Load * inline.

please see in the below picture:

ask2.png

Can I display the contents of the field as same as in qvw file in QSense without having to rewrite the script and just make a connection by using a binary load?

i enclose qvw file and qvf file in attachment,

Hope someone can help me solve this problem.

Best Regards,

Ted

1 Solution

Accepted Solutions
rbecher
Partner - Master III
Partner - Master III

This is related to the INPUTFIELD command (which is on the wrong position in QVW script, however...). If you remove INPUTFIELD the data get loaded in Qlik Sense.

- Ralf

Data & AI Engineer at Orionbelt.ai - a GenAI Semantic Layer Venture, Inventor of Astrato Engine

View solution in original post

4 Replies
rbecher
Partner - Master III
Partner - Master III

This is related to the INPUTFIELD command (which is on the wrong position in QVW script, however...). If you remove INPUTFIELD the data get loaded in Qlik Sense.

- Ralf

Data & AI Engineer at Orionbelt.ai - a GenAI Semantic Layer Venture, Inventor of Astrato Engine
Not applicable
Author

Hi Ralf,

Thank you for your help.

btw where is right position for put INPUTFIELD command?

Regards,

Ted

rbecher
Partner - Master III
Partner - Master III

Before the LOAD statement:

INPUTFIELD T_RED;

TRANSPORT_RED:

LOAD * INLINE [

BRAND_P, T_RED

BlueDonker, 1.2

];

Data & AI Engineer at Orionbelt.ai - a GenAI Semantic Layer Venture, Inventor of Astrato Engine
Not applicable
Author

Hi Ralf,

Thank you very much for enlightenment.