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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Writing the content from tMap/Sql Table/Csv file to text files.

HI , 
I am unable to figure out a way to write row by row output of a tMap into text Files. I want to have as many no of text files as the no of rows in tMap.
Also getting the text from tMap to java component is a blocker in my current Approach.
Current Scenario :
I have a some records , which via tMap flows to the subsequent db tables. one of my requirement is to parse the data from tMap and save it in as many text files.with some name . I have two fields Id , content. Id will the name of the file and content will go inside the text files.
Kindly suggest.

Labels (2)
2 Replies
_AnonymousUser
Specialist III
Specialist III

Hi I manage to implement similar scenario in below fashion:
source data ---> tHashOutput
--OnSubJobOk-->tHashInput_1-->tFlowToIterate (define key value which you want to iterate upon)-->tHashInput_2-->tFilterRow (filter upon key saved in iterator step)-->tFileOutputDelimited (append the same key defined in iterator in file path as well)
Anonymous
Not applicable
Author

Thanks Deepesh,
I was able to resolve it with the above mentioned steps.