🔴 2. LIVE | UiPath Code Review | Coding Best Practices | Development | Beginners | RPA Conversation

Поділитися
Вставка
  • Опубліковано 8 лис 2024

КОМЕНТАРІ • 36

  • @Mohit-s1k9l
    @Mohit-s1k9l 9 місяців тому +3

    I really love the way you demonstrate each and every aspect of the Project. This kind of mentorship is really helpful in Realtime Project.
    I appreciate your effort and support for everyone.

    • @MukeshKala
      @MukeshKala  9 місяців тому

      You're very welcome!

  • @smnamng
    @smnamng 2 роки тому +2

    hey Mukesh, i just want to say that I love all of your advices. they help me a lot on my first step with Uipath

    • @MukeshKala
      @MukeshKala  2 роки тому

      Thank you for your comment , All the Best for your learning - Glad videos are helping out.

  • @RahulKumar-qy2kj
    @RahulKumar-qy2kj 2 роки тому +2

    Nice video Mukesh .

  • @crazyvenky1258
    @crazyvenky1258 Рік тому +2

    I have learned some good things with this video content.
    Mukesh as you said if we have 1000 of records and we don't utilize orchestrator queue even we can process with multiple robots right. If we use orchestrator if will add the status so we can identify but we don't use this we can write a code tk move that file/invoice to another folder to give hint for a robot for processed record.
    At the Beginning you have mentioned we can use Re-framework but if we have used linear process then we can use global handler right. In that we can specify clearly if we get exception and retry for 2 times or as preference.
    If I'm not wrong global handler can only get connected to main xaml right.

    • @MukeshKala
      @MukeshKala  Рік тому +1

      Yes Global Handler can be connected to main xaml and we only can have 1 in 1 Project

  • @ak16vlogs69
    @ak16vlogs69 2 роки тому +3

    Hi Mukesh, thank you providing such useful content everytime.. wish you a very successful life ahead.
    Could you please tell me ho we do reporting in actual projects.
    I mean how to send report every day about the pass fail or status to client by end of the day .
    Like dashboard other than insight

    • @MukeshKala
      @MukeshKala  2 роки тому +1

      1. You can create Reporting Robots for the Process which again can be scheduled.
      2. Make use of Monitoring Tab in Orchestrator , Export and Send.

    • @ak16vlogs69
      @ak16vlogs69 2 роки тому

      @@MukeshKala Could you please provide any link/video/document/url for reporting bot

  • @eerlaramakrishna2777
    @eerlaramakrishna2777 2 роки тому +1

    Best video bro.. tq ....how to loop each row dynamically. Can you help me

    • @eerlaramakrishna2777
      @eerlaramakrishna2777 2 роки тому +1

      Get Each row value of excel it should be dynamically

    • @MukeshKala
      @MukeshKala  2 роки тому +1

      For Each Loop can work here - It will take all the items one by one , when you say dynamic - How would the bot know which row to read - whatever the conditions you have - put that inside for each.

    • @eerlaramakrishna2777
      @eerlaramakrishna2777 2 роки тому +1

      @@MukeshKala read total rows

    • @MukeshKala
      @MukeshKala  2 роки тому +1

      @@eerlaramakrishna2777 Simple Read Range would Work here - In the Range Just put the starting Cell and UiPath will automatically read all the Rows in Excel - Sharing a video for Reference : ua-cam.com/video/qhqBjjZmxpc/v-deo.html

    • @eerlaramakrishna2777
      @eerlaramakrishna2777 2 роки тому

      @@MukeshKala sorry I want to read each subject of each student after filtering only to subjects. Row by row ...how to increase the count
      I used one for each datatable and another for each row
      Currentrow(item.tostring).tostring got values but how to increase count by each student row

  • @dattaveeravalli2446
    @dattaveeravalli2446 2 роки тому +1

    Hi Mukesh,
    In this session you told use multiple bots to run thousands of invoice to save time but, I have dought these multiple bots run in same mechine or multiple mechines? Mukesh

    • @MukeshKala
      @MukeshKala  2 роки тому

      Different machine if they are normal window machine ... However there is a Concept of high density robots .. where multiple robots can run in same machine

  • @Vijay_0815
    @Vijay_0815 2 роки тому +2

    My question is... I have multiple data, so I need to increase Robots ...
    Bot is running based on queues, I have 5 Robots, After the completion of entire process, I need to send an email to the business...
    I don't want 5 mail's from 5 bots .. I need single mail ..
    How can I approach the scenario....
    Please help me...

    • @MukeshKala
      @MukeshKala  2 роки тому +1

      Create a new robot say reporting … which will trigger once all the others are completed … in this .. read all queue items , write in excel and attach in email

  • @yashobantadash6670
    @yashobantadash6670 2 роки тому +1

    great video bro! very helpful ✌✌😊😊🙌🙌

  • @jibankumardas7134
    @jibankumardas7134 2 роки тому +1

    12:47 The retrigger scenario- please explain me the solution, how to process the unprocessed data or newly added data or the data that need to be processed ?

    • @MukeshKala
      @MukeshKala  2 роки тому

      Add All Transactions to the Queue .. UiPath Queue will only process the item with New Status

  • @royroshan821
    @royroshan821 2 роки тому +1

    Hi Mukesh
    Can you tell that every invoice are in same format and the number of data row in each invoice are same or different?

    • @MukeshKala
      @MukeshKala  2 роки тому

      Format is Same , Number are different

  • @dattaveeravalli2446
    @dattaveeravalli2446 2 роки тому +1

    Hi Mukesh,
    Even though retry mechanism retries maximum number of retries and aslo got system exception....then what the bot do's next?

    • @MukeshKala
      @MukeshKala  2 роки тому +1

      Mark the Item as Faulted and move to the Next one .

  • @malipeddikrishnamanoj2159
    @malipeddikrishnamanoj2159 2 роки тому +1

    Hi Small doubt ID card generator
    can i use the RE framework original template.
    in Init (First run) can i use read range and add bulk item into queue by specifying the output_datatable.
    So i will handle bussiness exception using try catch and rethrow it
    will it work ?

    • @MukeshKala
      @MukeshKala  2 роки тому

      Yes It will work but the INIT Transaction does not have the business exceptions handled ... Also yif you notice the transition is only for system exception and that goes to end Process - Hence you need to add Transition for Business exception as well

    • @malipeddikrishnamanoj2159
      @malipeddikrishnamanoj2159 2 роки тому

      @@MukeshKala : we are using dispatcher in init (first run) to load the data from Excel . from the get-transaction data we will get each transaction item and later in the same way how you have handled the HR --business exception and system exception in process we can configure right.

  • @yashobantadash6670
    @yashobantadash6670 2 роки тому +1

    how to add many robots to my queue?there is no option to add new robots in queue bro.it is not showing to add any robots. confused here

    • @MukeshKala
      @MukeshKala  2 роки тому +1

      When Scheduling the Process , Select More than one Robot in the Scheduler

    • @yashobantadash6670
      @yashobantadash6670 2 роки тому +1

      @@MukeshKala but there is no option called add more robots either in time trigger or queue trigger section bro. i have the 22.4 enterprise trial edition

    • @MukeshKala
      @MukeshKala  2 роки тому

      @@yashobantadash6670 you are in Modern Folder now .. that's why ... See this video
      ua-cam.com/video/M3Y3cZ408pg/v-deo.html