Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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
qlikmsg4u
Specialist
Specialist

you may missing something like ";" or commas somewhere, please post the script that would be easy to look into the problem

Not applicable
Author

Some wrong syntax error in the code. Need to write correct code and reload.

Not applicable
Author

Here is the script, comapny works in energy, so i can't share files, even if i wanted too.

in files i joined, in my script, when a drop this table or make it like comment, i get script loading crash.

Not applicable
Author

Hi K N, i find out the problem, but i dont know why i get that,

if i delete all chart and graphic in my qvw app, and suppress the table, i dont have loading probleme.

You know what's the problem??

Not applicable
Author

Hi Kuldeep, i find out the problem, but i dont know why i get that,

if i delete all chart and graphic in my qvw app, and suppress the table, i dont have loading probleme.

You know what's the problem??

sasiparupudi1
Master III
Master III

You have breaks in your column names..

Try

POMT:

LOAD [Code],

     Poche,

     [Poche en contrainte ?]

FROM

[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

[Diagnostic poches OMT Midi Pyrénées.xlsx]

(ooxml, embedded labels, table is Poches);

qlikmsg4u
Specialist
Specialist

no need to delete any thing in UI just delete the script once and again load it from source files may be you are missing something tiny thing like more spaces in column names i guess

Not applicable
Author

I dont want to load, this table, when i suppress or make it like a comment, i get loading crash.

But when i delete all chart and tab in my qvw app, i dont get that problem.

Dont understand what happened

sasiparupudi1
Master III
Master III

I do not see why you can not comment this table...May be you got the table joined to some other tables down the script?

if not , you should be able to do the following..

HTH

/*

POMT:

LOAD [Code],

     Poche,

     [Poche en contrainte ?]

FROM

[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

[Diagnostic poches OMT Midi Pyrénées.xlsx]

(ooxml, embedded labels, table is Poches);

*/