Search results

  1. M

    IBM Host get Text Color ?

    I use these IBM Functions / Librabries to read out text with blueprism from the IBM HOST program. https://www.ibm.com/docs/en/personal-communications/6.0?topic=library-host-access-class-automation-objects I copied some Visual Basic examples and created some code stages that worked for me: Dim...
  2. M

    Save Queue Data with Logs

    Is it possible that blueprism archiving only archives the Session Log data ? How can I archive the queue with all the logs on each item ? I just figured out that the archiving function does not archive the queue entries or the logs to each queue item. at least it seems so. After a a lot of...
  3. M

    Dataitem in output name

    I have a choice action with 10 choices and in each choice data will be written in a collection. I have 10 collections ranging from: Übertragung1 to Übertragung10 Is possible to add a Data Item in the output name string ? Something like: "Übertragung" & [Casecounter]
  4. M

    Counting in/through Collections

    I have a collection with 2 text fields VTPalt and VTPName The collection is a JSON extract/import and can have up to 100 rows of data.I need to know an elegant way to count how many unique VTPalt entries there are and note that number in an extra dataitem. Example: 15616 -> 1 41861 -> 2 41641...
  5. M

    Blue Prism update from 6.4.2 to 6.6

    I'm planning to upgrade our blueprism version from 6.4.2 to 6.6 now nad get the following error when I try to upgrade. Generally I would say that our session log data is not that important. But I would rather keep the data than lose it. The warning says that it is possible to import the data...
  6. M

    Regular Expression

    I have an issue with a regular expression. I have an application that has several textfields. But in one of these fields there is a string which contains a number in the following format. 2561546 125.456/7 K2561546 KV2561546 k256.154/6 kv256.154/6 kV256.154/6 Kv256.154/6 KV2.123.132/6 2561546...
  7. M

    IBM mainframe automation code stages

    To interact with our IBM mainframe I use the locally installed IBM Personal Communication Client. In Blue Prism I made some Code Stages to read out text by coordinates, set cursor to coordinates, write text to coordinates or simply sent simple key presses (like e.g. numpadenter or F3) to the...
  8. M

    subquery Error in object

    I get the following error message Internal : AMI error occurred in WaitStart Stage 'Wait2' on page 'N: Check Post Counter' - Subquery must be followed by one of '=', '<', '<=', '>', '>=', '<>', '%=' '^=' '$=' I try to spy a number which appears in our application. It can be from 4-99 so I used...
  9. M

    Pressing buttons with conditional wait

    At the moment I use conditional waits in almost every action where I need to press a button or something. Basically I use the conditional wait to determine if the button is even there. And if its there. Blue Prism should press it. I got an Internetexplorer Application that I interact with and I...
  10. M

    Code Stage Parameter Problem

    I'm trying to read some characters out of a mainframe application window. I already got 2 functions like this working: one for sending single keys like F1 and the other one for sending a string at certain coordinates (y=row / x=column). Dim autECLPSObj As Object autECLPSObj = CreateObject...
  11. M

    Collection Filter Problem

    I have a problem with the collection filter function in the collection manipulation object. What it should do: The page gets a text input named Inputkey in the start stage. The collection has a table with 2 columns Inputkey(Text) and IBMkey(Text) In my example the collection should be...
  12. M

    Scheduler Problem

    I got a little Scheduler Problem and I hope someone can provide a hint to solve it. Our Blue Prism is running on a Laptop. That laptop is starting up by BIOS events every workday at 6:55. Blue Prism will login at 7:00, wait 30sec., then runs our process and at 19:45 Blue Prism closes down all...
  13. M

    recursions in Blue Prism

    I'm just working on a page and it seems like I will be having a lot of crossing lines when I'm done with the page. So I wondered if a "recursion" like this would work:
  14. M

    avoid spying textfields in the background

    I got a problem with an w32 application. When I use the Applicationmodeller to spy some textfields by iterating through the matchindex blue prism also finds textfields that are not visible on the screen because they are in another TAB of the application. The active tab is 1564: Rezept/Arzt...
  15. M

    Looping with Collection

    Is it possible to loop a collection and add a row to the collection inside the loop to prolong the looping ? I created the Loop with one row only and when I add a row before reaching the end of the loop. The function will only go one time through the loop. Somehow it only works If I remove...
  16. M

    UNTAG Item Function not working as I need it ?!

    Hi there, I'm kinda new to the RPA Topic and at our company we have a process that is done with RPA now. For every case we do we create an entry in the work queue and use the queue as a table of results. At the moment i have the problem, that when a business or system exception happens, that...
Top