How can I get the Tenant name in process (as a variable)?

Hi there,
so I was wondering how to tackle quite common scenario where we have a process running nice in Test environment and when moving to production we realize some fields have different names, or we need to skip some steps etc. If to adjust the code to production then it won’t be working on testing environment.

So I thought about creating an If condition based on the environment. In my case environments are layered by respective Tenants in Orchestrator. So conveniently the best way would be to retrieve somehow the tenant name within the process and check it.

Is there a way how to do it? Thank you!
Roman

update: I actually find a neat solution, to have Asset in both environments with same name, that will store the environment name. Like asset “environment”. In testing it would have value “testing” and likewise in production. But - anyways - is there a way to retrieve Tenant?

1 Like

Hello @Roman_hruska!

It seems that you have trouble getting an answer to your question in the first 24 hours.
Let us give you a few hints and helpful links.

First, make sure you browsed through our Forum FAQ Beginner’s Guide. It will teach you what should be included in your topic.

You can check out some of our resources directly, see below:

  1. Always search first. It is the best way to quickly find your answer. Check out the image icon for that.
    Clicking the options button will let you set more specific topic search filters, i.e. only the ones with a solution.

  2. Topic that contains most common solutions with example project files can be found here.

  3. Read our official documentation where you can find a lot of information and instructions about each of our products:

  4. Watch the videos on our official YouTube channel for more visual tutorials.

  5. Meet us and our users on our Community Slack and ask your question there.

Hopefully this will let you easily find the solution/information you need. Once you have it, we would be happy if you could share your findings here and mark it as a solution. This will help other users find it in the future.

Thank you for helping us build our UiPath Community!

Cheers from your friendly
Forum_Staff

@Roman_hruska Did you manage to discover how to do it? I’m facing the same scenario

Hello Folks
My approach for this cenario is prefer using input arguments in main workflow always possible. So we can set up trigger with information that process needs to runs well.

Taking process A for example:
Trigger 1: It runs on monday and generates weekly reports (input weekly)
Trigger 2: It runs at last day of month and generates monthly reports (input monthly)

So you can get these at run time and decide what robots should do for that execution.

The reason for that is sometimes the process changes (in your cases the environment might be equalized in future). So we need working on the project to fix it. Using asset or argument we don’t need worry about it. We just change the type of execution.

For tests purpose, we can identify which tenant the robot is running making a GET call using Orchestrator HTTP Request Activity and passing it “/odata/Robots” (Any End Point that response with no sensitive data)as relative EndPoint. So, JsonResponse output variable gives me a key called Context that has current Tenant URL. Using it, we can do something more.

1 Like