Cognos 8+ - 在 Html 对象中使用查询结果
我对 cognos Reports Studio 还很陌生,
但想知道是否有办法采取
查询结果,并使用它们
HTML 对象内部。
假设我有一个查询返回 1 条记录,其中包含以下内容:
-流派
-艺术家
-相册
-Song
和我想用以下内容填充 html 对象:
'<%=song%>;是一个很好的例子 <%=genre%>由<%=artist%>创作,来自他们的专辑<%=album%>'
提前致谢
I'm pretty new to cognos Reports Studio,
but was wondering if there's a way to take
the results of a query, and work with them
inside of an HTML object.
Say I have a query that returns 1 record with the following:
-Genre
-Artist
-Album
-Song
and I want to fill an html object with the following:
'<%=song%> is a good example of <%=genre%> by <%=artist%>, from their album <%=album%>'
thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您正在尝试使用 ASP.net 简写 echo 作为您想法的基础,不幸的是,我认为您不能在 Cognos 中使用类似的东西。这个想法是使用数据容器/块(例如列表报告),并在其中创建数据项。在那里,您可以将静态元素与从数据库检索的数据项连接在一起,例如:
希望有帮助。
I think you're trying to use ASP.net shorthand echo as the basis for your idea, and unfortunately, I don't think you can use anything like that in Cognos. The idea would be to use a data container/block, such as a list report, and create a data item inside of it. There, you could concatenate the static elements together with the data items you're retrieving from the database, for example:
Hope that helps.