cancel
Showing results for 
Search instead for 
Did you mean: 

ALV filter- In activate case Sensitive nature

Former Member
0 Kudos

Dear experts,

I have z report with standard ALV filter and when I try to filter text column and itu2019s did not work. I know this happens because of case sensitive nature of filter. Could u pls help me how to inactivate case sensitive nature of the ALV filter

Thank you & Best Regards

Sameera

Accepted Solutions (0)

Answers (3)

Answers (3)

rgoncalves
Explorer

Sameera,

You can use lowercase flag on fieldcat:

DATA: it_fieldcat     TYPE slis_t_fieldcat_alv,

...

FORM monta_layout_alv.

  DATA: la_fieldcat LIKE LINE OF it_fieldcat.

...

  CLEAR: la_fieldcat.

  la_fieldcat-fieldname   = 'DESC_MOD'.
  la_fieldcat-tabname     = 'IT_SAIDA'.
  la_fieldcat-seltext_m   = 'Modalidade'(804).
  la_fieldcat-lowercase   = 'X'.

  APPEND la_fieldcat TO it_fieldcat.

...

Former Member
0 Kudos

hi

I am using change description for PO and it wont filter this column.

Thnk you

Sameera

sjeevan
Active Contributor
0 Kudos

The filter inherits the attributes of the field, if you're searching material text (MAKT-MAKTX) then it is case sensitive because MAKTX is case sensitive but for example MRP Controller (MARC-DISPO) is not case sensitive when you use the filter.