How to display workflow input variables & link them to the workflow context in table list view?Issue although you can display the workflow input variables on the [wf_context] recordhow can you do this in table list view?Resolutionthis can be accomplished using a database viewthe input variables are stored in table [sys_variable_value] go to "database view" moduleyou'll need to create two "view table" recordstable: [sys_variable_value]; variable prefix: var; where clause: var.document_key = wfc.sys_idtable: [wf_context]; variable prefix: wfc; where clause: wfc.workflow = <sys_id_of_workflow>then try the new database view