Hello!
I've created a webservice that reads a value from a database using this SQL statement:
SELECT ID from sequencias WHERE ( ref = {$ /process_data/@refFormulario$});
This just returns a number (in a string output variable) to the form.
Now I need to concatenate a slash and the current year. So if the the number is, say, 345, I need to add "/2011".
Question: should I add another Task or is there a way of using a string function (like Concat) to do this?
And... how do I do it? I've tried to use concat when building the Data mapping, but it did not work.
Thank you for any hints!
Marcos