Recent content by DTforrpa

  1. D

    finding a row in a collection containing a specific value

    Hi Basically there are 2 common techniques. Create loop stages for the 50 row collection. Then inside that loop add a loop for the 150 row collection. Then have a decision stage inside Data B loop with expression [Data A.Currency)=[Data B.Currency]. If true then another decision stage [Data...
  2. D

    drop down menu in sap cannot be accessed

    Is the outcome you want manually accessible/achievable via the menu bar ?
  3. D

    how to access sap drop down menu

    Model the SAP Menu Bar object, then use the Select Menu Item action and use the following syntax for menu path value "{Extras}{Set controlling area...}"
  4. D

    Working With JDEdwards

    Hi, out of interest, did you resolve the entry method issue with JDE ? I am commencing a similar activity with the same issue. I assume it is javascipt execution related
  5. D

    Global Send Keys - Press Tab

    Can't tell from you screenshot, but are you activating the application window (so it is the topmost active window) prior to sendkeys
  6. D

    Set cell value error

    Remove 1 of " from beginning of statement
  7. D

    Use Of Multibot

    I am not sure I understand you point. But a work queue is used to determine what work exists or remains to be worked, and to manage what work has been done so far, and what remains. If you don't have a work queue others bot's (multi-bot's) will not know what work is available to them to do.
  8. D

    BluePrism String Operation help needed

    Trim(Mid([subject], 4, InStr([subject], "-") - 4)) That is assuming the subject always is prefixed with FW:, and a hyphen follow the alphanumeric string to extract.
  9. D

    Use Of Multibot

    The easiest way to understand why, is to think of a human workforce. If 1 person could cope doing everything within an acceptable timeframe for the given process, employers would have only 1 staff member. So a team can get more done and/or done in a quicker time than 1 person. Very relevant for...
  10. D

    How to Extract/download PDF documents embedded within excel workbook

    I am seeking assistance on best technique to extract/download PDF documents that are embedded to an excel workbook. So that the extracted PDF's can be uploaded to another application. Each embedded PDF will be positioned and named uniquely at time they are embedded to excel and will be...
  11. D

    Request Stop From Another Process

    Perhaps use a system variable and update it using the master process, and have slave process check value of system variable, if OK to proceed or stop.
  12. D

    code to Set Outlook mail Reply-To property using BP object MAPIEx

    I would like to Set Outlook mail Reply-To property of outgoing email using BP object MAPIEx so any emails generated by BP that are replied to by humans go back to an address to that it is sent from originally (as sent by the bot). Just need to know the line of code to add to new code stage Thanks
  13. D

    Use BP Code Stage with VB as recorded for SAP GUI

    Is it possible to use SAP GUI recorded code in Blue Prism Code Stage ? I need to execute the following to navigate this Action Box link (refer screenshot attached) session.findById("wnd[0]/shellcont/shell").clickLink "0900","Column01" Assistance is appreciated, Thanks
Top