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: 

Issue with Filter

former_member267852
Participant
0 Kudos

Hi All,

I have developed an ALV report.

I have passed below parameters only...

    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
      i_callback_program = sy-cprog
      i_grid_title       = c_title
      is_layout          = gs_layout
      i_save             = 'X'
      it_fieldcat        = gt_fieldcat
    TABLES
      t_outtab           = gt_personal_id.

When i check in the output, FILTER for CHAR type is not working...

I searched in SCN, Converting output length as field lenght is working but in my case it is not working.

Please could you suggest with Solutions...

Regards,

Naresh.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Can you paste screen shots of your problem?

~Lokesh

2 REPLIES 2

Former Member
0 Kudos

Can you paste screen shots of your problem?

~Lokesh

0 Kudos

Hi,

Got the solution by Myself.

Selecting lowercase in fieldcatlog worked for me:

ls_fieldcatalog-lowercase = 'X'.

Regards,

Naresh.