Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/tfs/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Reporting services 报表服务器错误:无法创建或编辑缓存刷新计划,因为关联项具有用户配置文件依赖项_Reporting Services_Ssrs 2008_Ssrs 2008 R2 - Fatal编程技术网

Reporting services 报表服务器错误:无法创建或编辑缓存刷新计划,因为关联项具有用户配置文件依赖项

Reporting services 报表服务器错误:无法创建或编辑缓存刷新计划,因为关联项具有用户配置文件依赖项,reporting-services,ssrs-2008,ssrs-2008-r2,Reporting Services,Ssrs 2008,Ssrs 2008 R2,我在Reporting server上发布了我的第一份报告,并尝试设置缓存计划,但出现了错误 无法创建或编辑缓存刷新计划,因为关联的 项具有用户配置文件依赖项 有什么建议吗?经过数小时的搜索,我发现问题在于报告内容中有一个引用a用户配置文件属性(如消息所述)user!数据集中的语言。对于resolve,我添加了一个自定义代码,用于返回值runtime并用表达式替换属性 “=Code.GetLanguage()” 当然,任何用户配置文件属性(user!XXX)都会出现问题 Funtion GetL

我在Reporting server上发布了我的第一份报告,并尝试设置缓存计划,但出现了错误

无法创建或编辑缓存刷新计划,因为关联的 项具有用户配置文件依赖项


有什么建议吗?

经过数小时的搜索,我发现问题在于报告内容中有一个引用a用户配置文件属性(如消息所述)user!数据集中的语言。对于resolve,我添加了一个自定义代码,用于返回值runtime并用表达式替换属性

“=Code.GetLanguage()”

当然,任何用户配置文件属性(user!XXX)都会出现问题

Funtion GetLanguage() as String
  return  System.Threading.Thread.CurrentThread.CurrentCulture.Name
End Function