Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
kimchiuri
Contributor
Contributor

Sore fail with "No qualified path for file"

Th script is as follow:

[Platforms]:

LOAD "CN_PLATFORM_ID",

    "CN_PLATFORM_DESCRIPTION" as "Platform";

SQL SELECT "CN_PLATFORM_ID",

    "CN_PLATFORM_DESCRIPTION"

FROM ONRIGHTS."CN_PLATFORM";

Store [Platforms] into a.qvd (qvd);

when running "load data" I get

Platforms << CN_PLATFORM Lines fetched: 35

The following error occurred:

No qualified path for file: ***

The error occurred here:

Store [Platforms] into a.qvd (qvd)

Data has not been loaded. Please correct the error and try loading again.

2 Replies
swuehl
MVP
MVP

Try creating a folder connection (named FolderConnection in this example and then use

Store [Platforms] into 'lib://FolderConnection/a.qvd' (qvd);

OmarBenSalem

You have to create a folder connection, and then store your Qvd into that folder as Stefan mentionned, since Qlik Sense works by default with lib connection.

Now, if you want to be able to enter your path as you did with no lib statement, you have to change the seetings file:

(under C:\Users\Your User\Documents\Qlik\Sense)

write StandardReload=0 (close QlikSense to be able to change this file)

Capture.PNG