Monday, June 29, 2015

Getting value from input box in Talend

This post give you an idea how we can get input from user in run time.












 We use tMsgBox for this. In the above example I use tJava for validation as you can see I connected tMySqlInput (core_mysql) with IF condition.

in IF I wrote the condition-

!Relational.ISNULL((String)globalMap.get("tMsgBox_1_RESULT"))

It means if no values provided in msgbox no flow will be execute.

And in mysql input I used the code-

SELECT * FROM `temp_cust` where `E_ICO1_CD`='"+((String)globalMap.get("tMsgBox_1_RESULT"))+"'"

No comments:

Post a Comment