Search results

  1. J

    RPA Challenge - Fastest Times...

    Using Blue Prism, 1689ms
  2. J

    workqueues_BP

    If 'process 1' and 'process 2' tag the items that are being added to the work queue appropriately, then 'process 3' can get the items from the queue using the appropriate tag filter. By doing this, only the items for 'process 1' will be processed.
  3. J

    Blue Prism SQL Tables

    You could try something like this: SELECT [BPAProcess].[name], [BPAProcess].[description], [BPASession].[sessionid], [BPASession].[startdatetime], [BPASession].[enddatetime], [BPASession].[statusid], [BPAStatus].[description] FROM [BPAProcess] JOIN [BPASession] ON...
  4. J

    Enhancement to Code under "Utility- File Management" VBO to Get Pages and Word count

    That object uses the FileInfo class which returns properties that enable you to retrieve certain information about a file. Page count and word count are not one of those properties. To extend that object to get the word count you could try: Read the text: var fileContents =...
  5. J

    How determine process name

    Up until now I have just used a data item called "Process Name" with a hard-coded value. Not the most elegant or dynamic solution, but my use-cases for this are slightly more simplistic. You could try the solution in this post...
Top