Global variable
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
03-12-19 06:24 AM
I try to create a global variable that I will use as Request ID increasing the value + 1 when new request arrives.
This last ID number should be read from database and stored.
Environmental variable cannot be updated from the process / object Studio.
How can I manage it in the easiest way?
Thanks and regards,
Radoslaw
------------------------------
Radoslaw Rajnert
Financial Systems Expert
Telefonica OHG
Europe/London
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
03-12-19 06:49 AM
------------------------------
Jeroen Oosterholt
Automation Designer
DHL
Maastricht
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
03-12-19 07:05 AM
if you are looking at multiple bots processing the incoming requests its difficult to achieve.
1 possible scenario I could think of is to keep a master process to add items to the queue and increment the last DB value by the number of items added to queue and later trigger the main process to rest of the bots (either using AutomateC from the master process or a subsequent schedule) which actually work on this requests.
let me know if this works for you.
------------------------------
Jerin Jose
RPA Product SME
EY
Asia/Kolkata
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
03-12-19 07:08 AM
------------------------------
Jerin Jose
RPA Product SME
EY
Asia/Kolkata
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
03-12-19 08:41 AM
------------------------------
Cohen
RPA Developer
Romania
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
03-12-19 12:31 PM
I just wonder how you are getting the value of the request in the process from the beginning?
The easy way would be: create global variable which will hold some number (maybe initial value would be 0, depends on your situation), and inside of your process check if you have current global variable value +1 is existing in the database, if yes continue working with this request id.
It's little bit unclear why do you need it for. So it's hard to propose some solution for you.
------------------------------
Kind regards,
Dmitrij Mamajev
RPA Developer
Volvo Cars
Gothenburg - Sweden
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
04-12-19 07:07 AM
Not sure if this is the best approach for what we are trying to achieve here but, maybe setting the Exposure of Vairable to Statistic could help?
It stores the value in Blue Prism DB, and can be used in process, to update its value.
Also, next time we run the process, it will fetch the last stored value in DB.
------------------------------
Deep Shah
Robotics Developer
FirstRand
Asia/Kolkata
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
06-12-19 05:50 PM
The second easiest way is to use a work queue item, which would be similar to Environment Locks except is less susceptible to data loss.
The next way would be to use a separate database (which could actually just be a file stored in a shared location) that the automations can query to determine what the next ID should be.
The best and most legit way would be a web service set up to return a value that should be used. But that sounds way over-engineered for such a simple task.
------------------------------
Dave Morris
3Ci @ Southern Company
Atlanta, GA
------------------------------
Dave Morris, 3Ci at Southern Company
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
10-12-19 03:54 AM
------------------------------
Vivek Goel
RPA Architect
Asia/Singapore
+6594554364
https://www.rpatools.com/
"If you like this post, please press the "Recommend" Button.
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
10-12-19 06:24 AM
Many thanks for your advice! I will try to implement some of your ideas!
Regards,
Radoslaw
------------------------------
Radoslaw Rajnert
Financial Systems Expert
Telefonica OHG
Europe/London
------------------------------
