I want to transmit load library to another system. I was using XMIT/RECEIVE for doing this, but now I have problem with this procedure (my load library is very big - may be that is the problem).
Original load library has this parameters: RECFM=U,RECLEN=0,BLOCK=32768,PRIM=9217,SEC=16
XMIT INDATASET(TEST.LOAD) OUTDATASET(TEST.XMI)
XMI is successfully generated, but when I call receive:
RECEIVE INDATASET(TEST.XMI)
DA(TEST2.LOAD)
The result (TEST2.LOAD) has different parameters than original library: RECFM=U,RECLEN=0,BLOCK=32756,PRIM=9120,SEC=23704(!!!)
I can't receive this XMI on another system (Allocation failed for IEBCOPY INPUT file - INMR071I) - I think that secondary blocks count is problem.
I am using z/OS V1R7.0.
Thanks in advance