Recent content by NPoornima

  1. N

    Resources don't get next queue item

    Can you pls elaborate the issue: 1. Are you using any tag like resource user name while populating the Queue? 2. Are you passing any Tag Filter parameter in Get Next Item action?
  2. N

    EXCEL IF THEN STATEMENT FOR CELLS

    Hi, If Blank column is not there in collection then add it using below: First add text field into the collection. VBO = Utility - Collection Manipulation Collection Name = Test_Coll Action = Append Field(Text) Field Name = "Col_O" Note: Collection Name & Field Name I had given some example...
  3. N

    unable to click Ok button

    Hi Neelima, Create new object(Windows application) to handle pop-ups
  4. N

    How to Convert IST time to UST time.

    Sorry, the action should be UTC to Local. Attached screenshots for reference.
  5. N

    BOT using 2 users on WebApp with SSO Enabled

    Hi NKapoor, since BOTs use SSO to autologin, use two queues to handle this. BOT1 will get item from Queue1(Create User) & after successful user creation add the same item to Queue2(Approve User). BOT2 will pick the item from Queue2 and process it, thereby we follow the mandate in BP as well...
  6. N

    need help with launching citrix app

    It's an issue with Citrix receiver, I've also faced the same issue where the same code works in other developers machine(application gets launched from object) but not in my machine. So after reinstalling Citrix (delete permanently and install it again) resolved the issue. Please try and let me...
  7. N

    How to Convert IST time to UST time.

    Yes, it worked...
  8. N

    How to Convert IST time to UST time.

    Hope you got the solution
  9. N

    Work Queue

    Work Queues are very useful for the below scenarios: 1. Multibot Architecture where multiple bots can work for same process/Queue in order to complete the volumes quickly 2. To see/monitor the item status at the time of execution, we can also do force retry in case of Exception occurred for the...
  10. N

    How to Convert IST time to UST time.

    Hi Suresh, updated VBO is available in blueprism portal for this VBO name: Utility - Date and Time Manipulation Action Name: UTC to Local Input: 1. Get current IST date and time using Now() function and store it into data item 2. Pass Timezone ID or name for UST Output: It will convert to UST...
  11. N

    Solved MultiBot Architecture on SIngle FIle

    1. Get existing no. Of rows in Excel using MS Excel VBO, Action: Get number of rows Output will return number, store in using data item ROW_COUNT which is of number data item 2. Use Action: Write Collection from MS Excel VBO and the input start cell should be "A"&[ROW_COUNT]+1 Note: I've...
  12. N

    Dynamic path issues

    Add double quotes in the beginning and end of dynamic path of HTML Code
  13. N

    How to pass SHIFT+DOWN ARROW(4 times)

    Use as "<{SHIFT}{DOWN 4}>{SHIFT}"
  14. N

    Blue prism runing macro without userform

    In the code(VBA), add as Application.DisplayAlerts=False then save and close the macro workbook
  15. N

    : How do i filter multiple rows in Data Collection?

    Use object: Utility - Collection Manipulation Use Action in it: Filter Collection Expression: "[row1]=1 OR [row1]=2" Output will return collection with row1 which has 1 or 2
Top