Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

POST/GET key/values from tMap via http request?

Is there a way to POST/GET key/values coming out of a tMap via http request? tHttpRequest seems not suitable for that... 😞
THX

Labels (2)
2 Replies
Anonymous
Not applicable
Author

You can use a tFlowToIterate component. This will store the values of each row in the globalMap hashmap under the name "{rowname}.{columnname}". So for a tMap that is joined to a tFlowToIterate via a row called "row1", a String column called "mycol" can be accessed using the following Java....

((String)globalMap.get("row1.mycol"))


You can then use these for the lifetime of the iteration. 1 row = 1 iteration.
Anonymous
Not applicable
Author

Thanx, that works, though it's not the most elegant version with that global variable concept.