Recent content by sck360

  1. S

    Undelivered emails

    Hi Guys, Does anyone have a solution to these emails coming back in Chinese? Setting to UTF8 doesn't appear to be working Thanks Shane
  2. S

    Proxy Authentication

    Hey, Looking to call ServiceNow APIs from Blue Prism. Calling these from Blue Prism resulted in the following: HTTP Error Code 407 means "Proxy Authentication Required" Blue Prism Support suggested that this error indicates that the client must first authenticate itself with the proxy. After...
  3. S

    ServiceNow API Call

    Hey, I'm working on integrating BP with ServiceNow APIs, but unfortunately getting the same error no matter what method I try. I've put together a simple API call for now https://XYZdev.service-now.com/api/now/table/x_baoq_boq_robotic_internet_account_opening?sysparm_limit=1. This works fine...
  4. S

    Shared Mail Inbox Outlook

    Hey, I've set the bot to read/move from the shared mailbox, and all is working well. Im looking to get the bot to 'Get Sent Mail' as well as 'Send Mail' from the shared mailbox, but getting "Value does not fall within the expected range." each time. Any ideas on how to correct this? Thanks...
  5. S

    Embedding Image In Email Using MS Outlook VBO

    Hi, Doing some work with Outlook and looking into embedding an image in the email body using the MS Outlook VBO. All works fine when sending emails to Outlook accounts. However, when sending to a Gmail account, this fails as no image is showing in the email body Message Is HTML Flag is set...
  6. S

    How to merge PDF files in Blue Prism

    Hey @Jas, nothing for sure yet. However I’ve been playing with the idea of using PDF TK Server. It’s a command line tool that should allow merging of pdfs programmatically.
  7. S

    How to merge PDF files in Blue Prism

    Hay Jas, just wondering did you find any solution or work around for this? Cheers
  8. S

    Get notifications if a BP process fails to start

    Hi VJR, Yes, this is exactly what i was looking for. I've now implemented this and will test it over the next few days. Once my process is kicked off, it will write today's date to a txt file. Ive then created a power shell script that will compare today's date with the date saved in the txt...
  9. S

    Get notifications if a BP process fails to start

    Hey, When a blue prism process fails to start from the scheduler, it can become very frustrating especially when there are many processes to monitor. e.g Task: xxxx Process threw an exception: Resource xxxx is offline - retried 10 times or Task: xxxx - Session creation failed on resource...
  10. S

    Code Stage To update Collection value

    Sorry for the confusion, this was just a typo. Looks like i was forgetting to output the collection data at the end of the code stage. Output_collection is referencing the same collection as input collection. for (int j = 0; j < input_collection.Rows.Count; j++) {...
  11. S

    Code Stage To update Collection value

    Hi, Im trying to use a code stage to loop through a collection i have that contains one column. With each iteration the value in each row in will be updated. So far i have an input collection in my code stage(input_collection) . This collection contains one column with 1000's of rows. These...
Top