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: 

data Statistics and Number of Record Fields in ALV

Former Member
0 Kudos

Hi All

Actually i have created the a report and display the data in ALV. when i print that report . i found two more columns with the heading of Data Statsitics and Numbers of Record. i don't want to print these col. kindly help me out

Regards

ammad

2 REPLIES 2

Former Member
0 Kudos

Are you using OO ALV method or FM 'REUSE_*...' ,

neways just cross check the FIELDCATALOG what you are mapping in there.

The ALV will only show those fields as listed out in Fieldcatalog.

Former Member
0 Kudos

Hi,

Use should pass print parameters to avoid printing that'

In declaration give as;

Data : gs_print type slis_print_alv.

And before calling ALV FM;

gs_print-no_print_selinfos = 'X'. "NO SELECTION INFO
gs_print-no_print_listinfos = 'X'. "NO PRINT LIST INFO

And pass during ALV CALL;

is_print                = gs_print

Hope this will solve your problem.

Regards

Karthik D