2008 May 14 9:44 AM
i would like to create a CSV file with text in all cell for a BDC report.
2008 May 14 10:27 AM
hi,
There are different ways in creating a CSV file. The RIGHT way is to use the function SAP_CONVERT_TO_CSV_FORMAT. You can just go thru the function, everything is clear. To complete, for every convert fuction there is an equal and opposite convert function, so is TEXT_CONVERT_CSV_TO_SAP.
Otherwise, you can create an internal table with one char field of size as required and try to concatenate all values with the required delimiters and so put into this internal table and download this table.
But the RIGHT way is to use the function. Hope this could help you
reward points if helpful.
i would like to create a CSV file with text in all cell for a BDC report.
2008 May 14 10:27 AM
hi,
There are different ways in creating a CSV file. The RIGHT way is to use the function SAP_CONVERT_TO_CSV_FORMAT. You can just go thru the function, everything is clear. To complete, for every convert fuction there is an equal and opposite convert function, so is TEXT_CONVERT_CSV_TO_SAP.
Otherwise, you can create an internal table with one char field of size as required and try to concatenate all values with the required delimiters and so put into this internal table and download this table.
But the RIGHT way is to use the function. Hope this could help you
reward points if helpful.