‎2009 Jun 01 5:34 AM
hi,
using gui_download i am downloading internal into a excel sheet. I am giving field names into another internal table and giving in the function module like this
CALL FUNCTION 'GUI_DOWNLOAD'
EXPORTING
filename = Filepath
filetype = 'ASC'
append = 'X'
write_field_separator = '#'
TABLES
data_tab = ALV_OUT[]
fieldnames = git_fields.
but in the column names if i gave fielname as " previous confirmed qty"..it is displaying only part of it like "previous confirmed"...why is this happening
‎2009 Jun 01 5:47 AM
Hi
There is a limitation for the Fieldname (Column Name) from GUI_DOWNLOAD
‎2009 Jun 01 5:47 AM
Hi
There is a limitation for the Fieldname (Column Name) from GUI_DOWNLOAD
‎2009 Jun 01 5:53 AM
‎2009 Jun 01 6:04 AM
How did you declare your internal table for fieldnames ?
try this.
DATA : BEGIN OF it_join_fields OCCURS 0,
field_name(25),
END OF it_join_fields.
CALL FUNCTION 'GUI_DOWNLOAD'
EXPORTING
filename = file_name
filetype = 'ASC'
append = 'X'
write_field_separator = 'X'
TABLES
data_tab = it_join
fieldnames = it_join_fields
.
‎2009 Jun 01 6:08 AM
‎2009 Jun 01 6:26 AM
paste ur declaration of ur itab...increasing ur field size might solve your problem !!!
‎2009 Jun 01 6:01 AM
Hi,
61 text-062, "Customer Name1
As above use Text symbol.
text-006 TO wa_excel_tab-name1 ,
Revert if any doubts.
Manas
‎2009 Jun 01 6:07 AM
‎2009 Jun 01 6:07 AM