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:
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:
But it did not help.
And I can see and access all the files in that managed space:
I did not find any limitations mentioned in Help for using filelist function in managed spaces.