Recent content by ewilson

  1. E

    Upgrade projects form 6.5 to 6.10

    @Sgonzapo please check the Release Notes for v6.10. It should give you all the info you need. There will be an Upgrade Notices section with specific information about moving from a specific earlier version to v6.10. As I recall, you will have to perform a DB upgrade on the BP database as there...
  2. E

    VB.Net code to select multiple criteria applying filter in blue prism

    What are you trying to filter (ex. a Blue Prism Collection, an Excel Worksheet, etc)?
  3. E

    Issue while getting Data from CSV file into collection

    What are you using the read the CSV data (i.e. Excel VBO, Utility - File Management VBO, etc)?
  4. E

    How to check for a attachment is present or not in a mail using MS Outlook Email VBO

    If you use the Get Received Items Basic, Advanced, or Expert actions, on the standard Outlook VBO, to retrieve the messages you're interested in, the returned Collection will include a field titles Attachments. That field will consist of a pipe (|) delimited list of any attachments on the the...
  5. E

    Return a value using javascript in blueprism

    @tomahawk1 has provided the answer. Basically you have to inject a textarea, hidden input, or some other HTML element that you your Javascript can write it's output value to. Then you can set up your Blue Prism process or object to read the value from that HTML element.
  6. E

    How to read a .msg file in Blue Prism?

    The latest Outlook VBO, available on the Blue Prism Digital Exchange, includes an action for reading MSG files. You can get the latest VBO at th following link: https://digitalexchange.blueprism.com/dx/entry/3439/solution/ms-outlook-vbo
  7. E

    How to read text from a PDF which is only shown by a website in a new window and there 's no option to download it

    Hi pikachaponce, I haven't tried this myself, but I think it could work. You could take a screen capture of the invoice and then use the built-in OCR capabilities of Blue Prism (or Decipher) to try reading the text of the image. Cheers, Eric
  8. E

    ERROR: Internal : Could not execute code stage because exception thrown by code stage: Unable to get the Open property of the Workbooks class

    If you search Google on that particular error message you'll find there are various reasons that can contribute to this error such as: - Improper permissions on the file or folder relative to the credentials the digital worker is running under. - Incorrect or corrupted installation of Excel...
  9. E

    CSV delimiter

    If you check the latest release of the MS Excel VBO, available on the Digital Exchange, you'll see that the VBO includes an action called Import CSV that includes an optional input parameter to specify the delimiter used in the CSV file. Cheers, Eric
  10. E

    Unable to Open Excel XLSM File (Call was rejected by callee)

    Hello dsmith616. It seems this issues can be caused by any number of issues including: - Your Excel instance isn't licensed or the license hasn't been activated on the machine. - Certain add-ins can cause issues. Have you tried disabling any add-ins on the machine in question? - Since you...
  11. E

    How to check whether a particular folder exists or not in outlook

    Please take a look at the latest version of the MS Outlook VBO on the Blue Prism Digital Exchange. It includes an action called Check Folder Exists. Cheers, Eric
  12. E

    adda number to text?

    Here's one example that you could implement with a Code stage: string val1 = "AB00000001"; string val2 = "AB00000002"; int sum = Convert.ToInt32(val1.Substring(val1.Length - 8)) + Convert.ToInt32(val2.Substring(val2.Length - 8)); string finalVal = "AB" + sum.ToString("D8"); This assumes the...
  13. E

    adding zero before number?

    @HickeHiskelig are you attempting to do this via a Calculation stage? If so, you'll have to create the number as Text in order to keep all the zeros you want. Cheers, Eric
  14. E

    Double Quotes In Command Line And Blueprism

    @prateek grover are you experiencing an issue with this? Are you using the Utility - Environment VBO to attempt this or a Code stage? Cheers, Eric
  15. E

    File Exists giving wrong output

    Hello @Babjee Vangipurapu, Are you using the latest version of the Utility - File Management VBO available on the Digital Exchange? From your message it sounds like sometimes you get the correct response and other times you get the wrong response. Is that a correct statement? How are you...
Top