Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in RPA by (12.7k points)

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?

1 Answer

0 votes
by (29.5k points)

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>

Related questions

0 votes
1 answer
0 votes
1 answer
0 votes
1 answer

Browse Categories

...