Search results

  1. I

    Collection manipulation - Change Column DataType

    Hi all, I am facing the following issue with BP 6.4.0. When getting CSV file to collection I get some columns formatted as "Number". I made the following simple custom code, to translate all the columns to String (Text). --------- OutCol = inCol.Clone() 'convert all the columns type to...
  2. I

    Failed to save credential - Culture is not supported

    Hi all, Did you ever experienced the following issue when saving a credential? "Failed to save credential - Culture is not supported. Parameter name: name en-150 is an invalid culture identifier." This is happening on a new laptop, when upgrading to Windows 10. In the old computers that...
  3. I

    Old format or invalid type library. (Exception from HRESULT: 0x80028019 (TYPE_E_UNSUPFORMAT))

    Hi Highspirits, We also faced this issue. Did you or someone else find a solution for it? Installing a new version of the dll will solve the issue 100%? Cheers, Ismael.
  4. I

    Solved Invalid escape character 'B'

    And 10 months after it helped someone. Thanks a lot!!
  5. I

    Scheduler doesn't start pending items

    @Johan___Luning We don't use and this issue is not happening always. It is happening some days yes some days not. @Emil.Tophoej no, we don't add it. It's comming from the scheduler 100% sure. We don't use login agent we have just PCs running as a resource PC. Cheers, Ismael.
  6. I

    Scheduler doesn't start pending items

    What is happening to us is: 1. Process is scheduled at let's say 01.00 am. 2. Process is triggered at 01.00 and it will appear in Control Room as "Pending". 3. After that it stays there. The change from "Pending" to "Running" is never happening, locking the resource, so nothing else will run...
  7. I

    Scheduler doesn't start pending items

    Any news about this? We are facing the same issue.
  8. I

    how to geet current week

    You need to create a code stage. I use the following, tweaked to my needs: Dim dfi As DateTimeFormatInfo = DateTimeFormatInfo.CurrentInfo Dim cal As Calendar = dfi.Calendar Result = cal.GetWeekOfYear(d, 2, 1) ¨d¨ it´s just a DateTime input parameter that you have to send to this page...
  9. I

    SQL Query to short process logs by size

    Hi Emyr, What we use is the following query. Is not the real amount of MB since what it does is summing the length of each separate process with name of the process, length and date. Check it out if it works for you. In case you want to clean that table you are talking about, I also did...
  10. I

    Solved BPASessionLog_NonUnicode Archivation

    Fixed by deleting from that table directly from the database, it looks like Blueprism is not archiving everything. The SQL code is as simple as: delete from [yourdbname].[dbo].[BPASessionLog_NonUnicode] where sessionnumber<10000 (you have to define where to stop so this number should be changed)
  11. I

    Solved BPASessionLog_NonUnicode Archivation

    Hi all, Does someone know what it contains besides of Logs that can be archived in System -- Archiving tab? Even if we archive all of the processes we have a lot of MB in that table, that are not being reduced even after full archivation of the logs. May I know if there is a different way to...
  12. I

    How many users applicable for each blue prism software

    That´s not entirely true. For example, for us, we can have as many machines as we want connected but the limitation is on the resources that are running at the same time via Control Room. You can have 15 machines and 5 licenses. But you will be able to run only maximum 5 processes at the same...
  13. I

    Solved Lock failed due to foreign key constraint - Issue

    Marked as solved. The issue was that we updated the license and there was a limitation on the following: Number of resource PCs which may be registered at any one time: 10 We contacted our provider to change it since we need way more machines able to register. The only solution is to install...
  14. I

    Solved Lock failed due to foreign key constraint - Issue

    Hi all, One user is experiencing the following issue when opening any process. Nothing is locked by the rest and when going to the unlocking wizard nothing works. Do you have any idea how to unlock the processes? Is there any script we can run in the database to unlock the processes for the...
  15. I

    BP Report fails when saving

    Hi all, I am facing the following issue when creating a report with one schedule, sometimes it throws the following error. Have you ever experienced? Full message is: System.NullReferenceException: Object reference not set to an instance of an object. Server stack trace: at...
  16. I

    Pop ups on SAP

    Hi all, We are facing this issue as well. The biggest problem is that BP get's stuck in the navigate stage and doesn't move until someone manually clicks since BP is waiting for SAP server reply. The solution arodriguezm is providing will probably work since I believe the main problem is...
  17. I

    Reports - Recent Activity very slow

    Hi, I have created a customized report for the recent activities, without selecting all schedules, just selecting a few. This one runs very slow (1 minute aprox) while if I select "All schedules" it´s completely fine (couple of seconds). Do you know if there is a way to improve it or the...
  18. I

    SQL Query to short process logs by size

    Hi everyone, I am wondering if you know what would be the query that I have to execute in order to find what are the biggest logs in my database per process. I am talking about the logs in table BPASessionLog_NonUnicode. So if I find the largest processes I will be able to archive them keeping...
  19. I

    Setting resolution programatically

    I confirm, I used this approach and it's a simple and quick solution!! It works very good. Thanks a lot VJR.
Top