2. UiPath RPA Use Case : Create Card | ReFramework without Orchestrator Queue | With Excel Datatable

Поделиться
HTML-код
  • Опубликовано: 25 янв 2025

Комментарии • 52

  • @MukeshKala
    @MukeshKala  2 года назад +2

    This Use case is divided into 2 Parts. This is the Part 2 of the video -
    👉 👉 👉 Link to the Part 1 : ruclips.net/video/JTmT_IWeFE0/видео.html

  • @shubhamdubey5438
    @shubhamdubey5438 2 года назад +4

    One of the best use case found on ReFramework so far on youtube. Thanks for sharing. Keep up the good work.

    • @MukeshKala
      @MukeshKala  2 года назад

      Thank you Shubham for your feedback 🤩

  • @SyedAli-iq4ku
    @SyedAli-iq4ku Год назад +2

    So helpful and I really enjoy your series, Thank you so much.

  • @priyasworld1525
    @priyasworld1525 2 года назад +2

    Best teacher in the world

    • @MukeshKala
      @MukeshKala  2 года назад

      That's a Huge Compliment .. However Thank you 😀

  • @divyanathk.r7157
    @divyanathk.r7157 7 месяцев назад +2

    Hello, I have to mention that your videos are incredibly helpful. I have one question, when creating the flow inside the process workflow, such filling out employee information in word file, should I encapsulate the complete activities in a try catch?

    • @MukeshKala
      @MukeshKala  7 месяцев назад

      Fo this use case , we should encapsulate functionality wise and not individual
      The idea is simple - if in case the filling form fails for any of field i want to do the same action/ exception so i would like to put all of them in one sequence and then put that sequence in try catch
      But let say for each and every field failure , i want a different exception - then individual try catch

  • @madhushalinitv3120
    @madhushalinitv3120 10 месяцев назад +2

    Hi Sir its good learning, i am always following ur video for a long time ...here i am facing issue in getting the image.i have used Directory.Getfiles(in_Config("ImgFolderPath").ToString, Str_EmpCode +" .jpg").FirstOrDefault...i am getting error that image is not available for all the 16 members

    • @madhushalinitv3120
      @madhushalinitv3120 10 месяцев назад +1

      I am using uipath community edition 2024.2.1

    • @MukeshKala
      @MukeshKala  10 месяцев назад

      The path you have mentioned seems incorrect .." .jpg" There is a space before jpg , Before this activity , try to print the path in writeline and see if you are able to print the correct path

    • @madhushalinitv3120
      @madhushalinitv3120 10 месяцев назад

      Yes I got it sir thank you

  • @shrutimugli2437
    @shrutimugli2437 9 месяцев назад +1

    This was really a very clear and detailed explanation of concept. Was able to follow along. And everything worked as expected but after 3rd transaction 4th transaction took lot of time and never completed. As it’s my first time learning I am not sure why it’s not processing further. Could you please explain the reason and how I can resolve this? There are no exceptions

    • @MukeshKala
      @MukeshKala  9 месяцев назад

      There might be multiple reasons for that - i would recommend run the automation in debug mode and see which activity is taking tat extra time .

    • @shrutimugli2437
      @shrutimugli2437 9 месяцев назад

      Yes I did that but nothing is displaying even in the debug mode it just showing “ processing transaction 4”

  • @LuisHazel-u3q
    @LuisHazel-u3q 10 месяцев назад +1

    hi sir,i have an issue, none of my throw activities for some reason do not work, any idea?

    • @MukeshKala
      @MukeshKala  10 месяцев назад

      Run the automation in debug mode and see where the flow is going

  • @sohilbagwan2769
    @sohilbagwan2769 2 года назад +1

    image not reflect on docs sir its get change position how to handle for office 2010

    • @MukeshKala
      @MukeshKala  2 года назад

      1. Try updating the word package .
      2. Try with a new document.
      3. Run the automation in debug mode and see which activity is causing the issue.

  • @saikirank5683
    @saikirank5683 Год назад +1

    Hello Mukesh Kala Garu Good Evening. I have a doubt which is, you have given replacement images with Emp_Code right. But there were no images that hadn't saved by emp_code, how could you match with emp_code. Bot doesn't know who is male and female how can it validate? There were no any common validations between images and emp_code.

    • @MukeshKala
      @MukeshKala  Год назад

      You can add the gender in the image name , also for one emp_code there would be always only 1 employee .... 2 employees cannot have same empcode

    • @saikirank5683
      @saikirank5683 Год назад +1

      @@MukeshKala My question is how can bot understand this empcode is that image only? Because of there are no any common identity. Images weren't saved by empcode.

    • @MukeshKala
      @MukeshKala  Год назад

      How do we identify it manually?

    • @saikirank5683
      @saikirank5683 Год назад

      Yeah, that's my question. For example, i would change the image order in the images folder. i don't want to put it which you was giving me in an order. So, is bot can understand that emp is this image?@@MukeshKala

  • @ramees662
    @ramees662 2 года назад +1

    Why my RE processing same Row in whole Transaction

    • @MukeshKala
      @MukeshKala  2 года назад

      Because your transaction number is not getting incremented .. run Thea automation in debug mode and you will get your answer

  • @pavanshetty6012
    @pavanshetty6012 Год назад +1

    i am getting error message "Replace Picture: Value cannot be null. (Parameter 'path')" what does this mean?

    • @MukeshKala
      @MukeshKala  Год назад +1

      The Path of the Picture in not proper - Run in debug mode and see the variable values.

  • @MohdIrshad-hv4vw
    @MohdIrshad-hv4vw 2 года назад +1

    great

  • @rpa6646
    @rpa6646 2 года назад +1

    Hello Sir, in the save as document file path to save as I wrote Path.Combine(in_Config("FolderForCards").ToString.str_empcode+".docx") but I am getting error str_empcode is not a member of string. However I already declared the argument str_empcode as a string. Kindly suggest how to overcome the error.

    • @MukeshKala
      @MukeshKala  2 года назад +1

      It should be comma not a dot before the str_empcode

    • @rpa6646
      @rpa6646 2 года назад +1

      @@MukeshKala ThakYou

  • @jagadeeshjaddu7333
    @jagadeeshjaddu7333 2 года назад +1

    Hi sir,
    Could you please upload a video on extracting data along with line items from unstructured invoices using regex.

    • @MukeshKala
      @MukeshKala  2 года назад +4

      Hello, Thank you for suggesting this - Let me try to bring some use case on this .

    • @SyedAli-iq4ku
      @SyedAli-iq4ku Год назад

      ​@@MukeshKalathanks for your concern about this.

  • @rpa6646
    @rpa6646 2 года назад +1

    Sir,I have one more error. In the Get Transaction Item, I am getting error Process finish due to no more transaction. My word document did not get replaced with the name, bloddgroup etc.

    • @MukeshKala
      @MukeshKala  2 года назад +1

      This means there are no transactions in the excel files to process , For the Replacement thing - Run the Automation in Debug Mode and see why its not working.

    • @rpa6646
      @rpa6646 2 года назад +1

      @@MukeshKala ok sure let me do that

  • @muthyalareddyvemireddy1460
    @muthyalareddyvemireddy1460 2 года назад +1

    Id Card Generate And Hr Offer Letter Also Can Make Video How rectify Thar Error Please......

    • @MukeshKala
      @MukeshKala  2 года назад +1

      You need to create the solution in new Framework , Also try to leverage UiPath Forum - You will Understand to tackle Errors.

  • @girishkrishna4654
    @girishkrishna4654 Год назад +1

    Send SMTP Mail Message: An error occurred while attempting to establish an SSL or TLS connection.
    The server's SSL certificate could not be validated for the following reasons:
    • The server certificate has the following errors:
    • The revocation function was unable to check revocation for the certificate.
    I'm getting the above error.

    • @MukeshKala
      @MukeshKala  Год назад

      This is something to do with the smtp details you are using .. Also pls check if you are not behind some firewall and network restrictions should not be there

    • @girishkrishna4654
      @girishkrishna4654 Год назад +1

      @@MukeshKala if I am, how to overcome it.

    • @MukeshKala
      @MukeshKala  Год назад +1

      You need to ask your network team to provide you the access to send mails outside the network

  • @priyeshshetty6520
    @priyeshshetty6520 Год назад +1

    Mukesh bot is repeating same name,designation in all the id's................photos are different

    • @MukeshKala
      @MukeshKala  Год назад +1

      The robot might not be Picking the correct transaction … run the automation in debug mode , put a break point in process transaction and see the values

  • @msrgaming6643
    @msrgaming6643 Год назад +1

    Completed this project, so many things i tried to do with my own, and learnt so many things like how to work with excel, increament, and STATUS Updation, Thank you so much @MukeshKala sir..🫡

  • @muthyalareddyvemireddy1460
    @muthyalareddyvemireddy1460 2 года назад +1

    Job stopped with an unexpected exit code: 0xE0434352
    Hi Mukesh I am Following Scratch To end your Video and Practice when i am Excute The Project through Above error

    • @MukeshKala
      @MukeshKala  2 года назад

      Update the packages to latest version and create a fresh solution