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 in ALV

Former Member
0 Likes
1,275

Hello Experts,

In my ALV report filter is not working,nor values appear in F4 help for particular field in which i want filter.

Plz suggest.

Aastha

Hello Experts,

In my ALV report filter is not working,nor values appear in F4 help for particular field in which i want filter.

Plz suggest.

Aastha

8 REPLIES 8
Read only

Former Member
0 Likes
1,188
Read only

0 Likes
1,188

Hi ,

Check the Output Length of the field in the field catalog generation , Sometimes if the length is matching then it wont come.

Regards

Read only

0 Likes
1,188

Hello Shishu,

I want filter for billing type(vbrk-fkart),its length is 4,i put output length 5.

Still not working.

Aastha

Read only

SumanPoddar
Active Participant
0 Likes
1,188

Hi,

Kindly Check these SAP OSS Notes:

381360 -- ALV filter: Recommendations and known errors

813629 -- Filtering function not working correctly

650888 -- ALV filter: List does not show any data after filtering

Regds.

Suman

Read only

abap_team
Explorer
0 Likes
1,188

Hi Aastha

Please try the link below.

Read only

Former Member
0 Likes
1,188

Hi Aastha,

Kindly go through this link:

Hope it helps.

Regrds

Mansi

Read only

Former Member
0 Likes
1,188

Hi,

Use this FM 'REUSE_ALV_FIELDCATALOG_MERGE'.

Regards,

Jyothi CH.

Read only

Former Member
0 Likes
1,188

Hi,

check in method,if u have given internal table for it_filter ..

CALL METHOD r_alv_grid->set_table_for_first_display

EXPORTING

i_structure_name = 'FS'

is_layout = w_lay

CHANGING

it_outtab = itab

it_fieldcatalog = t_cat

it_sort = t_sort

it_filter = ( Internal table )

IF sy-subrc <> 0.

  • MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO

  • WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.

ENDIF.

thanks.