In a Business Process using the %PrimaryRequestHeader I can call GetAdapterSettingValue and get the setting from a Business Service. But once I am in the Business Operation there is no class for %PrimaryRequestHeader. Is there another way to get setting in the Business Operation that was define in the Business Service ?
Set tSrcCfg = ..%PrimaryRequestHeader.SourceConfigName
If tSrcCfg '= ""
{
Set tCfgVal = ##class(Ens.Director).GetAdapterSettingValue(tSrcCfg, "OutboundFilePath", .tSC)
$$$LOGINFO(tSrcCfg _ ", Outbound FilePath: " _ tCfgVal)
s tPath = tCfgVal
}