Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Problem in CALL METHOD CL_GUI_FRONTEND_SERVICES=>GUI_DOWNLOAD

Former Member
0 Kudos

hello ABAP gurus,

i am using CALL METHOD CL_GUI_FRONTEND_SERVICES=>GUI_DOWNLOAD

to download data with fieldlables as headers.but data is diplaying as bellow while using CALL METHOD CL_GUI_FRONTEND_SERVICES=>GUI_DOWNLOAD

example:

customer

name1

land1

111 mahi bangalore

112 ram pune

please help me its very urgent.

Regards

Mahesh

1 REPLY 1

former_member223537
Active Contributor
0 Kudos

Hi,

The structure of the header table should not be only a single column.

It should have the exact no. of columns which you want to download.

Types : begin of header,
             cust(30) type c,
             name(25) type c,
             land(20)   type c,
           end of header.

Best regards,

Prashant