But my required outfile should NOT have any 'Line Feed' or 'Carrige Return' etc. and my output file should look like:Record1
Record2
Record3
.....
Is there a way in TM1 by which I can achieve that?Record1Record2Record3.....
Please help!!
But my required outfile should NOT have any 'Line Feed' or 'Carrige Return' etc. and my output file should look like:Record1
Record2
Record3
.....
Is there a way in TM1 by which I can achieve that?Record1Record2Record3.....
Code: Select all
# Prolog
DatasourceASCIIQuoteCharacter='';
DatasourceASCIIDelimiter='';
Record = '';
# Metadata
Record = Record | <Cube data / elements / something>;
# Data
# Epilog
ASCIIOutput('SAP.txt', Record);
There are a few issues with that.olapuser wrote:ExApplix,
Simple TI can do thatCode: Select all
# Prolog DatasourceASCIIQuoteCharacter=''; DatasourceASCIIDelimiter=''; Record = ''; # Metadata Record = Record | <Cube data / elements / something>; # Data # Epilog ASCIIOutput('SAP.txt', Record);
True.Alan Kirk wrote:Lotsa's suggestion of using a post-generation script is really the only way to do this.