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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
kevinchevrier
Partner - Creator III
Partner - Creator III

Mapping Load Unknown error

Hi,


I work on Qlikview v 12.10.20200.0.SR4


I want to do a MapSubstring. So I need to do a MAPPING LOAD before. Qlikview return Unknown error on MAPPING LOAD.

Below is the script we use :

encoding:
MAPPING
LOAD original,
conversion as url
FROM
[..\05_data_externe\encoding.xlsx]
(ooxml, embedded labels, table is Feuil1);

This MAPPING LOAD works fine on an other app. We don't know why it doesn't work as well.

In attachment, you'll find the picture of this error.


Regards,

Kevin

16 Replies
kevinchevrier
Partner - Creator III
Partner - Creator III
Author

Hi,

I just deleted it and copy this file from another folder. It still not working.

I also rename my file, not working too.

Thank you,

Kevin

arvind_patil
Partner - Specialist III
Partner - Specialist III

Hi Kevin,

I think you need to try on some sample data lets check is there any version issue.

Thanks,

Arvind Patil

jmvilaplanap
Specialist
Specialist

And do you use the wizard to load the file? I said because maybe the parameters "(ooxml, embedded labels, table is Feuil1); " are not right

kevinchevrier
Partner - Creator III
Partner - Creator III
Author

No it's OK, I use it to be sure the parameters were OK.

jmvilaplanap
Specialist
Specialist

I think is not the problem, but in mappings is not necessary rename fields, can you try without renaming?

And copy the excel file to the same folder than the qvw?

lcloatre
Partner - Creator III
Partner - Creator III

Do you try that ?

encoding_temp:
//MAPPING
LOAD original,
conversion as url
FROM
[..\05_data_externe\encoding.xlsx]
(
ooxml, embedded labels, table is Feuil1);

encoding:
MAPPING
LOAD original,
url
RESIDENT encoding_temp;


drop table encoding_temp;

kevinchevrier
Partner - Creator III
Partner - Creator III
Author

Perfect Laurent. I don't understand why but it works...

Thank you.

Kevin