Showing ideas with status New.
Show all ideas
Enable the creation of metrics to count the number of times a specific pattern (e.g., X → Y → Z) occurs across all timelines, rather than limiting the count to the number of timelines where the pattern exists. Without this feature: Users cannot accurately quantify the frequency of specific patterns within timelines, leading to incomplete analysis and missed insights into recurring behaviour. Goal: provide detailed insights into pattern frequency across timelines, improving the depth and accuracy of process analysis in the Predecessor Analysis module.
... View more
Extend the TO DO List operations to allow replacing multiple substrings with the same new value. Users can input multiple strings to be replaced (e.g., separated by commas) or use an updated UI that supports selecting multiple options for streamlined bulk replacements. Without this feature: users must perform repetitive replacements one substring at a time, leading to inefficiencies, increased manual effort, and a higher risk of errors when managing large datasets. Goal: simplify and accelerate substring replacement tasks by supporting multiple options in a single operation, improving efficiency and user experience for bulk data management.
... View more
Add the ability to use logical operators (AND, OR, NOT) in derive field conditions, allowing users to define more complex and precise criteria for deriving new fields in the dataset. Without This Feature: Users are limited to basic conditions, requiring workarounds or multiple iterations to achieve desired results, leading to inefficiencies and reduced flexibility in field derivation Goal: enable more advanced and flexible field derivations by incorporating logical operators, enhancing analytical capabilities and reducing manual effort.
... View more
Introduce a percentage format option for derived metrics when shown in Side by Side module, allowing users to display results as percentages (e.g., 92%) instead of decimals (e.g., 0.92) in the modules. Currently, when derived metrics or KPIs used in Side by Side, we cant use number formatting to achieve percentage values Goal: this would be improving data presentation and user experience.
... View more
Include a breakdown table in the Predecessor Analysis module to provide detailed tabular insights, such as the frequency of each predecessor pattern, associated attributes, and their distribution across timelines. Currently Breakdown feature used in Predecessor module do not have table which gives values in tabular format allowing users to copy these values easily(which is possible in Breakdown module) Goal: this will help for enhancing analysis depth, enabling better comparisons, easy copy data from tabular format.
... View more
Allow users to open and apply saved queries from the Query Module directly within the Predecessor and Classifications modules, enabling easier access to previously defined queries for streamlined analysis. Users must manually recreate queries for different modules, leading to inefficiencies, redundancy, and potential errors in replicating complex query conditions across modules. Goal: improve workflow efficiency and consistency by enabling users to quickly access and use saved queries across different modules, reducing repetitive tasks and enhancing analysis speed.
... View more
Allow users to apply and select categories across different modules when choosing events, enabling a consistent categorization experience throughout the platform. Users face limitations when working with multiple modules, requiring separate categorization efforts for each, leading to inconsistency, inefficiency, and potential data fragmentation. Goal: enhance flexibility and consistency by enabling the use of categories across modules, simplifying event selection, and improving overall workflow efficiency.
... View more
Enable users to select events and attributes across all modules where they are used, similar to how dimensions are filtered, allowing for consistent and efficient selection of data throughout the platform. Currently accessing attributes and events options are different from module to module. Without this feature, Users must manually search for and select events/attributes in each module, leading to inefficiencies, potential errors, and a fragmented experience when working across multiple modules. Goal: streamline data selection by providing a unified, efficient way to select events and attributes across modules, improving workflow consistency and reducing manual effort.
... View more
An ip Rest AP Testing tool, similar to Postman, to test connectivity, payload, to both internal and external api calls. This saves time/effort to 'test' during a run through a process model. The testing tool could use the integrations deployed within Chorus.
... View more
We would like to be able to report if a work item is assigned (Yes/No) within the active detail report or add as an option in searches. This data element isn't tied to productivity but is only on the dimensions that are at a protected at user level.
... View more
We have commissioned a client-facing portal which is being built using the UX Builder and it has been noted that there is no option for a user to log out of the system. We would like to have the option to add a "Logout" button or link to every page in the system so that users can terminate their session as required.
... View more
We have commissioned a client-facing portal which is being built using the UX Builder and we require more complex client-side validation than is currently possible. For example, if the user were to enter a policy inception date (PID), a policy expiry date (PED), a claim event date (CED) and an insured date of birth (IDB) then we would want to validate that the IDB was prior to the PID, that the PID was prior to the CED, that the CED was prior to the PED. We would also want to check that the IDB did not make the insured person impossibly old or too young to have a policy. These dates are just one example of client-side validation that exceeds simple data typing - we would like to see configurable complex validation rules in the UXB, some of which will depend on mixed data types (e.g. if _this_ dropdown have value "A" then _this_ amount must not be zero).
... View more
We have commissioned a client-facing portal to give our clients the ability to log cases in our Chorus system and a requirement has been raised by a client who has seen the suggested solution demonstrated: they require that when they have created or updated a case in the portal they can then generate a summary of all the details they have entered and the documents they have uploaded. They would like the summary to be in the form of a PDF that they could then download and store in their own system. Ideally the summary would be generated on user request.
... View more
On the communication between Blue Prism enterprise and Active Directory, must be a good idea to implement what we call "A DC Locator". This feature enforce the Blue Prism Enterprise product to always first try to contact Active Directory controller domains that are in network level close to the application server. Reduce the latency. Improve the Active Directory performances Avoid issues. Below is a code example that can be implemented : $cp = [System.CodeDom.Compiler.CompilerParameters]::new()
Add-Type -Name 'NetApi32' -Namespace 'NativeMethods' -CompilerParameters $cp -MemberDefinition @'
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public struct DOMAIN_CONTROLLER_INFO
{
[MarshalAs(UnmanagedType.LPTStr)]
public string DomainControllerName;
[MarshalAs(UnmanagedType.LPTStr)]
public string DomainControllerAddress;
public uint DomainControllerAddressType;
public Guid DomainGuid;
[MarshalAs(UnmanagedType.LPTStr)]
public string DomainName;
[MarshalAs(UnmanagedType.LPTStr)]
public string DnsForestName;
public uint Flags;
[MarshalAs(UnmanagedType.LPTStr)]
public string DcSiteName;
[MarshalAs(UnmanagedType.LPTStr)]
public string ClientSiteName;
}
[DllImport("Netapi32.dll", CharSet=CharSet.Auto, SetLastError=true)]
static extern int DsGetDcName
(
[MarshalAs(UnmanagedType.LPTStr)]
string ComputerName,
[MarshalAs(UnmanagedType.LPTStr)]
string DomainName,
[In] int DomainGuid,
[MarshalAs(UnmanagedType.LPTStr)]
string SiteName,
[MarshalAs(UnmanagedType.U4)]
DSGETDCNAME_FLAGS flags,
out IntPtr pDOMAIN_CONTROLLER_INFO
);
[DllImport("Netapi32.dll", SetLastError=true)]
static extern int NetApiBufferFree(IntPtr Buffer);
[Flags]
public enum DSGETDCNAME_FLAGS : uint
{
DS_FORCE_REDISCOVERY = 0x00000001,
DS_DIRECTORY_SERVICE_REQUIRED = 0x00000010,
DS_DIRECTORY_SERVICE_PREFERRED = 0x00000020,
DS_GC_SERVER_REQUIRED = 0x00000040,
DS_PDC_REQUIRED = 0x00000080,
DS_BACKGROUND_ONLY = 0x00000100,
DS_IP_REQUIRED = 0x00000200,
DS_KDC_REQUIRED = 0x00000400,
DS_TIMESERV_REQUIRED = 0x00000800,
DS_WRITABLE_REQUIRED = 0x00001000,
DS_GOOD_TIMESERV_PREFERRED = 0x00002000,
DS_AVOID_SELF = 0x00004000,
DS_ONLY_LDAP_NEEDED = 0x00008000,
DS_IS_FLAT_NAME = 0x00010000,
DS_IS_DNS_NAME = 0x00020000,
DS_RETURN_DNS_NAME = 0x40000000,
DS_RETURN_FLAT_NAME = 0x80000000
}
static public DOMAIN_CONTROLLER_INFO GetDomainInfo()
{
const int ERROR_SUCCESS = 0;
IntPtr pDCI = IntPtr.Zero;
int val = DsGetDcName("","",0,"",
DSGETDCNAME_FLAGS.DS_DIRECTORY_SERVICE_REQUIRED|
DSGETDCNAME_FLAGS.DS_RETURN_DNS_NAME|
DSGETDCNAME_FLAGS.DS_IP_REQUIRED, out pDCI);
DOMAIN_CONTROLLER_INFO infos = (DOMAIN_CONTROLLER_INFO)Marshal.PtrToStructure(pDCI, typeof(DOMAIN_CONTROLLER_INFO));
NetApiBufferFree(pDCI);
return infos;
}
'@
[NativeMethods.NetApi32]::GetDomainInfo()
... View more
In blue prism, while in control room, it would be great to be able to filter available processes when trying to manually drag and drop one onto an available resource. You can currently filter by resource, but not process, so you are always left scrolling to find what you need.
... View more
The action of hovering over the comments bubble results in a "Preview - User Comments" screen, which only displays a limited number of the most recent comments. The request is that this screen be changed. Rather than a "Preview" -- which only displays some --not all-- of the comments, the request is to just show all the comments & a scroll bar, if it is necessary to scroll up & down through all of the comments. We are on Chorus v21.2.4.7. If this improvement has been applied to more recent versions of Chorus, please let me know.
... View more
Some of our users like to work the cases/searches in the Pop-Out mode. Others do not. A suggestion has been made by users to build out the 'Preferences" menu to include an option to enable/disable pop-out mode so every card opened by the user is opened in the style the user prefers. We are currently on Chorus v21.2.4.7 -- so, if this functionality has already been applied to more recent versions, then just let me know.
... View more
Hello, It will be outstanding if there was a way to 'export' any BP automation (process and related objects) from studio in a way that a non-technical business analyst could understand. For example, if we have a new hire business analyst who needs to understand how the solution works and compare the steps in the code to that in PDD document, can he/she export the solution into auto generated SDD or any other form. Thanks! Alisher
... View more
We are on Chorus 21.2.4.7 One of our users reported a concern; she indicated that when she created new work or opened a new window, occasionally the new work would create behind the other open case cards that she had open. In other words, the card she was actively working would create behind cards not actively being worked. The extra shuffling of cards this causes isn’t ideal from a user experience, of course. I am going to recommend the user "minimize" unused cards. However, I would like to ask this forum: Shouldn't the action of creating new work should result in the New case card opening on top of all other case cards. Is this something that can be improved upon OR has it already in (v22, v23)?
... View more
Hello, We would like a "Post Completion Delay" feature for the Automation Flow. In the Blue Prism Enterprise it is a key function for us for Schedules. Best regards, Patryk
... View more