Cognos 8+ - 在 Html 对象中使用查询结果

发布于 2024-10-18 04:52:04 字数 291 浏览 1 评论 0原文

我对 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心在旅行 2024-10-25 04:52:04

我认为您正在尝试使用 ASP.net 简写 echo 作为您想法的基础,不幸的是,我认为您不能在 Cognos 中使用类似的东西。这个想法是使用数据容器/块(例如列表报告),并在其中创建数据项。在那里,您可以将静态元素与从数据库检索的数据项连接在一起,例如:

[Song] || ' is a good example of ' || [Genre] || ' by ' || [Artist] || ', from their album ' || [Album]

希望有帮助。

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:

[Song] || ' is a good example of ' || [Genre] || ' by ' || [Artist] || ', from their album ' || [Album]

Hope that helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文