IBM Sterling Transformation Extender

Sterling Transformation Extender

Come for answers, stay for best practices. All we're missing is you.


#Sterling
#Supplychain
 View Only
  • 1.  WTX on Z O/S

    Posted 06/02/08 05:57 AM

    Originally posted by: SystemAdmin


    Hello,

    I am new to Z O/S.The data format to be converted is defined in a MACRO.
    Can we directly create a type tree from a MACRO?
    Can anyone with previous WTX + Z O/S experience share the best practices in such engagements?

    Thanks in advance.
    #IBMSterlingTransformationExtender
    #DataExchange
    #IBM-Websphere-Transformation-Extender


  • 2.  Re: WTX on Z O/S

    Posted 06/04/08 09:27 AM

    Originally posted by: SystemAdmin


    Hi Pradnya,

    Could you be a little more specific? if your type tree is in a map you must compile the map for a specific platform "IBM(TM)z/OS". Once compiled in the directory where the mms resides will be a map with the extension "MVS", you then ftp this map in "Binary" format up to your PDS on the mainframe. Once there, JCL should be executed to run the map. below is some example JCL to run a simple map, 1 input card, 2 output cards.

    //$BILLV8 JOB (1101,315,464000),'DOE',
    // MSGCLASS=T,NOTIFY=DOE
    //*MAIN CLASS=S4,LINES=999,BYTES=999999,USER=DOE1
    //****************************************************
    //WTX EXEC WTXBATCH,
    // PARM='-@CMDLINE',
    // MAPLIB=T181.DOE.DEV.MAPS,
    // MAP=OCCXML
    //DTX.CMDLINE DD DSN=T181.DOE.DEV.CNTL(OCCCMDPL),DISP=SHR
    //DTX.MI1 DD DSN=T181.DOE.PAPERLSS.OCCINPUT,DISP=SHR
    //DTX.MO1 DD DSN=T181.DOE.PAPERLSS.OCCXMLOT,
    // DISP=(MOD,CATLG,DELETE),UNIT=SYSDA,
    // DCB=(LRECL=1035,RECFM=VB),
    // SPACE=(TRK,(10,10),RLSE)
    //DTX.MO2 DD DSN=T181.DOE.PAPERLSS.OCCCSVOT,
    // DISP=(MOD,CATLG,DELETE),UNIT=SYSDA,
    // DCB=(LRECL=1035,RECFM=VB),
    // SPACE=(TRK,(10,10),RLSE)
    //*

    here is the job card : OCCCMDPL

    MAPLIB
    -I1 MI1
    -O1 MO1 -O2 MO2
    /VX0D,X15 MO1 /VX0D,X15 MO2
    the load libs WTXBATCH.

    Hope this helps..
    -Steve Brock

    Message was edited by: sabrock

    Message was edited by: sabrock
    #IBMSterlingTransformationExtender
    #IBM-Websphere-Transformation-Extender
    #DataExchange


  • 3.  Re: WTX on Z O/S

    Posted 07/01/08 02:00 AM