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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
qvqs14
Contributor
Contributor

Native Path or System error in Qliksense script

Hello Everyone,

I am getting the Native path error or System error in Qliksense Script.

I am having the script as below.

LET vToday = date(Today(),'YYYYMMDD');

SET vConnecction_String = 'Lib://SampleProject/Datafiles';

LOAD
Pname,
"Date"
FROM [$(vConnecction_String )/Monthly/Sample_$(vToday).xlsx]
(ooxml, embedded labels, table is Sheet1);

 

Issue Description :

While loading the data by calling variable in the FROM statement, Getting Native path error or System error.

 

Could you please help me on the same. Thanks in Advance.

 

Regards,

Venkat

Labels (3)
3 Replies
Or
MVP
MVP

There looks to be an extra whitespace after vConnection_String that shouldn't be there.

qvqs14
Contributor
Contributor
Author

Thank for your reply...

 

But here in my case, i am not able to read the variables in FROM statement.

 

Any one help me on the same..

Or
MVP
MVP

You are using the wrong variable name because of the extra space. You're getting the specific error you're getting because that incorrect name evaluates so the path isn't valid.

With the wrong variable name you have: Or_1-1658177861728.png

 

With the space removed:

Or_2-1658177900575.png