We're using FME Flow 2023.1.2.
We have got a Windows Share registered as a custom resource at FME Flow, which is locally accessible as a UNC path. I'm looking for a way to reference the custom resource in such a way that it locally uses the UNC path and at FME Flow automatically uses the resource. I believe I can use Deployment Parameters for that.
When I create a Deployment Parameter and use it as part of the path in a FeatureReader, it doesn't recognize the file I'm trying to reach, though I did fill in the local value of the Deployment Parameter.
- Deployment Parameter Value: $(FMEShare)
- Deployment Parameter Local Value: \\computername\shared_folder\
- Reader Path: $(FMEShare)Subfolder\file.xlsx
I tried to create an attribute _pathExcel that is set to the path I tried to fill in in the FeatureReader. Locally that worked, but at FME Flow I got this error message:
Too many recursive macro substitutions -- line currently is: `$(FMEShare)'
How can I tailor this method to get it to work? Thanks!