UiPath | How to Read Data from Queue | Get Queue Items | Read Transaction Data from Queue Items

แชร์
ฝัง
  • เผยแพร่เมื่อ 18 พ.ย. 2024

ความคิดเห็น • 34

  • @rajdigumarthi6706
    @rajdigumarthi6706 2 ปีที่แล้ว +1

    Hi Sir, Can you do a video on, How to create Arguments in Orchestrator.
    And how to use/call those Arguments into Process.

    • @MukeshKala
      @MukeshKala  2 ปีที่แล้ว +1

      This is Already covered in this video
      th-cam.com/video/k4F49tWKUTU/w-d-xo.html

    • @rajdigumarthi6706
      @rajdigumarthi6706 2 ปีที่แล้ว

      @@MukeshKala Thankyou sir

  • @PraveenSingh-cl2or
    @PraveenSingh-cl2or 2 หลายเดือนก่อน +1

    How do we send the report if some items' statuses are "Failed" and "Abandoned"? Suppose I want to send an report with status failed and abandoned, how do we achieve this?

    • @MukeshKala
      @MukeshKala  2 หลายเดือนก่อน

      Get all queue Items from queue with status - failed and abondoned - put it in excel and send as excel

  • @thomasschattat13
    @thomasschattat13 5 หลายเดือนก่อน +1

    Hello, all is string, why don't you show also how to retrieve boolean or integer values instead of multiple strings? When I can pull ONE string (ToString...) I can repeat that. I want to retrieve a boolean, there is no method to convert "ToBool" or so. How does that work?

    • @MukeshKala
      @MukeshKala  5 หลายเดือนก่อน

      Convert.ToInt32(TransactionItem.SpecificContent("Data").toString)
      Convert.ToBoolean(TransactionItem.SpecificContent("Data").ToString)

  • @santhoshkola2180
    @santhoshkola2180 2 ปีที่แล้ว +2

    Str_Email is assigned
    Transactionitem.SpecificContent(”Email”).Tostring

    • @MukeshKala
      @MukeshKala  2 ปีที่แล้ว

      Super , Absolutely Correct ✅

  • @yosoyhelio
    @yosoyhelio ปีที่แล้ว +1

    is it possible to do something like: allQueueItems(2).SpecificContent(”Reference”).Tostring ??

    • @MukeshKala
      @MukeshKala  ปีที่แล้ว

      Possible but the syntax you are sharing is of Data table , here we have Queues. - You need to use the Filter Property in the Queue Queue item to get specific Item from Queue.

  • @ketanwajekar2547
    @ketanwajekar2547 2 ปีที่แล้ว +1

    Hii mukesh ... Can I pass null value to the queue. Means I have dt with 5 column... sometimes data will be in 5 column.. sometimes will be in 3 and 2 column will not have data in row. So does queue allow null values? Please ans me

    • @MukeshKala
      @MukeshKala  2 ปีที่แล้ว

      Yes We can have a Value as Null

  • @ravindraprasad1119
    @ravindraprasad1119 2 ปีที่แล้ว +2

    it will read only 100 queue Item, how to get all item from the queue if we have 1000 item

    • @MukeshKala
      @MukeshKala  2 ปีที่แล้ว

      1. Read all the items and get the Count Say - 1000 -
      2. Loop through the Items using a Do While Loop till there are items available in Queue
      3. Inside do While- Use the Read Queue Items

  • @ganeshdhane2574
    @ganeshdhane2574 ปีที่แล้ว +1

    i want write queue item data in excel sheet how can i do ?

    • @MukeshKala
      @MukeshKala  ปีที่แล้ว

      You can read the content of queues and write it in dataTable … I am sharing a link for reference
      forum.uipath.com/t/write-queueitems-to-excel/187340/4

    • @ganeshdhane2574
      @ganeshdhane2574 ปีที่แล้ว

      @@MukeshKala thank you

  • @Ye_3timepagal
    @Ye_3timepagal 6 หลายเดือนก่อน +1

    Chalo one fatafat question i will ask..
    Whats the difference between Get Transaction items and Get Queue Items? Most confusing question

    • @MukeshKala
      @MukeshKala  6 หลายเดือนก่อน

      Get Transaction items will get the single transaction with New State
      Get Queue Items can get more than 1 transactions and has filters as well.
      Will try to come up with a video as well.

    • @Ye_3timepagal
      @Ye_3timepagal 6 หลายเดือนก่อน

      @@MukeshKala wa...thanks...waiting for the video

  • @shaiknabi4517
    @shaiknabi4517 2 ปีที่แล้ว +1

    HI, IAM GETTING THIS ("object reference is not set to an instance of an object ")ERROR PLZ RESOLVE

    • @MukeshKala
      @MukeshKala  2 ปีที่แล้ว

      This is because the object is Null ... Make sure the object is populated

  • @MaheshPatel-om5vq
    @MaheshPatel-om5vq 2 ปีที่แล้ว +1

    💯Mukes

  • @venkat3847
    @venkat3847 ปีที่แล้ว +1

    Sir, How to Extract Date from Queue

    • @MukeshKala
      @MukeshKala  ปีที่แล้ว

      Same way we are extracting string .. the only difference would be the output variable would be of datetime variable
      You can also get the value as string and then convert it to date time variable

    • @venkat3847
      @venkat3847 ปีที่แล้ว +1

      thank you sir, but the orchestrator date format will be like this Fri Nov 24, 2023, 08:00:00, and the excel date format is 24/11/2023.
      please suggest how to extract in this 24/11/2022 format from orchestrator.

    • @MukeshKala
      @MukeshKala  ปีที่แล้ว

      Read as it is from orchestrator in uipath studio and then we apply date conversion logic in studio …
      Dates can be easily converted from one format to another

    • @venkat3847
      @venkat3847 ปีที่แล้ว

      Thank you sir

  • @strittmm
    @strittmm 11 หลายเดือนก่อน +1

    This is pointless. Retrieving all queue items at once totally defeats the purpose of having queues in the first place.

    • @MukeshKala
      @MukeshKala  11 หลายเดือนก่อน

      Yes correct for transactional processing it does not make sense …

    • @michal4561
      @michal4561 8 หลายเดือนก่อน

      it allows you to make a report(er) based on queue items, it's not meant for the performer