Document Generation Token Mapping Method Custom Class instead Dataraptor I have a Vlocity Document Template which needs to fill through a custom class. (Token Mapping Method).When a run the doc generation by OmniScript (client-side), the document tokens are filled with blanks. I don´t know what´s wrong. Anybody can help me? The Custom Class is below. global without sharing class PME_QuotePDF implements vlocity_cmt.VlocityOpenInterface2{ global Object invokeMethod(String methodName, Map<String, Object> input, Map<String, Object> output, Map<String, Object> options) { Boolean success = false; try{ if (methodName == 'getTokenData'){ getTokenData(input, output, options); success = true; } } catch (Exception e){