2008 Nov 24 8:33 AM
Moderator message: please use meaningful and informative subjects in future.
I am using the FM 'REUSE_ALV_GRID_DISPLAY' .
What should the input be for the input parameter 'IT_FIELDCAT '?
Edited by: Matt on Nov 24, 2008 10:12 AM
2008 Nov 24 8:51 AM
use it as per ur need.
u can also read FM documentation :
goto se37->type FM name -> press display -> in right corner click funcion module documentation key.
there you will find use of various parameters.
2008 Nov 24 8:36 AM
2008 Nov 24 8:37 AM
Hi,
u have to pass the final internal table in the tables parameter and prepare a field catalog which is of type 'SLIS_T_FIELDCAT_ALV'.
Please have a llok at the link
http://www.sapdev.co.uk/reporting/alv/alvgrid_basic.htm
Regards,
Nagaraj
2008 Nov 24 8:37 AM
Hey,
Why cant you go through the help which the SAP had given you wil definitly will be able to learn that?
Regards.
Midhun Abraham
2008 Nov 24 8:49 AM
hi harshit,
declare data like: gt_fieldcat type slis_t_fieldcat_alv,
gs_fieldcat type slis_fieldcat_alv.
now prepare a field catalogue to pass to function module.field catalog decides how ur report looks like
gs_fieldcat-fieldname = fieldname.
gs_fieldcat-col_pos = pos.
gs_fieldcat-seltext_l = des.
gs_fieldcat-key = key.
append gs_fieldcat to gt_fieldcat.
pass gt_fieldcat to FM.
thnks.
2008 Nov 24 8:51 AM
use it as per ur need.
u can also read FM documentation :
goto se37->type FM name -> press display -> in right corner click funcion module documentation key.
there you will find use of various parameters.
2008 Nov 24 9:11 AM
2008 Nov 24 9:13 AM