I have created a process, the data source is a text file. All the settings I made in the dialog boxes, creating variables, set delimiters.
The process reads data from a file and writes out to another file. It works.
Is it possible to specify a data source, delimiters in the code without dialog boxes? For example using the function:
Code: Select all
strPath = GetProcessErrorFileDirectory;
File = strPath | 'tm1server.log';
DataSourceType='CHARACTERDELIMITED';
DatasourceNameForServer=File;
DatasourceASCIIDelimiter=' ';
DatasourceASCIIQuoteCharacter='';