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: 

Help on ALV

Former Member
0 Kudos
138

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

1 ACCEPTED SOLUTION

Former Member
0 Kudos
121

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.

7 REPLIES 7

Former Member
0 Kudos
121

Hi Harshit

It_fieldcat is used for the creation of Field catelog.

Please refer the link below you will get lot of info about ALV.

Regards

Neha

former_member404244
Active Contributor
0 Kudos
121

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

Former Member
0 Kudos
121

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

Former Member
0 Kudos
121

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.

Former Member
0 Kudos
122

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.

Former Member
0 Kudos
121

This message was moderated.

matt
Active Contributor
0 Kudos
121

Please use meaningful and informative subjects in future.