Search results

  1. J

    SAP freezing

    Hi there, I have a trouble with SAP (GUI Scripting mode allowed), sometimes its freezing when call Navigate stage (press, click , atc). It is looking like SAP is processing command, but nothing really happnes. I dont understand, why navigate action does not terminate? Or is there any solution...
  2. J

    reagular expression not working in blueprism

    Hi, its very simpl code, thats return collection of matches with reg expression: Start Inputs: Pattern RegExpression String Code Stage: Inputs: Inputstring, Regexpression Outputs: RegexMatches Code: RegexMatches = MultipleMatchRegex(Inputstring, Regexpression); End Outputs: RegexMatches ...
  3. J

    blue prism

    In the same Navigation stage send two simple cliks with 0,1s interval JC
  4. J

    reagular expression not working in blueprism

    Hi, does your expression works in here: https://regex101.com/ ?? I have made my own object libary for regex extraction. If you interested i can share it. JC
  5. J

    Reg Ex

    Hi, Try this link https://regex101.com/ JC
  6. J

    Scheduler - Processes stuck in Pending mode

    We have version 6.4 and this bug still appears time after time. Restarting resources daily morning this bug reduced to minimum, but several times per month it still appears. I have already report this to BluePrism. I made an easy proces thats run a bat file with script to restart resource. I...
  7. J

    Schedule - more scheduled actions in one schedule point

    Hi all, Is it possible to send 2 scheduled actions in one shedule point to the same resource? Example in attach. I think it will trigger only the first action and the next ones will skip. More actions in one schedule point works only if they are send to different resources. Is that true or I...
  8. J

    HTML mode write stage not working

    I solved it for me, so maybe also will works for you ! Inputting text to HTML Input filed is combination of 3 actions in Navigation stage: 1. Active application of window (spied in mode win32) 2. Focus on Input element (spied in AA mode) 3. Global Send Keys ("^v") Of course before running...
  9. J

    HTML mode write stage not working

    Hi, I have got the same problem. With BluePrism stage Write I set the text to Input filed but after pressing OK button nothing happens. When I look into HTML code I can see, that atributte "Value" is empty even if I can see inputted text by BluePrism on the screen (Example: <input...
  10. J

    Interacting with SAP Top Menu Bar

    I think both ways are possible to use. You can set pause time values between steps in Navigate stage OR you can divide one stage in to two Navigate stages and between them paste waitstage "see if exists" "spied element of submenu" in process: 1st Navigate stage: 1. Activate SAP window 2. Send...
  11. J

    Interacting with SAP Top Menu Bar

    Hi, try combination of Global Send Keys for selecting and open 1st level of menu -> Global Send Key for that is ALT+'underlined letter in name of Menu value' then some of fields can be chosen by another Global Send Keys and the next ones can by spied in accesibility mode. In process you have...
  12. J

    Window spying issue

    Hi, try to create new web browser application in object libary and chosse launching variant as "My application is already running - ...". Then when Pop Up window will apper, used this new object to handle with that. Dont forget to use attach and detach when switching betwwen web browsers object...
  13. J

    Send On Behalf of Outlook Operation

    Hi I have resolved this problem few month ago. Setting has 2 parts, in MS Outlook and of course in Blue Prism Object Libary. See in attach files how to define action in object libary of Blue Prism and also how to set MS Outlook. Important: To input param "FROM" write email address you want to...
  14. J

    how to save a dataitem (text) to a image(jpg)

    Hi, can you be more specific, why do you need to do that? JC
  15. J

    How to read entire values only a particular column from entire Table collection.

    Hi, It is possible, but I´m not sure that it will be faster then save entire table to collection and remove unneeded cols. My solution is, create cycle in object studio and read values of column "Name" row after row. 1. Spy cel of wanted col in first row 2. In Appliction Modeller find...
  16. J

    Cancel text om Mainframe

    Hi, use action "write" on text filed you want to clear and input as many spaces as long is text field you want to make clear. for instance: text filed has length 10 characters and it has position [x,y] from [1,1] to [1,10] , then If you want to clear this filed, write string " " to...
Top