‎2008 Jan 07 4:39 PM
Hello,
I want to export to excel my ALV tree.
I'm using the FM 'ALV_XXL_CALL'.
But I would like to set the header comment from the ALV in the excel sheet (before the data).
How I have to do ?
Thank you
Bernard Pochin.
‎2008 Jan 07 4:47 PM
loop at it_fieldcat into ls_fieldcat
where tabname = i_tabname and
tech ne 'X' and
no_out ne 'X' and
not inttype ca 'IDPF'.
append ls_fieldcat to lt_fieldcat_temp.
lflg_find = 'X'.
endloop.
check out this will work.
‎2008 Jan 08 8:49 AM
I don't understand what you want to do ?
You want I export the fieldcat_tmp to the FM ? In this case, my table won't have the good columns ?
thx
‎2008 Jan 14 10:46 AM