We would like the Workspace Timeout to redirect Users automatically to logon window once they are timed out (with no windows received). This will prevent multiple screens received when users are timed out of Workspaces. Currently when timed out of workstation, User will receive multiple windows asking to leave or cancel. #Workspace #Timeout #Windows Chorus BPM #Processor
... View more
We are preparing our BP upgrade and for this period of time we want to stop all schedules. There is no 'disable' (ie temporarily prevent schedules from running) schedule feature but un-/retire only. Retired schedules are a mixture of outdated schedules that might not yet be possible to delete or are kept for other reasons. There is also now was to structure schedules in groups/folders so it may also be the case that some infrequently used schedules are retired just better manage regularly executed schedules. So the idea was to create scripts based on currently active schedules to bulk un-/retire them and also making sure the exact same schedules that have been active are unretired again, without having to keep manual separate lists and have to visually check against those lists Unfortunately there is only /startschedule and /deleteschedule parameter for automateC but there is no un-/retire parameter. So it would be great to also have /retireschedule and /unretireschedule (and also /stopschedule since this is now supported in BP UI). Setting expiration dates would also be helpful
... View more
Today Image Retrieval throws an error retrieving sources created with 'screen image capture (PNG format).' Sources must be all PDF or all TIFF. Business users regularly create sources in the PNG format. IR should convert the PNG files to TIFF or combine the PNG documents into a single file.
... 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
Allow a user to open up and interact with WORD documents while editing a letter in Communications. Clients often have to refer to multiple documents when creating a letter to be issued, Currently having other WORD docs open when editing a letter in Chorus Communications results in unpredictable behavior e.g. edits being lost.
... View more
Chorus is not able to send a dynamic JSON array (that contains the object keys to delete). The length of the array is defined at design time, so in runtime there is no apparent way to populate an array with a dynamic number of object keys to delete. That is, there is no dynamic array capability within Chorus which presents a challenge for batch Chorus objects deletion.
... View more
Our organization sets most GDL mime type files to open in HTML Content Viewer (Word, Excel, PDF). We appreciate all images opening in tabs within HTML CV rather than downloading the files and having multiple native applications open in separate windows. We do have one issue: When HTML CV fails to display a file we have no way to view it. We need a way to download the file when HTML CV is unable to display the image / file. This can similar to how HTML CV handles unknown file types or password protected files. A prompt opens allowing the user to download the file. Alternatively the user might be able to select download from the source menu.
... View more
Sorry if this idea is duplication of existing idea but we are now going to upgrade to 7.3.2 and noticed again the nice feature of being able to show details of a resource in Control. It would be great to have at least local FQDN and server FQDN selectable so we can copy the values.
... 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
It would be a great addition if it where possible to see the changes between processes/objects that are part of a release in the Release Manager Windows. Currently, there is no way of seeing the contents/changes of a release while importing it into the Prod Environment. When importing a release you go through a number of windows, such the logging information and the overwrite questions. I would like to see an additional step here. Similar to comparing versions of a process/object in the studio. It would be helpful to have this option when importing a release. I understand that when importing, the actual process/object is not in the DB yet en and Compare function works by comparing to versions in the DB. However, I am sure it should be possible to works this out, for instance by importing it, then give the release manager the option to view the differences and then actually commit them. If they choose not to go trough with the release the imported version should be deleted.
... View more
Provide for the ability to record text and images in a single place (e.g. worksheet) to record the information used in the human thought process in arriving at a decision e.g. Claims assessment. The following are the key requirements: The ‘worksheet’ must be able to include text and images e.g. a screen capture of a section of a document. Note that most documents are many pages long so its essential that key parts can be extracted and included in this worksheet The ‘worksheet’ is a living a document but must have the ability to lock down previously captured sections of text and images at key stages e.g. when they decide to contact the client. The ‘worksheet’ should automatically record the person, the time and date each update is made and present the information in chronological order The ‘worksheet’ should be laid out in sections e.g. a template with sections for specific text and images. The ‘worksheet’ and sections of the 'worksheet' must be access controlled.
... View more
The search drop down list within Processor Workspace is forced to be in alphabetical order. We are given the ability to specify the order that lookups are in within the LOOKUP resource parameters list, so the drop down should obey this order. Having frequently used searches at the top of the list is more streamlined and user friendly for the end users. This used to be functionality that existed but was taken away.
... View more
Hi, we would like to have a search bar on the Control page similar to the one on the Studio page. This will make it easier and less frustrating to find a schedule. Is it possible for you to implement this change for us?
... View more
Within Chorus BPM Designer, Timers functionality/configuration, allow for designers to utilize a date (and or date/time) value to set the timer expiry. Currently allows for setting the duration integer (number of days, hours, or minutes only) via literal date/time or variable data source. Ability to set an actual date/time within the designer would be of huge lift for BPM design.
... View more
Recently Chorus was enhanced to add a user preference so that the Comments Card shows the comments based on the Show drop down option within the card. This user preference does not apply to the comments preview window that appears when holding the mouse over the comment bubble on a work item. The preview window only shows user comments. This becomes confusing for end users because they believe that they had selected to view all comments and then do not understand why the preview is missing some, or in some cases many, of the comments.
... View more
Currently in Interact version 4.7 , When we raise/submit a submission from interact API, Rules set to fields are not getting triggered while this feature is working from Interact UI.
... 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
Users have ability to suspend BUT they can use the suspend feature to take work out of quality by Suspending and then having an activate status that wakes up in a different queue. Essentially bypassing quality. We would like the suspension feature to have additional access to restrict the activation status option or ability to add an activation status as addtional resource. Thank you
... View more
Work items which are stuck in infinite loops impact Chorus BPM system performance, and in some cases system stability. This issue impacts both hosted and self-hosted clients. When we see high CPU utilisation on the application and database servers, we query the WA2 BI event table to find work items which are stuck in a loop. This reactive step allows us to identify the work items which are impacting performance but doesn't address the root cause. We could like Chorus BPM design studio to identify potential infinite loops as part of process validation. The beta process test automation framework was able to identify loops. Maybe this code could be used as the basis of a solution?
... View more