How to display bot execution logs in UiPath Apps?

This is my demo UiPath app.

  1. After uploading file.
  2. file will be save in storage bucket.
  3. Bot will trigger and process pdf file

Expected output :
I want to display all the bot execution log messages in UiPath apps.

How to acheive this ? which ‘Add control’ to use to display log and what settings to do ?

You can create a process to get the log messages using api calls and then link process output to the apps

This is to start a process from app

Apps - Rule: Start Process.

And for api calls you can use swagger to gwt the required endpoints and header and body

<orchestratorurl>/swagger/index.html

@Muralikrishna_Surve

may I know why you want to show all logs when you have jobs pge already

the requirement looks more like replicate what jobs page show.. if you need it api is the way
alternately you can make an attended process and let it run on user machine so that he knows the progress and no app is also needed can be triggered from assistant and also files can be sent as input

cheers

1 Like

@Anil_G

I want to give bot process update to BU in UiPath Apps when user uploads pdf and submits. The bot execution started.

Expected output:
Process starting…
Downloaing PDF…
Extracting PDF…
Processing PDF…
Mail sent…
Process completed…

What is way to replicate message in app textbox using API ?

I

@Muralikrishna_Surve

if thats the requirement then easiest would be to have a data service and then update stattus there

link the data service to app to get the updates

also as said earlier attended process would make sense if they are constantly seeing for update..

cheers

1 Like