Forum Discussion

Former_Member's avatar
Former_Member
Accelerator III
9 years ago

.dll error while approving a workflow task in Aras 11.5

Hi, I am receiving the below error while approving a workflow task from My Inbasket - Could not find file "D:\Program Files\Aras\Innovaor\Innovator\Server\dll\zfrfub1q.dll". The dll directory in the above path is empty in my system, I am not able to find the cause of the issue. Request your help in resolving the issue at the earliest. Regards, Charita V

7 Replies

  • Hi, I am stuck with the above error and unable to proceed with my tasks. Can someone please let me know on how to resolve the issue. Thanks in advance!! Regards, Charita V
  • Charita, Are you using InnovatorSolutions or this is your own DB? Do you have any customization of ECO? When you are votings, the WORKFLOW is moving to next Activity? If so, next activity promoting the ECO state?
  • Hi Zahar, Thank you for your response. Yes, we are using InnovatorSolutions DB and there are few customizations on ECO at various workflow activities. By trial and error, I just figured out that there are few syntax errors in the methods and after correcting them, the above dll error did not occur resulting into the release of ECR. But in one of our other old Aras 9.2 server, I found that there are many .dll files (including .vb, .tmp, .pdb) in the above 'dll' directory where as in our new 11.5 server, the entire 'dll' folder is empty. Can you please let me know if the .dll files come as part of the Aras installation or through any custom codes and confirm if the error occurred only due to the syntax errors. Regards, Charita V
  • All files in dll folder are temporary files that represent "server side methods" of your method. This is something that you don't need to worry about.
  • Hi Zahar, Really appreciate your quick response and information provided! Thank you.
  • Hi Charita/ Zahar I am also getting same issue of dll. i am trying to write an simple VB script which gives me desire numbering system. Below is my VB script. Me.setProperty("item_number", Me.getProperty("comoodity_code","RAND").substring(0,3) & "-" & Me.getInnovator.getNextSequesnce("SOLA_Part")) i want to start part number depending upon "comoodity_code" property value.
  • Hi Sameerbaji, The .dll error occurs when there are syntax errors in the code. Please check if properties/method names are correct (like commodity_code, getNextSequence(), getInnovator() etc.) and double quotes are proper. For example, the code should be  - Me.setProperty("item_number", Me.getProperty("commodity_code","RAND").substring(0,3)&"-"&Me.getInnovator().getNextSequence("SOLA_Part")) Regards, Charita