Hi There,
I want to know what the standardization developer are needed to follow while developing code. Like, Naming conventions, Annotations, minimal use of If statements, etc.
Could you please mention all the TO DO’s & NOT TO DO’s
Thanks
Hi There,
I want to know what the standardization developer are needed to follow while developing code. Like, Naming conventions, Annotations, minimal use of If statements, etc.
Could you please mention all the TO DO’s & NOT TO DO’s
Thanks
@Muralikrishna_Surve
When developing code in UiPath, it is important to follow certain best practices and coding standards to ensure readability, maintainability, and efficiency. Here are some general recommendations for UiPath development:
TO DO’s:
NOT TO DO’s:
Hey @raja.arslankhan
Could you please give TO DO’s with examples for better understanding or else you can share any workflow if available.
TO DO’s:
Thanks
You can follow these playlist 1. UiPath RPA Developer Best Practices | Workflow Type in UiPath | RPA Projects | #shorts - YouTube. This playlist helps you in understanding of best practices and in implementation in projects also.
Regards
Naman Jain
When naming variables, arguments, and activities in UiPath, it is important to follow best practices for clear and meaningful names that are easy to understand and maintain. Here are some examples of naming formats to consider:
Variables:
customerName
, orderCount
, totalAmount
strCustomerName
, intOrderCount
, dblTotalAmount
localCustomerName
, globalOrderCount
Arguments:
inputData
, outputResult
in_CustomerData
, out_ResultData
, io_ResultData
configSettings
, transactionData
Activities:
Assign
, If
, For Each
, Invoke Workflow
AssignOrderTotal
, IfCustomerExists
, For EachRowInDataTable
, InvokeProcessWorkflow
Additional Tips:
str
for strings, int
for integers, or config
for configuration settings.Here are some best practices regarding the number of activities in a workflow:
Here are some alternatives of delay
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.