Cognos 8+ - Use Query Results in an Html Object -
i'm pretty new cognos reports studio,
wondering if there's way take
results of query, , work them
inside of html object.
say have query returns 1 record following:
-genre
-artist
-album
-song
and want fill html object following:
'<%=song%> example of <%=genre%> <%=artist%>, album <%=album%>'
thanks in advance
i think you're trying use asp.net shorthand echo basis idea, , unfortunately, don't think can use in cognos. idea use data container/block, such list report, , create data item inside of it. there, concatenate static elements data items you're retrieving database, example:
[song] || ' example of ' || [genre] || ' ' || [artist] || ', album ' || [album]
hope helps.
Comments
Post a Comment