Application Development and Automation 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: 
Read only

Filter

Former Member
0 Likes
790

Moderator message: Please use a more meaningful subject in future. Thank-you

Hi Experts,

This is not the question about filter option in function module 'REUSE_ALV_LIST_DISPLAY'.

The filter (cone symbol) option button in the output display is not working. when i select a column to filter particular data, it is of showing no list to display. I made use of the function module 'REUSE_ALV_LIST_DISPLAY'. Kindly help to solve the problem.

Extra information from my side:

When I debug the program, I found a standard include program 'LSLVC_DIALOGF18', in that, the data we are entering in the select option for filtering is in ls_rsds_frange-selopt_t and it found to contain only the first character(i.e only one letter) of the data we entered.

Edited by: Matt on Nov 11, 2008 9:52 AM

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
342

Hi Raja,

For which field you are getting the issue ? Try this for the field. Change the output length of this particular field in fieldcatalog and try again

wa_fieldcat-fieldname = c_ranl.
  wa_fieldcat-outputlen = 15. " Give a higher value here more than the actual length of the field
  APPEND wa_fieldcat TO it_fieldcat.

Regards,

Edited by: Rajvansh Ravi on Nov 11, 2008 9:56 AM

1 REPLY 1
Read only

Former Member
0 Likes
343

Hi Raja,

For which field you are getting the issue ? Try this for the field. Change the output length of this particular field in fieldcatalog and try again

wa_fieldcat-fieldname = c_ranl.
  wa_fieldcat-outputlen = 15. " Give a higher value here more than the actual length of the field
  APPEND wa_fieldcat TO it_fieldcat.

Regards,

Edited by: Rajvansh Ravi on Nov 11, 2008 9:56 AM