I have a SmartForm with 3 views. Let's call these views - View1, View2, View3. Below is what they do:
View1 - This is a listview which is bound to SQL View. This SQL View shows the list of SSIS packages
View2 - This is a listview which is bound to SQL Table. This SQL Table holds Errors returned by SSIS packages
View3- Fields which passes input parameter to SQL Stored Procedure
Button - Start a workflow
When a user selects a record from View1, the View2 will display Errors that have occured corresponding to the SSIS packages that are displayed in View1
The fields in View3 is populated when you select record in View1 as well.
Now I want to pass the values that are populated in the fields (View3) to the workflow on Button click.
Is this possible? If so how?