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

Execute Groovy validators in Job flow

Hi,
The Excel files that I upload are like snowflakes, no two are alike! To speed up development time, I'd like to access our Groovy/Grails domain class validators prior to the upload of each row.
I've tried many suggestions both on this forum and outside. The most promising is to bind to the globalMap using tGroovyFile and then call it from a tJava component, but tGroovyFile throws a groovy.lang.MissingPropertyException: No such property: globalMap for class: Script1.
The example code in the Groovy file is:
globalMap.put("GroovyObject", new MyGroovyObject())
class MyGroovyObject {
def myMethod(row) {
// Do anything you want with the row
// update the row directly like
row.counter++
row.email = row.email + "_TEST"
}}
It errors out before even getting to the tMap. Is there something I'm missing? (I'm a Groovy noob.) Is there example code somewhere?
Thanks,
Eileen
Labels (4)
3 Replies
Anonymous
Not applicable
Author

Hi,
This blog post has a video that shows how to use groovy with Talend:
http://bekwam.blogspot.com/2011/02/tutorial-using-groovy-with-talend-open.html
Here's another post that describes how to get data out of groovy (say a validator result and error messages object).

http://bekwam.blogspot.com/2011/04/passing-variable-out-of-tgroovy-with.html
Anonymous
Not applicable
Author

Thanks for the blog posts Carl!
Best,
Pcoffre.
Anonymous
Not applicable
Author

Hi walkerca,
I have seen the first link, and the issue I have is that tGroovy and tGroovyFile only run once at the beginning of the job, and the code needs to run for every row. The second link looks promising and is one I haven't seen before. I'll work with it to see if it solves my problem.
Thank you for your response!
Eileen