2008 Nov 06 2:52 PM
Hi All,
I am facing an issue in filtering of a particular column, which is a character field, it is defined as
full_name1(81) TYPE c.
This value is calculated in the report by concatenating first name and last name of the person from the table PA0002.
the field catalog values are as follows
wa_fieldcat-fieldname = 'FULL_NAME1'.
wa_fieldcat-outputlen = '81'.
wa_fieldcat-col_pos = l_colpos.
wa_fieldcat-seltext_l = 'Person Responsible'.
APPEND wa_fieldcat TO it_fieldcat.
But the filtering for this field is not working
Can anyone tell me why this is happening, i'll highly appreciate some valuable inputs regarding this!
2008 Nov 06 4:03 PM
In your field catalog, also set the LOWERCASE to preserve the case of the Name.
wa_fieldcat-fieldname = 'FULL_NAME1'.
wa_fieldcat-outputlen = '81'.
wa_fieldcat-col_pos = l_colpos.
wa_fieldcat-seltext_l = 'Person Responsible'.
wa_fieldcat-lowercase = 'X'.
APPEND wa_fieldcat TO it_fieldcat.
Regards,
Naimesh Patel
Thanks a ton!!
2008 Nov 06 4:03 PM
In your field catalog, also set the LOWERCASE to preserve the case of the Name.
wa_fieldcat-fieldname = 'FULL_NAME1'.
wa_fieldcat-outputlen = '81'.
wa_fieldcat-col_pos = l_colpos.
wa_fieldcat-seltext_l = 'Person Responsible'.
wa_fieldcat-lowercase = 'X'.
APPEND wa_fieldcat TO it_fieldcat.
Regards,
Naimesh Patel
2008 Nov 07 3:27 AM
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |