Back
I am trying to design a business process that will take the variable value from the first bot task and use it again in the subsequent bot tasks. Can anyone please tell me how to do that in RPA Express?
What you want to do can be done in the following way :
Set the data you need in the first task-> reference the data by using the same variable name.
First task:
<?xml version="1.0" encoding="UTF-8"?><config charset="UTF-8"> <export include-original-data="true"> <single-column name="company" value="Amazon" /> </export></config>
Second task:
<?xml version="1.0" encoding="UTF-8"?> <config xmlns="http://web-harvest.sourceforge.net/schema/1.0/config" scriptlang="groovy"> <script><![CDATA[ log.info(company.toString()) ]]></script> <export include-original-data="false"> </export> </config>
31k questions
32.8k answers
501 comments
693 users