2022 Apr 11 11:49 AM
2022 Apr 12 3:28 PM
Check the domain of your field, does it have an ALPHA conversion exit?
If so, then the data in your table does not respect this conversion exit, and this is the root cause of your problem. When the user enters any selection criteria, they are implicitly converted (adding leading zeros when only numeric characters are entered) and therefore the wrong data in the table is not selected.
Consider building a report to remove the invalid data and reinsert it corrected using the FM CONVERSION_EXIT_ALPHA_INPUT into your table, and remove the dirty code.
(Also correct the programs that created the inconsistent data)
2022 Apr 13 8:17 AM
sumeyye_1634 If you want to "rearrange" your question then you'd better edit your question then instead of commenting on Raymond's answer (unless you prefer continuing with just Raymond of course).
2022 Apr 13 3:35 PM
Look at your report code (I forgot my crystal ball at home this morning) there should be some JOIN option when selecting data to display, use a left outer join syntax.
2022 Apr 14 1:11 PM
As already written, replace INNER JOIN with a LEFT OUTER JOIN