I have a SAP BW Open Hub Linked service created in Azure Data Factory. I have defined my SNC details in Global parameters and want to use these parameters under Advanced section where i can define a dynamic JSON. When i tried to invoke the global parameter by calling it with "@{globalParameters().<parameterName>}" , I am getting the following error
The parameters and expression cannot be resolved for schema operations. Error Message: { "Message": "ErrorCode=InvalidTemplate, ErrorMessage=The template function 'globalParameters' is not defined or not valid.
Below is the JSON that i have defined in Linked Service
{
"properties": {
"typeProperties": {
"sncMyName": "@{globalParameters().<<ParameterName>>}"
}
}
}
Can we use Global Parameters inside a Linked service.


