A question that always comes up from our Control Room operators is "Who's paused Queue xyz?" Why isn't this something which is written to the Audit Log? Would it be possible to add this to the Audit Log, or even allow us to configure what gets written to the Audit Log?
... View more
Status:
Delivered
Submitted on
03-03-22
09:42 AM
Submitted by
Bhanupraveen0511
on
03-03-22
09:42 AM
Hi Team, The recent version of decipher is better than the previous version. But i have seen some of the features can be added to the next release. that is if decipher can read the QR code and Barcode that would be very good idea can be implemented. and also mentioning about the Stamps cleaning on some files. that would be great implement can be added.
... View more
Getting resource status is bit difficult and we are looking for other third party applications to get the resource status like Solaria Application. It would be good and great to run process on available resource, if we have Utility in built under Blue Prism Application itself like Environment locking. So that, we can just call the utility object by passing Resource name and getting the status of the resource. Hoping others also looking for such functionality in Blue Prism Application. Regards, Mohammad Naveed Sr. RPA Developer
... View more
Currently when items are loaded to work queue, the Created and Last Updated column in queue content is being populated by datetime.
When any of the items have been marked as exception and retried, datetime in Created column remains unchanged and when the same item gets completed, the Last Updated column is updated and the difference between these two columns does not match the Total Work Time column.
Would like to have new datetime in the Created column when item is retried so that when it gets completed, the Last Update column will be updated and there will be no difference in both columns when it comes to match the Total Work time column. OR Can have an one column which will be populating the retried items date item.
... View more
Currently the "Get report Data" action allows for retrieving most of the items from the queue, however it proves problematic for providing reporting on items that have had more than one attempt. The Action has an input flag of "Treat each attempt separately", but changing it, only changes the way the output value for "item count" is set, and does not actually provide information from the queue for each attempt separately. The Item Ids output collection will contain only 1 row instead of as many rows as there were attempts. This is all due to the SQL statement being used by this action. In the FROM clause, when selecting the ouput fields for the @individuals table, it uses the DISTINCT statement. Example below: exec sp_executesql N' declare @individuals table ( ident bigint not null primary key, id uniqueidentifier not null, state tinyint not null, createdate datetime not null, lastupdateddate datetime not null, finishdate datetime null, worktime int not null default 0 ); insert into @individuals select i.ident, i.id, i.state, i.loaded, i.lastupdated, i.finished, isnull(i.attemptworktime,0) from BPVWorkQueueItem i join BPAWorkQueue q on i.queueid = q.id left join BPVSession s on i.sessionid = s.sessionid left join BPAResource r on r.resourceid = s.runningresourceid where q.name = @queuename and i.finished between @startdate_fin and @enddate_fin and i.state in (@state1); select count(*) as "itemcount", sum(i.worktime) as "total", min(i.worktime) as "minimum", max(i.worktime) as "maximum", avg(i.worktime) as "mean" from @individuals i; select ((i1.median + i2.median) / 2) as "avg-median" from ( select max(i1.worktime) as median from ( select top 50 percent i.worktime from @individuals i order by worktime asc ) i1 ) i1 cross join ( select min(i2.worktime) as median from ( select top 50 percent i.worktime from @individuals i order by worktime desc ) i2 ) i2; select distinct i.id from @individuals i;',N'@queuename nvarchar(25),@startdate_fin datetime,@enddate_fin datetime,@state1 int',@queuename=N'QueueName',@startdate_fin='2022-03-02 00:00:00',@enddate_fin='2022-03-02 23:00:00',@state1=5 Instead, when the "Treat each attempt separately" flag is set to true, this should provide all ids found, plus additional information such as attempt number, worktime, and last update time. This way, the report data will be much more meaningful, as it will provide insight into how long each separate attempt took, as well as provide the means to calculate when was each attempt started. Example modified query below: exec sp_executesql N' declare @individuals table ( ident bigint not null primary key, id uniqueidentifier not null, state tinyint not null, createdate datetime not null, lastupdateddate datetime not null, finishdate datetime null, worktime int not null default 0); insert into @individuals select i.ident, i.id, i.state, i.loaded, i.lastupdated, i.finished, isnull(i.attemptworktime,0) from BPVWorkQueueItem i join BPAWorkQueue q on i.queueid = q.id left join BPVSession s on i.sessionid = s.sessionid left join BPAResource r on r.resourceid = s.runningresourceid where q.name = @queuename and i.finished between @startdate_fin and @enddate_fin and i.state in (@state1); select count(*) as "itemcount", sum(i.worktime) as "total", min(i.worktime) as "minimum", max(i.worktime) as "maximum", avg(i.worktime) as "mean" from @individuals i; select ((i1.median + i2.median) / 2) as "avg-median" from ( select max(i1.worktime) as median from ( select top 50 percent i.worktime from @individuals i order by worktime asc ) i1 ) i1 cross join ( select min(i2.worktime) as median from ( select top 50 percent i.worktime from @individuals i order by worktime desc ) i2 ) i2; select i.id, i.ident, i.worktime, i.lastupdateddate from @individuals i;',N'@queuename nvarchar(25),@startdate_fin datetime,@enddate_fin datetime,@state1 int',@queuename=N'QueueName',@startdate_fin='2022-03-02 00:00:00',@enddate_fin='2022-03-02 23:00:00',@state1=5
... View more
Hi Team, I have observed that we are getting repairable Yes error in process validation in 6.10.4 version & need to click repair all to get it fix. My suggestion is the make it auto repairable if its get refresh or reset (process or object) Thanks Nilesh
... View more
Wireframer as a define and design phase tool provides significant value to delivery teams, but a short fall of the tool is a lack of connectedness and integration to Blue Prism studio design, specifically into existing Blue Prism process and object templates. To TRULY see the marketed value of a tool that enables automation delivery teams to "rapidly deploy" a process being automated, there needs to be an integration component that quickly enables developers to with minimal manipulation import a wireframe into Blue Prism, and have it be ingested by a Blue Prism or a client organization's structured best practices template. This would provide real value for existing organizations in the Blue Prism ALM tool ecosystem, and highlight the continuity of Blue Prism's strategy, and governance of the end-to-end platform.
... View more
We love the idea of resource pools, however we have schedules in place which consist of multiple tasks. We would like to use these schedules with a resoure pool so that the first available resource will start working on the schedule, but with the option to force the schedule to allocate all its following tasks to the same resource that started working on its first task. This way we would be able to make sure that all tasks of a schedule are handled by only one resource.
... View more
Sometime we need a list of environment variables to document (In technical solution Document) but We don't have an option to export the list and everyone don't have access to database. Can we have option to export the variable list directly into excel/CSV
... View more
Currently, user has to select in Import menu whether they want to load release or object/process. Blue prism should internally decide once the user selects the file. Depending on XML, BPRELEASE, BPPROCESS, BPOBJECT extension tool should automatically Import accordingly. This adds ease of use for customers.
... View more
Status:
Under Consideration
Submitted on
16-02-22
04:25 PM
Submitted by
NileshJadhavBP
on
16-02-22
04:25 PM
Can we add some functionality which will notify the developer or controller team when resource pc is getting shutdown or hanged or crash. It will increase our bot utilization time and experience of user. Please let me know if you need more details from my end. Thanks Nilesh
... View more
Status:
Under Consideration
Submitted on
16-02-22
02:25 PM
Submitted by
Tejaskumar_Darji
on
16-02-22
02:25 PM
Add Projects section in Decipher IDP where user can have a dedicated project and all its related settings in Decipher IDP. Projects can act as parents of DFD, BatchType, DocType section.
... View more
Status:
Not Planned
Submitted on
16-02-22
02:23 PM
Submitted by
Tejaskumar_Darji
on
16-02-22
02:23 PM
Dark mode in Decipher IDP is most welcomed.
... View more
Status:
Delivered
Submitted on
16-02-22
07:53 AM
Submitted by
Stefan__Pappalardo
on
16-02-22
07:53 AM
In Blue Prism Decipher IDP v1.2 RabittMQ password is shown in plain text on installing or changing Decipher Licensing Service Setup. This behavior adds no value to the product but adds the risk to show secret passwords to randomly spying people or when forgetting to post process screenshots for documentations. Please hide password in RabbitMQ password field.
... View more
Status:
Under Consideration
Submitted on
16-02-22
07:33 AM
Submitted by
Stefan__Pappalardo
on
16-02-22
07:33 AM
In Blue Prism Decipher IDP v1.2 you need to turn on every process module in the workflow configuration to be able to modify all related role settings. If a process module is turned off the related role is not available for setting. Already set roles are visible, but can not be changed. This behavior is unexpected and adds no value to the product. But it makes usual sysadmins work more complicated and adds additional effort to your customers, like investigating this confusing behavior and switching on/off process modules in workflow configuration to be able to adjust roles in user and user group settings. And on top of all, two process modules (Classification, Class verify) are turned off by default for no obvious reason. Please decouple user and user group settings from the process module settings in the workflow configuration. Every available role need to be editable in the user and user group settings independently from the activation state of process modules.
... View more
Status:
Under Consideration
Submitted on
10-02-22
03:49 PM
Submitted by
asilarow
on
10-02-22
03:49 PM
Currently when viewing object and/or process version history the table only allows viewing the selected item or comparing two selected items: This is useful, however one function missing here is exporting the view as a report - very much in the same way as can be done with work queue items: It would be very helpful if the same function would be available for both Object and Process history. This would help reduce the time spent on documenting changes done, as well as improve the quality of comments provided when changes are saved (as then it would actually have a meaning for people).
... View more
When housekeeping some of our older objects, it's easy to get rid of the code, but very difficult to tidy up the Application Modeller. The Error report will give you a warning for each Element which isn't used, but this can be very time consuming on larger objects to find the element to delete. If there was a way any unused/unreferenced elements could be highlighted within the Application modeller (different colour text or an icon maybe), this would make housekeeping much easier.
... View more
Hi Team, Blueprism provides a very good write stage which works most of the case and the best thing it works in backend. But there are lot of modern application where write stage is not working properly. Even though we write it is not writing in the text box. As alternative we are using globalsendkeys. It would be great if Blueprism provides a type into stage by using the same we can directly write into any text box instead of using globalsendkeys.
... View more
Dear All, when working with different environment (develop, testing, production) and their associated databases we would find it very useful to have an Object which allows us to read out all environment variables and their corresponding values. This would have 2 benefits: * easier to verify the deployment has the correct values by running a check process * easier to document the solution design. Kind Regards Martin Reuter
... View more
Status:
Under Consideration
Submitted on
02-02-22
12:20 PM
Submitted by
PabloSarabia
on
02-02-22
12:20 PM
Hi! Why not integrate the Digital Exchange market directly with Blue Prism platform? Now exists the button, but this only redirect to your browser. The idea is to have it included in BP. This way you can search and import the asset directly. Can also manage your downloaded assets and look for update or probably manage the version of the asset. Bye 🙂
... View more