Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
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
MVP
MVP

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

Astrato.io Head of R&D

View solution in original post

4 Replies
rbecher
MVP
MVP

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

Astrato.io Head of R&D
Not applicable
Author

Hi Ralf,

Thank you for your help.

btw where is right position for put INPUTFIELD command?

Regards,

Ted

rbecher
MVP
MVP

Before the LOAD statement:

INPUTFIELD T_RED;

TRANSPORT_RED:

LOAD * INLINE [

BRAND_P, T_RED

BlueDonker, 1.2

];

Astrato.io Head of R&D
Not applicable
Author

Hi Ralf,

Thank you very much for enlightenment.