如何在 Cognos 8.2 中创建提示页面驱动变量视图
我正在使用 Cognos 8.2 创建带有提示页面的报告。我正在尝试创建一个提示页面,允许用户选择他们想要查看的项目类型,然后分配工作人员。
示例:显示正在处理“A”类型项目的工作人员,这将触发显示当前正在处理“A”类型项目的工作人员列表,然后用户可以从列表中选择一个或多个工作人员会显示在报告中。
我正在尝试在 html 项目中使用 javascript,但我以前从未使用过 javascript,而且运气不佳。我不知道是否可以将变量传递给提示页面上的另一个项目。任何想法或例子将不胜感激。
I am using Cognos 8.2 to create a report with a prompt page. I am trying to create a prompt page that allows the user to choose what type of item they want to see, and then the workers assigned.
Example: Show me the workers working on projects of type 'A' and that would trigger a list of workers to be displayed who are currently working on projects of type 'A' and then the user could choose a worker/workers from the list to be displayed in the report.
I am trying to use javascript in the html item, but I have never worked with javascript before, and I am having little luck. I dont know if it is even possible or not to pass a variable to another item on the prompt page. Any ideas or examples would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将您的工作人员姓名放入数据项中(例如 [People]) - 然后,使用 case 语句创建另一个数据项:
将此数据项命名为“Group”
然后对查询创建过滤器:
[Group] = ?Group提示?
然后你应该能够输入“Group A”并仅获取来自 A 组的内容。
Bring your worker names into a data item (eg [People]) - then, create another data item with a case statement:
Name this data item "Group"
Then create a filter on the query:
[Group] = ?Group Prompt?
Then you should be able to input 'Group A' and get only those from Group A.