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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

[resolved] How to append current date into filename in FileOutput component?

I want to use the system routine getDate("CCYYMMDD") to return the date string.
What is the syntax to get get this system routine call into the file name string in the tFileOutput component File Name field?
For instance:
"//File1/Output_File_???getDate("CCYYMMDD")???.xml"
What do I replace the ???s with?
Labels (3)
1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Hello holberger,
In the output file component you can write the file path as
"//File1/Output_File_" + TalendDate.getDate("CCYYMMDD") + ".xml"
Vikram TAkkar
http://vikramtakkar.blogspot.in

View solution in original post

2 Replies
Anonymous
Not applicable
Author

Hello holberger,
In the output file component you can write the file path as
"//File1/Output_File_" + TalendDate.getDate("CCYYMMDD") + ".xml"
Vikram TAkkar
http://vikramtakkar.blogspot.in
Anonymous
Not applicable
Author

That was easy. Thanks!