The "IssueID" and "Title" fields in my project, both are "Text [System]" field in the SBM Composer and "VARCHAR2" in the database. The "IssueID" field, which has all numeric characters automatically assigned by the system, is sorted correctly in its numeric order. However, the "Title" field, which contains both String and Numeric characters input by the users, is sorted in a weird order, because SBM treats the numeric characters just like string characters. For example, here is the sort order of the Title field:
ALUDEIDABR1
ALUDEIDABR12
ALUDEIDABR13
ALUDEIDABR14
ALUDEIDABR15
ALUDEIDABR2
ALUDEIDABR3
ALUDEIDABR4
ALUDEIDABR5
ALUDEIDABR6
What field type should I use or what should I do in this case? in order to have this field sorted as following:
ALUDEIDABR1
ALUDEIDABR2
ALUDEIDABR3
ALUDEIDABR4
ALUDEIDABR5
ALUDEIDABR6
ALUDEIDABR12
ALUDEIDABR13
ALUDEIDABR14
ALUDEIDABR15