brkarthikeyan
New Member
i'm exporting data using PUT statement which has 120 columns. After 991 th character a line break (it can be viewed as rectangular box) is created automatically.
Code snippet:
PUT STREAM csv UNFORMATTED '"'
'ID' '","'
'Code' '","'
'Desc' '","'
Output:
If my 991 th character is in some column say "Hello"
then it is displaying as He
llo when i open it in textpad and rectangular box in excel.
Code snippet:
PUT STREAM csv UNFORMATTED '"'
'ID' '","'
'Code' '","'
'Desc' '","'
Output:
If my 991 th character is in some column say "Hello"
then it is displaying as He
llo when i open it in textpad and rectangular box in excel.