This issue got resolved almost 7 months ago, now we are able to access shares path, views, dlls in ADLS.
Steps:
- Enable ADFScopeSupport global parameter to true to start with Scope activity.
- Establish the linked services for ADLA and ADLS using service principal in ADF and make sure this service principals have all required ACLs permissions in ADLA and ALDS to access desired file and submit job in ADLA.
- When you try to pass any date parameter with "-" included in value, then Scope won't recognize it and throws error. To
fix this make sure to replace "-" with "," in data parameter value.
Example: start_date = "2022-05-07" // This won't work here. Probably, product team will provide fix soon.
start_date = "2022,05,07" //This will work fine. - Do not pass double slash in ADLS path.
Example: /local/folder1**//**folder2/test.txt //This won't work here
/local/folder1/folder2/test.txt //This will work fine