I have noticed every now and then that UiPath robot (1.7 version at least) stops execution with SAP client. E.g. at last night SAP client throw connection error dialog to screen and UiPath robot totally stopped execution until I manually went and pressed OK for that connection error dialog. After that, robot was happy and continued execution. But during that dialog there was no errors from any selector etc. I assume that some timeout should be thrown exception already during that time?
I try to make a program that take the credential from orchestrator, and add queue item to orchestrator. The robot and the machine already connected and licensed, but i keep getting the same error while using get or add activity from/to the orchestrator.
“Folder does not exist or the user does not have access to the folder. Error code: 1100”
Hi,
I am not getting the response for the post method of HTTP request.I am getting the error like this.
{“error”:“invalid_request”,“error_description”:“AADSTS900144: The request body must contain the following parameter: ‘grant_type’.\r\nTrace ID: 3c1d7b99-8382-46a8-a02e-97a62f13bb00\r\nCorrelation ID: 68b8de0f-aaee-4ba5-8d73-20d74bd6d158\r\nTimestamp: 2019-11-29 06:08:07Z”,“error_codes”:[900144],“timestamp”:“2019-11-29 06:08:07Z”,“trace_id”:“3c1d7b99-8382-46a8-a02e-97a62f13bb00”,“correlation_id”:“68b8de0f-aaee-4ba5-8d73-20d74bd6d158”,“error_uri”:“https://login.microsoftonline.com/error?code=900144”}
i am facing the error while try to set assert from studio;
Error is: (Set Asset: Operation returned an invalid status code ‘Forbidden’). please help me in this.
th.Executor.Core i want to enter data into these from the excel Main.xaml (52.0 KB) this is my workflow can anybody say me y i am getting these error Error getting transaction data for Transaction Number: 0. The invoked workflow ‘GetTransactionData’ has validation errors. Please review the workflow and resolve the errors. at Source:
I’ve been this issue almost week. I really want to know what is the problem, please help me out!
I’ve got python script that handle with word proccessing. Given document file there are staff names. Below code is for find to staff names and looping for python dictionary(empList), if staff names found then append id to empty array(empID) . Below code is working fine in the python shell but problem is when i return empID to UiPath the response is null!
def getNames(filename=None):
empList = {
'name1': 'id1',
'name2': 'id2',
'name3': 'id3'
}
empID = []
doc = docx.Document(filename)
paragraphs = doc.tables[1]._cells[1].paragraphs
for i in range(len(paragraphs)):
encoded_object = paragraphs[i].text.encode(encoding='utf-8')
text = encoded_object.decode('utf-8','ignore')
result = re.search(r'[.]\w+', text)
names = text[result.start() + 1: result.end()]
for key, value in empList.items():
if names in key:
empID.append(value)
return empID
What I am trying to get
I am trying to URL encode a string in my workflow. What I did
I used this function: System.Web.HttpUtility.HtmlEncode(string)
What is the issue ?
I used this same function on my earlier project without any issue. But when I created a new workflow file ? Its showing issue… HttpUtility is not a member function of web. Below is the both project screenshot.
Hello,
I am trying to read and pull one DB trought if statement in order to test if cell is not empty.
dt_SLB_Page1.Rows(int_counter_row).Item(0).toString <>"" And dt_FI_Page1.Rows(int_counter_row).Item(0).toString <>""
If column is not empty in both of tables, then I am comparing them. If not, I am writing not empy one in excel:
Write Cell (dt_SLB_Page1.Rows(int_counter_row).Item(0).toString +dt_FI_Page1.Rows(int_counter_row).Item(0).toString).
Somehow I am getting thrown out at, with an error message:
If Column H: There is no row at position 61.
The column is empty indeed. There is no value, but it not the first empty column. Why is this happening and how to avoid this?
Second problem is, that cell written down trough else stemement - (when value is available only in one column) is saved in exel as text format. How can I change them to be saved as numebr format?
(dt_SLB_Page1.Rows(int_counter_row).Item(0).toString +dt_FI_Page1.Rows(int_counter_row).Item(0).toString)