Recent content by jpcrepeau

  1. J

    How to compare two collections

    Hi! is it possible to adjust the code to put only the differences in the output collection? thanks a million!
  2. J

    How to Spy the text "Order Number:5201" where Number changes for each submission?

    I would suggest putting a wildcard in the name of the element first. so name Wildcard ORDER NUMBER:*
  3. J

    How to Extract particular string from a Email body?

    with InString, find the location of Primary Number: , then find the location of MembberOf BU your mid will start at location of primary number +15 and end at location of MemberOf BU - location of primary number. You might have to trim after, but that should work every time assuming that part...
  4. J

    ERROR: : : The semaphore timeout period has expired

    Having the same issue and would like to understand what causes it! BP portal does not have a lot of information
  5. J

    ERROR: Internal : Unexpected error The handle is invalid since enabling screen capture

    I think I figured it out. Didn't get to fully test it yet but it seems to point to this. If the workstation is locked when the process starts, it will not take the screenshot and give the error. If the machine is unlocked before the process starts, it will take the screenshot. For one of my...
  6. J

    Where to check the Screen Captured from Exception Stage

    in the control room>Resources, right click on your resource and select "Show latest screen capture". It only stores the latest one. You need to enable it in system and the user needs to have the right to see the screen capture.
  7. J

    Solved Increase path attribute

    Create a number variable and add 1 to it every loop. If your variable is called Number, your path will become...
  8. J

    ERROR: Internal : Unexpected error The handle is invalid since enabling screen capture

    Hi, I recently enabled screen capture on all my system exceptions. In some of my business Objects, I have a lot of verifications and every time I go in exception, I recover, detach from mainframe screen and re-throw the exception. In some business object, instead of going to all the...
  9. J

    How to use 'break' to Global Send Keys

    On version 6.4 I believe it should be {BREAK}
  10. J

    Cannot select an item in a drop-down list on a website

    Found how to do it! I spied the whole window as Win32 mode and simply send a global mouse click center so the checkbox "validates" itself. doesn't always have to be complicated ;) I tend to overthink these issues sometimes. thanks again! J-P
  11. J

    Cannot select an item in a drop-down list on a website

    Hi, I am able to get the right value in the box using the "Select Item" Action in navigate. Problem is that when the value is in the field, the field is blue. If I click anywhere else, it becomes white and it works. If I don't, the field remains in blue and when I book the appointment it...
  12. J

    Cannot select an item in a drop-down list on a website

    Hi, thanks for the reply. If I spy the box, it gives me HTML edit with only the default value. If I spy the box after clicking on it, it spies as an html combo box with the values I want. Problem is I cannot get the combo box to appear. If I send a click to the html edit item, the box appears...
  13. J

    Cannot select an item in a drop-down list on a website

    Hi, I am trying to automate a process that goes on a website and books an appointment. There is a drop-down list that looks like Java or something not pure HTML. The box does not show a drop-down, but when you click on it some options appear. It spied as an HTML Edit. If I do it manually, I...
  14. J

    How to give 2 Key Names in the Work Queue?

    I usually concatenate both fields into a new one and use this new one for the key. Hope this helps!
  15. J

    Filter Collection adds value in Datetime column

    I just double checked and there are spaces in the empty values in the CSV files. So the cell is not blank, it has " " in it. thank you all for your help! :)
Top