ibmCics.transform(new TransformOptions() .channel(<Channel>) .inContainer(<InContainer>) .outContainer(<OutContainer>) .transformer(<Transformer>) );
<Channel>The name of the channel holding the container. <InContainer>The name of the input container. <OutContainer>The name of the output container. <Transformer>Not currently used in AMT. The name of the JSON transformer to be used.
EXEC CICS TRANSFORM DATATOJSON CHANNEL(WS-CHANNEL) INCONTAINER(WS-INCONTAINER) OUTCONTAINER(WS-OUTCONTAINER) TRANSFORMER(WS-TRANSFORMER) END-EXEC.
ibmCics.transform(new TransformOptions() .channel(locDef.ws_Channel.getStrValue()) .inContainer(locDef.ws_InContainer.getStrValue()) .outContainer(locDef.ws_OutContainer.getStrValue()) .transformer(locDef.ws_Transformer.getStrValue()) );