I would love to see this for Processes and Objects and the Help Page generated for Objects would be a good starting place if it was allowed for Processes as well.Basically, pulling out all the information noted above in an easy to read/use format.
OK, slightly crossed wires and a better explaination:
We us SQL to extract the data out of Excel and so use something like
Select [Column1] & "" AS [User],[Column2] & "" AS [email]From [Sheet1$]
That is using the GET in the OLEDB Object.
------------...
We always add & "" to every column to ensure everything arrives in BP as a STRING.------------------------------Clive BarnardIntelligent Automation Solution ArchitectTJX EuropeEurope/London------------------------------
Basic answer is that you can do either. Main use of the Sub-Process is to keep the Main Process more manageable (not a massive amount of tabs) of if the Sub-Process could be a reusable component and/or called separately to the main process.
Working w...