Recent content by Sanjesh007

  1. S

    Automating MS Word functions using BP

    Hi VJR, Thank you for the input. I will try this. :) Regards, Sanjesh
  2. S

    Automating MS Word functions using BP

    Hi VJR, I am using this vba code : Public Function DeleteBlankPages(wd As Word.Document) Dim par As Paragraph For Each par In wd.Paragraphs If Len(par.Range.Text) <= 1 Then par.Range.Delete End If Next par End Function But I am getting below errors while running the macro to remove the blank...
  3. S

    Automating MS Word functions using BP

    Hi VJR, I have already referred the MS Word VBO, but was unable to find any actions pertaining to the above requirement. So, I thought of doing it with Macro but I still face the same issue. It would be helpful if anyone can provide some input. Regards, Sanjesh
  4. S

    Automating MS Word functions using BP

    Hi All, We have a requirement in which the bot has to interact with MS Word document and do below activities- 1. Blank pages has to be removed. 2. Table which span across multiple pages needs to be read and merged. How can we achieve this function. Regards, Sanjesh
  5. S

    Missing Data Item and Processes after importing the process

    Hi All, We are currently using Blue Prism version 6.1 Recently we faced two issues after importing the process. Issue 1: Missing the data item in the output tab in action stage. Issue 2: Missing my process name in dropdown of process block. How to overcome to this issue? Regards, Sanjesh
  6. S

    Need Assistance for Migration from v5 to v6.3

    Dear All, If I plan to upgrade Blue Prism from v5 to v6.3. Can you please help me on getting any relevant artifacts which can be referred during up-gradation like: Any recommended best practices during Migration Do’s and Don’ts during upgradation Any relevant upgrade experience/Lessons learnt...
  7. S

    Unattended automation encounter failure(s) when deployed in Virtual workstations

    Hi All, BP runtime resource is failed to execute the process 100% when the virtual workstation is not remotely connected from physical desktop machine. For example, processes are still able to execute commands like running an application, attaching to it, and typing in windows. However, they...
  8. S

    Unable to spy the popups in IE

    Hi VJR and Christer, Thank you for the efforts, I will try this. Regards, Sanjesh
  9. S

    Unable to spy the popups in IE

    I have checked all the above points and additional as well. Still, have the same issue. :/
  10. S

    Unable to spy the popups in IE

    I am in the process of modeling a web application and as part of the process pop-up windows are required for username and password. However when I try to spy for the elements of the pop-up window (using any of the spying techniques) I get the following error message: ----------------error...
  11. S

    How to Launch a specific Excel File from application modeller

    Thank you for the input. I will try this. Regards, Sanjesh
  12. S

    How to Launch a specific Excel File from application modeller

    Hi All, Is there any way to launch specific excel file via application modeller and spy various elements of that excel sheet? Or, is there any way to attach specific excel file and then spy the elements of that excel sheet or any pop up that is given by excel in case of error? Please suggest...
Top