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?

Best answer by JoshSimmons
Hello,
When you start the workflow while passing in the View3 Fields as Data Fields you are already performing the setting of the Wokrflow Data Fields so you don't need to perform this again in the Workflow.
Try removing the Set Data Fields step as I believe it would be setting the data fields back to blank.
Kind Regards,
Josh