I'm doing my due diligence while working on a custom solution for converting EBCDIC files, and found that Alteryx has a solution for this already. However, I can't seem to get it to work.
The functionality is defined in the 'Binary Flat Files' help page here: https://help.alteryx.com/current/BinaryFlatFiles.htm
And there was one previous thread I found here: Need-to-parse-mainframe-file-that-contain-packed-decimals
The file I'm reading was transferred from Mainframe to Windows platform as binary transfer:

And my .flat file is defined as:
<flatfile version="2">
<file eoltype="none" allowShortLines="f" allowLongLines="f" trimWhiteSpace="f" />
<fields>
<field name="PIB" type="Int16" length="2"> <translate type="Integer" ByteOrder="LE" Signed="False"/> </field>
<field name="Text" type="V_String" length="11"> <translate type="Text" CodePage="37" /> </field>
<field name="Packed" type="Int32" length="4"> <translate type="BCD"/> </field>
<field name="Filler" type="V_String" length="63"> <translate type="Text" CodePage="37" /> </field>
</fields>
</flatfile>
However, when I run these through the 'Input Data' tool it seems to ignore the 'translate' tag and attributes, and the result is the same as running without it, defaulting to using the 'Code Page' translation that is selected by defaut. Is there something I'm missing to set up the tool to read using the XML?
Thanks,
Cameron