2007 Aug 28 6:54 PM
I am trying to use FM SAP_CONVERT_TO_CSV_FORMAT but when I declare an internal table of type TRUXS_T_TEXT_DATA I get a syntax error. I do not have that type installed in the system.
Davis
2007 Aug 28 7:04 PM
Hi use type pools.. like this it will work
<b>TYPE-POOLS : truxs.</b>
DATA : i_tab_converted_data TYPE truxs_t_text_data.
Thansk
Mahesh
I am trying to use FM SAP_CONVERT_TO_CSV_FORMAT but when I declare an internal table of type TRUXS_T_TEXT_DATA I get a syntax error. I do not have that type installed in the system.
Davis
2007 Aug 28 7:04 PM
Hi use type pools.. like this it will work
<b>TYPE-POOLS : truxs.</b>
DATA : i_tab_converted_data TYPE truxs_t_text_data.
Thansk
Mahesh
2007 Aug 28 7:08 PM
2007 Aug 28 7:05 PM
Hi,
In the top inlcude declare
type-pools: truxs.
Then you will not get the error
aRs
2007 Aug 28 7:06 PM
Hi Davis,
Declare this in your program:
TYPES truxs_t_text_data(4096) TYPE c OCCURS 0.
And then refer this for your table..
Or you can define your own table like this only..
DATA : itab_out(4096) TYPE c OCCURS 0.
Thanks and Best Regards,
Vikas Bittera.
**Points for useful answers**