Issue
- although you can display the workflow input variables on the [wf_context] record
- how can you do this in table list view?
Resolution
- this can be accomplished using a database view
- the input variables are stored in table [sys_variable_value]
- go to "database view" module
- you'll need to create two "view table" records
- table: [sys_variable_value]; variable prefix: var; where clause: var.document_key = wfc.sys_id
- table: [wf_context]; variable prefix: wfc; where clause: wfc.workflow = <sys_id_of_workflow>
- then try the new database view
The world works with ServiceNow.