If I understand your question you would have to populate the field name / value assignments in the dynamic portion of your SQL statement before passing it to the dynamic SQL adapter service’s input. Using your example:
SELECT STEP_TXT
FROM STEP STP
WHERE STEP_NM = ${STEPNAME}
and assuming that STEPNAME would be populated with a sub-select such as
(select step_nm from foo where bar = ‘baz’)
then you would have to build the string above in your flow service before passing it as the input STEPNAME. You cannot (to my knowledge) pass:
(select step_nm from foo where bar = ?)
and an additional input value to provide the value ‘baz.’ I’d love to be wrong but I don’t think I am.
#Integration-Server-and-ESB#Adapters-and-E-Standards#webMethods