‎2013 Nov 11 2:56 PM
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.
‎2013 Nov 11 3:56 PM
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.
‎2013 Nov 11 3:51 PM
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
‎2013 Nov 11 3:56 PM
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.
‎2013 Nov 13 12:57 PM
Thx, this was it , it used pernr ( as a field ) which was a structure on his own.