Application Development and Automation 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: 
Read only

List -> Export -> Spreadsheet disabled

Former Member
0 Likes
6,800

Hi,

My problem is that i was adjusting an abap program and when i was finished with this, this option is/was disabled, ( enabled at first )

I checked several things like authorisation , but this cant be the problem because i have SAP_ALL rights and before my adjustments this option was available.

I didn't changed anything that can be the cause of this disablement.

List-export-local file does work, and i can also select spreadsheet after this but the output isn't the same when i select spreadsheet via List-export-spreadsheet.

What can be the problem?

My ALV call looks like this( and i changed nothing 😞

* ALV aanroepen:

   CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'

     EXPORTING

       i_callback_program = lv_repid

       i_bypassing_buffer = 'X'

       it_fieldcat        = it_fieldcat_alv

       it_events          = it_events

       i_save             = 'A'

       is_variant         = spec_variant

     TABLES

       t_outtab           = it_detail.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
3,854

hi ramon,

can you check your output table format. usually, export spreadsheet is disable when there is a structure type in field value of the Output table.

There might be one field which is having structure as type.

Regards,

Kapil.

3 REPLIES 3
Read only

anupam_anand
Participant
0 Likes
3,854

Hi Ramon,

Can you pass I_BYPASSING_BUFFER as space?

Try this and see if it works. Also, can you share how do you populate SPEC_VARIANT?

Thanks,

Anupam

Read only

Former Member
0 Likes
3,855

hi ramon,

can you check your output table format. usually, export spreadsheet is disable when there is a structure type in field value of the Output table.

There might be one field which is having structure as type.

Regards,

Kapil.

Read only

0 Likes
3,854

Thx, this was it , it used pernr ( as a field ) which was a structure on his own.