Hi B,<br><br>Ive used this approach with MVS/COBOLII, I'm sure it will work with VSE. <br><br>P.S. I don't know why this post doesn't align properly; my apologies anyway.<br> <br><br>W S.<br><br>01 my-wrk-fld.<br> 05 my-packed-fld pic 9(004) comp-3.<br> 05 filler pic x(001) value x'0C'.<br>01 my-packed-wrk-fld redefines<br> my-wrk-fld pic 9(005) comp-3.<br><br>01 my-unpacked-fld pic 9(005). <br>01 redefines my-unpacked-fld.<br> 05 my-display-fld pic x(004).<br> 05 fil pic x(001).<br><br>P D.<br><br>move your-packed-fld to my-packed-fld<br>move my-wrk-fld to my-unpacked-fld<br>inspect my-display-fld converting x'FAFBFCFDFEFF'<br> to 'ABCDEF'<br>DISPLAY 'PACKED FIELD >' my-display-fld '<'<br><br><br>The idea is to get the numerics to look like Fn. The unpack (move #2) does that but leaves you with FAs FBs, etc. inspect/convert changes them to C1s C2s etc.<br><br>Hope this helps. If you have any Ques or comments, fire away.<br><br>Regards, Jack <br>