CSV文件是逗号分隔符格式的文件。将内表数据下载成CSV文件到本机上要先将内表中的数据通过函数SAP_CONVERT_TO_TEX_FORMAT转换成CSV格式,然后再下载到本机。 REPORTz_download_csv.TYPE-POOLS: truxs.*&---**& Data Types*&---*TYPES:BEGINOFty_spfli, carridTYPEspfli-carrid, connidTYPEspfli-connid, ...
SAP Managed Tags: ABAP Development change the declaration of to gt_text data : gt_text type table of TRUXS_T_TEXT_DATA. data : filename like rlgrap-filename. filename = 'C:test.txt'. and also specify a filename for CALL FUNCTION 'SAP_CONVERT_TO_TEX_FORMAT' EXPORTING i_field_seper...
CSV文件是逗号分隔符格式的文件。将内表数据下载成CSV文件到本机上要先将内表中的数据通过函数SAP_CONVERT_TO_TEX_FORMAT转换成CSV格式,然后再下载到本机。完整代码:REPORT z_download_csv. TYPE-POOLS: truxs. *&---* *& Data Types *&---* TYPES: BEGIN OF ty_spfli, carrid TYPE spfli-carrid, ...
SAP Managed Tags: ABAP Development Hi, I want to convert internal table data to text format with separated field by '~' symbol I used SAP_CONVERT_TO_TEX_FORMAT Function Module in case of large data like 80k or more that's not working. is there any other function module available for ...
SAP Managed Tags: ABAP Development Hi All, I am having an issue with the FM SAP_CONVERT_TO_TEX_FORMAT in which I am using field seperator as Comma(,). some of my data is having comma in the value for ex. Description as BOLT,Small. In this function module it is separating the val...