Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
kevinchevrier
Partner - Creator III
Partner - Creator III

Unknown Error Mapping Load

Bonjour,


Je travaille sur Qlikview v 12.10.20200.0.SR4


Je cherche à faire un MapSubstring. Donc j'ai besoin de faire mon MAPPING LOADavant. Qlikview me retourne une erreur inconnue sur MAPPING LOAD lors du rechargement.

Voici le script utilisé :

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

Ce MAPPING LOAD fonctionne pour une autre appli.  Je ne comprends pas pourquoi le comportement est différent.


En pièce jointe, la copie écran de l'erreur.


Merci,


Kevin

1 Solution

Accepted Solutions
lcloatre
Partner - Creator III
Partner - Creator III

Si tu le fais en 2 fois, tu as le même message ?

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;

View solution in original post

2 Replies
lcloatre
Partner - Creator III
Partner - Creator III

Si tu le fais en 2 fois, tu as le même message ?

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

C'est parfait Laurent ! Je ne comprend pas pourquoi mais ça marche !

Merci encore !

Kevin