Search results

  1. B

    Cannot add to collection from GetTable

    @Ajayv Please go through the solution mentioned by @ranga @RPA_Automation @Sukesh Kumaru . If you are still looking for solution , one possible way could be to use Match Type = dynamic while traversing to table. Please share more details /screen shot for better clarity. Hope this helps.
  2. B

    BluePrism Database Overwritten

    @dinesh14apr Please try to attach your existing ldf/mdf file with some other name on your sql server. Once attached , execute below query and see it you are able to see your old processes present in blueprism. Select * from dbo.BPAProcess where name like '%<any word(s) of your processname>%'...
  3. B

    The machine can not reserve a slot.

    While running process on virtual machine get error as <the machine can not reserve a slot>. Please help.
  4. B

    Unexpected error Error during Web API HTTP Request Web Exception Status: ConnectFailure

    @priya From error description it seems there is connection issue while consuming endpoints of WEB API . Could you try it consuming this web api outside blue prism (like hitting endpoint from browser) ? hope this helps. Please post how it goes.
  5. B

    Blue Prism freeze / exe has stopped working

    Glad to know that
  6. B

    Blue Prism freeze / exe has stopped working

    @Credit Try loading 50K rows from an excle in chunks or parts and then process it. please keep posted how it goes.
  7. B

    Run SQL Server Query With Windows Authentication

    @abraham_r Pls use option 1 in above answer and enter userid pw and server name. Pls keep posted how it goes.
  8. B

    how can I call an action (element) from the code block (element)

    @ajtest1 Is it really need to call action from code ? cant we loop through collection items via for loop and place "Process Order" action inside this for loop? Hope this helps.
  9. B

    need help with launching citrix app

    @ppb12345 could you share screenshot of the error if you are getting while connecting to citirix.
  10. B

    Unable to get result after executing SQL query using Data-SQL Server VBO

    @sumit Just a wild guess could you try removing inverted commas around rollNo filed. It seems , rollNo is numeric field and it is decorated with inverted comma. this could be possible cause of not updating record in actual table. If still not resolved , can you try updating other table inside...
  11. B

    Active work Queue

    @ramr In this case , the target resource value is decremented - ie. no other session is created to take its place for that particular resource. Sessions on another resources will continue to run. Hope this helps.
  12. B

    How to compare two worksheets in a single workbook

    @VenkataKrishna Telukuntla You may use code stage if blue prism crashes for large number of records. Refer the thread : https://www.rpaforum.net/threads/how-to-compare-two-excel-sheet-using-c-code-in-blueprism.897/ It may be helpful for you.
  13. B

    How to create random numbers in blue prism.

    @Cristine014 Agree with @mondo . Alternatively you can use code stage Random rnd = New Random(min,max); int Counter = rnd.Next(); Hope this helps.
  14. B

    Unable to Run a process using Web Service Object

    @rajesh2627 Is this web service hosted on local machine on which blue prism is also installed ? I believe , Process which invokes web services from blue prism lacks authorization hence showing error . Can you try adding User Account / Network account on the web server where web service is...
  15. B

    stopped and terminated proces auto reporting

    @ProRPA Possible Work flow could be : 1.Drag and drop Action for every step as mentioned below : 2.Connect to Blue prism SQL Server database with below Action Action Name : Set Connection : , Business Object : Data- SQL Server ,Action : Set Connection 3.Once connected Get SQL Data of...
  16. B

    Reading from excel

    Agree with @Janya . Utilit-xml VBO contains actions named "Get Elements","Get Element","Read File" etc. These actions includes parsing and processing of xml data which may lead to more processing time. If in case you need to convert xml data to datatable bellow code would be helpful ...
  17. B

    Multi bot implementation query

    @Shweta As they are going to approach separate web application via browser , they (2 processes) can run at the same time. Run mode can be configured via initialize tab properties with object studio . Can you share more details on time limit part ?
  18. B

    Multi bot implementation query

    @Shweta Yes, multiple processes can run on single pc at same time also. Hopebthus helps.
  19. B

    Multi bot implementation query

    @Shweta Yes we can run multiple processes (bots) on single resource by dragging multiple processes to resource inside control room. Hope this helps.
  20. B

    Reading from excel

    @maduri0909 One possible way out would be to write code for the same. Hope this helps.
Top