Hello people!
I hope you are all well!
Guys, want to bring programs Natural environment for Mainframe Linux since reactivate an old system.
Could please give us some hint as to both the unload programs on Linux as the load on the Mainframe?
Many thanks and hugs to all!
Marcos
It’s important to remember the TRANSFER option when porting across platforms. Here’s a sample of a mainframe unload. On the target you can use a LOADALL.
//SYSOBJHU EXEC NATBT,DEPT=ZZ,DB=DEVL,SYSOUT=N,TIME=50,
// PRM='AUTO=ON,MADIO=0,MAXCL=0,MT=0,IM=D'
//CMPRINT DD SYSOUT=*
//SYSIN DD *
%Q
SYSOBJH
UNLOAD MYPGM LIB MYLIB OBJTYPE N WHERE TRANSFER
FIN
/*
//*
//CMWKF01 DD DSN=RGZ.PGM,
// DISP=(NEW,CATLG,DELETE),
// UNIT=SYSDA,
// RECFM=FB,
// LRECL=102,
// SPACE=(TRK,(45,45),RLSE)
One thing to note;
Only sources can be transferred, so if you have the objects only for parts of or the whole “old system” then you are out of luck.