i am trying to move the import files into archive location after the successful data load in TI process.
Below is the script i am using to archive the file, but unable to do that, when i run the same script through command prompt, i can do that.
Code: Select all
sScript = 'move /y ' ;
sImportdir = 'D:\TM1Model\Import\Test.txt ' ;
sArchivedir = 'D:\TM1Model\Archive\' ;
sCommand = sScript | sImportdir | sArchivedir ;
EXECUTECOMMAND( sCommand , 0 ) ;
Cheers