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.  shell script adapter

    Posted 02/17/09 01:03 PM

    Originally posted by: malag


    can anybody tell me how to use a shellscript adapter to compile all the maps in a particular location?
    #IBM-Websphere-Transformation-Extender
    #DataExchange
    #IBMSterlingTransformationExtender


  • 2.  Re: shell script adapter

    Posted 02/18/09 03:40 AM

    Originally posted by: paul.brett


    You cannot compile maps on the Unix platform, and therefore you cannot use the shell script adapter to compile maps.

    You could use a combination of the Batch adapter and the mcompile utility to compile maps on the Windows platform, but this forum is not the place to discuss batch file programming.

    Paul.
    #DataExchange
    #IBM-Websphere-Transformation-Extender
    #IBMSterlingTransformationExtender


  • 3.  Re: shell script adapter

    Posted 02/18/09 09:22 AM

    Originally posted by: Kepa_Screen


    You could use a Ms-Dos batch file like this:
    You must put it at mms source files, directory, this would recompile all maps at this directory.
    
    del compilar.log 
    
    for %%K in (*.mms) 
    
    do 
    "C:\Program Files\IBM\Websphere transformation extender 8.1"\mcompile %%K -a -k -p aix -e -log >> compilar.log
    


    All details for the compilation result will go to "compilar.log" file.
    #IBM-Websphere-Transformation-Extender
    #DataExchange
    #IBMSterlingTransformationExtender