Search results

  1. F

    Issue in closing SAP Application

    Hi Gil Silva, I'm alredy using it. I'm using 2 action to close SAP: 1. Using the Action Terminate. 2. Using action Kill If the bot is not able to download files from SAP, the application will be terminate, but if it is not possible to export files after 3 tentative the application will...
  2. F

    Issue in closing SAP Application

    Hi All, I have a process that works about 24 hours a day. This bot extract a lot of files from SAP, manipulate them and save it in to a specific folder. If bot is not able to extract the file from SAP, close and reopen again SAP application and trying to export file again. If the bot is not...
  3. F

    Save a PDF file already open

    Hi All, Here below you can find my issue :) During my process I need to save a PDF file extracted from SAP. This file must be manage in display mode and that means that i cannot save it directly from SAP but I need to open it and than save the file. I don't know how to manage it. Once the...
  4. F

    Solved [MS Word VBO] Insert Image to Word page

    Hi All, Thanks for your support, I made some mistake with the variables. Now all works correctly. Here below the code Dim doc as Object Dim myBlank = True If myPage = 0 then myBlank = False End If If myHeight = 0 then myBlank = False End If If myWidth = 0 then myBlank =...
  5. F

    Solved [MS Word VBO] Insert Image to Word page

    Hi Sukesh, This is not a good solution for my process. I need to insert different image in different place in different pages. So, the solution that you have showed me, doesn't work. Thanks Ale
  6. F

    Solved [MS Word VBO] Insert Image to Word page

    Yes, I am open istance, open file, show it and try to insert an image
  7. F

    Solved [MS Word VBO] Insert Image to Word page

    Hello, I need to insert an image to a word file. First I have wrote the macro in VBA to insert image to a specific page in a word file Sub InsertImage() Dim PicPath As String Dim aShape As Shape PicPath = "C:\Users\f04959c\Desktop\Capture.PNG"...
  8. F

    Sap spy mode issue: No action associated to element

    Hello Amlan Sahoo, Thanks, it works...
  9. F

    Focus on Login Page

    Ciao CamiCat, Here below how I have done to fix it
  10. F

    Sap spy mode issue: No action associated to element

    HI All, I'm working with SAP system and I'm having some issue related to click on the checkbox. Blue Prism is able to detect the checkbox and highlight it, but no action is associate to it. Also, there is not other way to spy the elment.
  11. F

    Solved Add space to string VBScript

    Fixed changed in the following approch Protected Function Add_Spaces(sText as string) as string Dim CharNum as integer Dim CharCode as integer Dim FixedText as string FixedText = Left(sText, 1) For CharNum = 2 To Len(sText) CharCode = Asc(Mid(sText, CharNum, 1)) If...
  12. F

    Solved Add space to string VBScript

    Hello, I have tried to add space to a particula string in VBScript, but somethings doesn't works. I have write the code in VBScript that work Dim iText, oText iText = "GoofyMickeyMousePlutoDonaldDuck" MsgBox iText oText = Add_Spaces(iText) MsgBox oText Function Add_Spaces(sText) Dim...
  13. F

    Solved How to convert from type 'DataRow' to type 'String'

    Hello, I found the solution to my issue. Change the code as below: [...] For Each row as datarow in Rows.Rows [...] For Each column as datarow in Columns.Rows [...] Thanks
  14. F

    Solved How to convert from type 'DataRow' to type 'String'

    Hello, I need to convert from 'System.Data.DataRow' to 'String'. Reading datas from a collection, I need to use them to create a Pivot table with more elements in row item, I wrote the code used to create it but it doesn't work. Blueprism return me the error: Here below the code Dim rng...
  15. F

    Screenshot in BP

    Hi, I have fix it by a global send key "^%{PRTSC}"
  16. F

    Solved How to Split String Using Regex Expressions

    Hi SG, I can't thank you enough. It works and also I have understand how to use the "code" object Thanks Ale
  17. F

    Solved How to Split String Using Regex Expressions

    Hello, I need to split a string using uppercase character So, for example: String: "GiornoFest.Err.EntrataUscitaEntrataUscitaAltreCausaleDalleAlleDurata Collection: "Giorno Fest. Err. Entrata Uscita Entrata Uscita Altre Causale Dalle Alle Durata Thanks Ale
  18. F

    Click a button using C# Code.

    Hi VJ, Thanks for your help. From what I understand seems like in OBIEE the Write Object doesn't work. Indeed, the Write Object, had altered the value on the web form, but did not change the query behind. This is the reson why every times I ran the robot, it worked with the defoult...
  19. F

    Click a button using C# Code.

    Hi VJ, -Also provide more details on what parameters were passed for Select by Region and Global Send Keys? - Select by Region About the Region I don't know how explain you what I have made, so i copy here below two screen, hoping that all be clear - Global Send Keys Once I fill the...
  20. F

    Click a button using C# Code.

    Hi All, Looking on google I was able to make this C# code that open google web form on IE Browser, put something in search bar and click on search button (here below the code). However, I found some issue to traslate this code in Blue Prism. First of all, in order to move between IE objects i...
Top