Extract more than 10000 characters from UiPath App Dashboard

Hi Community,

I have a UiPath App dashboard which gets pouplated as per user’s filtered data. The challenege I am facing is while exporting this Data to excel. If data is less (below 10000 characters), it gets exporetd easily with the help of RPA process but when it is gretaer, it throws below error. Does anyone has a solution to this?

1 Like

@tilarapiyush

Are you sending datatable? if yes then you can split the datatable into multiple chunks of 10000

cheers

Right, I am trying to do that. But not sure how to achieve this ?

@tilarapiyush

The InputArguments field in UiPath Apps is limited to 10,000 characters, and passing more than that results in errors
if we have more than 10000 character then instead displaying data provide link or button to download the data from storage bucket

@tilarapiyush

skip and take are the functions

cheers

DataTable is supposed to be passed from UiPath App to Excel (updated by RPA process). thi sis not happening due to 10000 character limit. How do I pass Datatable directly to Storage bucket?

@tilarapiyush from where this data is coming in UiPath App?

Data is coming from data service

@tilarapiyush instead off passing data from App. Try to fetch data from data services in your automation itself like you did it in apps

AND condition is working differently for App and Data Service.

Filter in App with Sales Org (rest all fields blank) provides result.

Filter in Data Service, we can’t keep any field blank.

@tilarapiyush fetch all data in a datatable and try to filter it

I already have filtered datatable via App. I just need to pass it to RPA process so that it can be written in excel and shared with user.

@tilarapiyush Its happening because of large amount of data. Instead passing data, Fetch data in your process again, filter it the same way like you did it in apps - you can provide filter values to process itself