View previous topic :: View next topic |
Author |
Message |
rajeshkoratti Beginner
Joined: 14 Feb 2006 Posts: 42 Topics: 22
|
Posted: Tue Jun 12, 2007 3:29 am Post subject: Truncation Problem while Transmitting files from MVS to VM |
|
|
Hi All
I am creating a file by running a JCL and the same file i am sending it to a VM machine through the OUTPUT and DEST commands
//MSGFILE DD SYSOUT=*,OUTPUT=*.OUT
//OUT OUTPUT DEST=NodeName.MachineName
This will create a file referred by the DD name MSGFILE and send it to the VM Machine.
But unfortunately in the VM side the file is getting truncated by at 204 bytes. while my file that im sending is more 500 bytes.
Is there anyways by which i can send an non truncated file.
One of the possible solutions is using the XMIT command, but while usinf XMIT it makes the class of the file as B and sends it. Is there any ways i can override this.
I would really appreciate any adivce or pomiters in this regard.. _________________ Thanks and Regards..
Rajesh |
|
Back to top |
|
 |
Phantom Data Mgmt Moderator

Joined: 07 Jan 2003 Posts: 1056 Topics: 91 Location: The Blue Planet
|
Posted: Tue Jun 12, 2007 9:26 am Post subject: |
|
|
RajeshKoratti,
Just a wild guess....can you try this...
Code: |
//MSGFILE DD SYSOUT=*,OUTPUT=*.OUT,DCB=(LRECL=500,RECFM=FB)
|
Thanks,
Phantom |
|
Back to top |
|
 |
|
|