Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
VladKomarov
Partner - Contributor III
Partner - Contributor III

Unable to use filelist call in Managed Spaces

Hello!

I am working on the app that allows me to scan all QVDs in specific spaces in SaaS tenant.

I am using the following code:

for each Ext in 'qvs', 'qvf', 'qvd', 'xlsx', 'xls'
for each File in filelist (Root&'/*.' &Ext)


FullFilesList:
LOAD
'$(File)' as Name,
right('$(File)', Len('$(File)') - Index('$(File)', '.', -1)) as Type,
FileSize( '$(File)' ) as Size,
FileTime( '$(File)' ) as FileTime
autogenerate 1;


next File

next Ext

 

It works fine in all spaces, except Managed ones that were not created by me.

No errors are reported, the code just skips that loop part:

VladKomarov_0-1650458758935.png

In the example above, both "M Test QVDs Tracking" and "SAP QVD Space" spaces were created as Managed. The "M Test QVDs Tracking" was created by me, the "SAP QVD Space" - by other person. 

I've got the full access rights to both these spaces and I even set myself as an owner to the "SAP QVD Space" one:

VladKomarov_1-1650458973255.png

But it did not help.

And I can see and access all the files in that managed space:

VladKomarov_2-1650459472735.png 

I did not find any limitations mentioned in Help for using filelist function in managed spaces. 

Please advise. 

Regards,

Vlad

Labels (1)
  • SaaS

0 Replies