Forum Discussion
7 Replies
- Former_MemberAccelerator IIIHi, 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
- Zahar_ChernovCreator IICharita, 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?
- Former_MemberAccelerator IIIHi 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
- Zahar_ChernovCreator IIAll 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.
- Former_MemberAccelerator IIIHi Zahar, Really appreciate your quick response and information provided! Thank you.
- sameerbajiIdeator IIHi 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.
- Former_MemberAccelerator IIIHi 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