Create a library where I can get the execution status, execution time and count of Data processed

I want to create a library where every one should be able to invoke in their framework and get following data in an excel:

Date Time
Count of items processed.
Username.
Status if Item is Success/Failed. If Failed Exception Details of the item failed
Environment Stage/Dev
Total time of Execution of Item Processed

How should I do this? It should run for all Frameworks.

Please help.

Thanks.

Hello! I hope you are feeling very well.

I am attaching a link to the official UiPath documentation which shows the step by step necessary to create the library.

Thankyou for your help. Will look into it. Can you also help me with query above.?

This is an example:

You can adapt it according to your needs:
filteredData = dataTable.AsEnumerable().Where(
Function(row) row.Field(Of String)(“Status”) = “Success” AndAlso
row.Field(Of String)(“Environment”) = “Dev”
).CopyToDataTable()

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.