Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Script Loading problem

Hi everybody,

I have a strange problem with my qvw app :

My app work great, but i when i remove the script for charging a particulary table from my load script, i get :
" Execution of Script Failed. Reload old data? "

When drop another table, i dont have this problem.

If somebody know what happened.....

Thanks

12 Replies
Anonymous
Not applicable
Author

as I understood there are two things:

if you delete  objects in your qvw app, you have no Problems as These objects only exists onthe surface and have

nothing todo with the script (and script load). you never get an error message on this

if you delete or comment These tables in your script your load Fails. do you use the deleted/commented table (POMT) elsewhere? Normally just a message "table not found" should occur"

do you completely delete/comment the part? a "execution failed message" occurs e.gmm when something with file Actions Fails (eg. cannot write to log)

/*
POMT:

LOAD [Code],
     Poche,
     [Poche en contrainte ?]
FROM
[..\1_Sources\Poche OMT\POMT.xlsx]
(ooxml, embedded labels, table is CH88_20150621_234715);


Left join (POMT) LOAD Départ as [Code du départ],
     Poche,
     [Nombre elements encadrants],
     [Element encadrant
amont],
     [Element encadrant
aval 1]

FROM
[..\1_Sources\Poche OMT\Diagnostic poches OMT Midi Pyrénées.xlsx]
(ooxml, embedded labels, table is Poches);
*/

Not applicable
Author

Yes Rudolf, its exactly what happen,

Yes in some variable définition, i use the table POMT, and in a chart, but when i remove all tab in my qvw i have no problem. It seem the problem isn't the script, but other thing that i dont know, too strange

qlikviewwizard
Master II
Master II

Hi

Please follow these steps:

1. Wrap the titles in source xls files. There is a space between encadrant and amont. Also for encadrant and aval Remove the space.

    [Element encadrant

amont],

    [Element encadrant

aval 1]


2. Uncheck the relative path and reload.


Capture.JPG

Hope this will help you.


Thank you.