Community Tip - Stay updated on what is happening on the PTC Community by subscribing to PTC Community Announcements. X
Hello,
I have a requirement where I need to introduce some information about the document in the ESI response file. Since the information which I want to introduce are not document attributes modifying esimetaInfo file is not an option. Please suggest me how I can introduce a custom renderer for documents.
Thanks in advance.
Regards,
Sha
Hi,
Usually we are doing it by extending the com.ptc.windchill.esi.esidoc.ESIDocumentsRenderer class. Then in a method protected Element adjustDocumentElement(Element elem, String paramString, Document document, Collection paramCollection) you can place you custom logic and modify the output. Some details you can get from ERPConnectorCustomizationGuide document. Plus you need to plug the custom renderer into properties via xconf. Property is "com.ptc.windchill.esi.rnd.ESIRenderer" located in service.properties file.
A.
Overriding adjustPartElement(Element, String, WTPart,List<Eff[]>, Collection) worked, not adjustPartElement(Element, String, WTPart,Eff[], Collection).
Thanks,
Sha